diff --git a/.gitignore b/.gitignore
index c1dd7d6568f5..d8f0b11274f7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,3 +33,4 @@ clients/flash/**/build
clients/flash/**/.gradle
**/.idea/*
*.iml
+*~
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/GetWebcamsOnlyForModeratorReqMsgHdlr.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/GetWebcamsOnlyForModeratorReqMsgHdlr.scala
new file mode 100644
index 000000000000..8f626f74b984
--- /dev/null
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/GetWebcamsOnlyForModeratorReqMsgHdlr.scala
@@ -0,0 +1,29 @@
+package org.bigbluebutton.core.apps.users
+
+import org.bigbluebutton.common2.msgs._
+import org.bigbluebutton.core.running.{ LiveMeeting, OutMsgRouter }
+import org.bigbluebutton.core2.MeetingStatus2x
+
+trait GetWebcamsOnlyForModeratorReqMsgHdlr {
+ this: UsersApp =>
+
+ val liveMeeting: LiveMeeting
+ val outGW: OutMsgRouter
+
+ def handleGetWebcamsOnlyForModeratorReqMsg(msg: GetWebcamsOnlyForModeratorReqMsg) {
+
+ def buildGetWebcamsOnlyForModeratorRespMsg(meetingId: String, userId: String, webcamsOnlyForModerator: Boolean): BbbCommonEnvCoreMsg = {
+ val routing = Routing.addMsgToClientRouting(MessageTypes.DIRECT, meetingId, userId)
+ val envelope = BbbCoreEnvelope(GetWebcamsOnlyForModeratorRespMsg.NAME, routing)
+ val body = GetWebcamsOnlyForModeratorRespMsgBody(webcamsOnlyForModerator, userId)
+ val header = BbbClientMsgHeader(GetWebcamsOnlyForModeratorRespMsg.NAME, meetingId, userId)
+ val event = GetWebcamsOnlyForModeratorRespMsg(header, body)
+
+ BbbCommonEnvCoreMsg(envelope, event)
+ }
+
+ val event = buildGetWebcamsOnlyForModeratorRespMsg(liveMeeting.props.meetingProp.intId, msg.body.requestedBy,
+ MeetingStatus2x.webcamsOnlyForModeratorEnabled(liveMeeting.status))
+ outGW.send(event)
+ }
+}
\ No newline at end of file
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UpdateWebcamsOnlyForModeratorCmdMsgHdlr.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UpdateWebcamsOnlyForModeratorCmdMsgHdlr.scala
new file mode 100644
index 000000000000..5c57980a4874
--- /dev/null
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UpdateWebcamsOnlyForModeratorCmdMsgHdlr.scala
@@ -0,0 +1,32 @@
+package org.bigbluebutton.core.apps.users
+
+import org.bigbluebutton.common2.msgs._
+import org.bigbluebutton.core.running.{ LiveMeeting, OutMsgRouter }
+import org.bigbluebutton.core2.MeetingStatus2x
+
+trait UpdateWebcamsOnlyForModeratorCmdMsgHdlr {
+ this: UsersApp =>
+
+ val liveMeeting: LiveMeeting
+ val outGW: OutMsgRouter
+
+ def handleUpdateWebcamsOnlyForModeratorCmdMsg(msg: UpdateWebcamsOnlyForModeratorCmdMsg) {
+ log.info("Change webcams only for moderator status. meetingId=" + liveMeeting.props.meetingProp.intId + " webcamsOnlyForModeratorrecording=" + msg.body.webcamsOnlyForModerator)
+ if (MeetingStatus2x.webcamsOnlyForModeratorEnabled(liveMeeting.status) != msg.body.webcamsOnlyForModerator) {
+ MeetingStatus2x.setWebcamsOnlyForModerator(liveMeeting.status, msg.body.webcamsOnlyForModerator)
+
+ val event = buildWebcamsOnlyForModeratorChangedEvtMsg(liveMeeting.props.meetingProp.intId, msg.body.setBy, msg.body.webcamsOnlyForModerator)
+ outGW.send(event)
+ }
+
+ def buildWebcamsOnlyForModeratorChangedEvtMsg(meetingId: String, userId: String, webcamsOnlyForModerator: Boolean): BbbCommonEnvCoreMsg = {
+ val routing = Routing.addMsgToClientRouting(MessageTypes.BROADCAST_TO_MEETING, meetingId, userId)
+ val envelope = BbbCoreEnvelope(WebcamsOnlyForModeratorChangedEvtMsg.NAME, routing)
+ val body = WebcamsOnlyForModeratorChangedEvtMsgBody(webcamsOnlyForModerator, userId)
+ val header = BbbClientMsgHeader(WebcamsOnlyForModeratorChangedEvtMsg.NAME, meetingId, userId)
+ val event = WebcamsOnlyForModeratorChangedEvtMsg(header, body)
+
+ BbbCommonEnvCoreMsg(envelope, event)
+ }
+ }
+}
\ No newline at end of file
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
index 5a8c6c37d540..d1bb4399568b 100755
--- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UsersApp.scala
@@ -129,7 +129,9 @@ class UsersApp(
with LogoutAndEndMeetingCmdMsgHdlr
with MeetingActivityResponseCmdMsgHdlr
with SetRecordingStatusCmdMsgHdlr
+ with UpdateWebcamsOnlyForModeratorCmdMsgHdlr
with GetRecordingStatusReqMsgHdlr
+ with GetWebcamsOnlyForModeratorReqMsgHdlr
with AssignPresenterReqMsgHdlr
with EjectDuplicateUserReqMsgHdlr
with EjectUserFromMeetingCmdMsgHdlr
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/pubsub/senders/ReceivedJsonMsgHandlerActor.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/pubsub/senders/ReceivedJsonMsgHandlerActor.scala
index 8f02c57d6dc4..e0a0bb1f6064 100755
--- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/pubsub/senders/ReceivedJsonMsgHandlerActor.scala
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/pubsub/senders/ReceivedJsonMsgHandlerActor.scala
@@ -266,6 +266,10 @@ class ReceivedJsonMsgHandlerActor(
routeGenericMsg[GetRecordingStatusReqMsg](envelope, jsonNode)
case GetScreenshareStatusReqMsg.NAME =>
routeGenericMsg[GetScreenshareStatusReqMsg](envelope, jsonNode)
+ case GetWebcamsOnlyForModeratorReqMsg.NAME =>
+ routeGenericMsg[GetWebcamsOnlyForModeratorReqMsg](envelope, jsonNode)
+ case UpdateWebcamsOnlyForModeratorCmdMsg.NAME =>
+ routeGenericMsg[UpdateWebcamsOnlyForModeratorCmdMsg](envelope, jsonNode)
// Lock settings
case LockUserInMeetingCmdMsg.NAME =>
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/record/events/WebcamsOnlyForModeratorRecordEvent.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/record/events/WebcamsOnlyForModeratorRecordEvent.scala
new file mode 100644
index 000000000000..db1b18aa5d99
--- /dev/null
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/record/events/WebcamsOnlyForModeratorRecordEvent.scala
@@ -0,0 +1,39 @@
+/**
+ * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
+ *
+ * Copyright (c) 2018 BigBlueButton Inc. and by respective authors (see below).
+ *
+ * This program is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free Software
+ * Foundation; either version 3.0 of the License, or (at your option) any later
+ * version.
+ *
+ * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License along
+ * with BigBlueButton; if not, see .
+ *
+ */
+
+package org.bigbluebutton.core.record.events;
+
+class WebcamsOnlyForModeratorRecordEvent extends AbstractParticipantRecordEvent {
+ import WebcamsOnlyForModeratorRecordEvent._
+
+ setEvent("WebcamsOnlyForModeratorEvent")
+
+ def setUserId(userId: String) {
+ eventMap.put(USER_ID, userId)
+ }
+
+ def setWebcamsOnlyForModerator(webcamsOnlyForModerator: Boolean) {
+ eventMap.put(WEBCAMS_ONLY_FOR_MODERATOR, webcamsOnlyForModerator.toString)
+ }
+}
+
+object WebcamsOnlyForModeratorRecordEvent {
+ protected final val USER_ID = "userId"
+ protected final val WEBCAMS_ONLY_FOR_MODERATOR = "webacmsOnlyForModerator"
+}
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActor.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActor.scala
index ec3978af1205..43cf715540c0 100755
--- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActor.scala
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActor.scala
@@ -162,6 +162,9 @@ class MeetingActor(
MeetingStatus2x.unmuteMeeting(liveMeeting.status)
}
+ // Set webcamsOnlyForModerator property in case we didn't after meeting creation
+ MeetingStatus2x.setWebcamsOnlyForModerator(liveMeeting.status, liveMeeting.props.usersProp.webcamsOnlyForModerator)
+
/*******************************************************************/
// Helper to create fake users for testing (ralam jan 5, 2018)
//object FakeTestData extends FakeTestData
@@ -223,6 +226,8 @@ class MeetingActor(
case m: MeetingActivityResponseCmdMsg => state = usersApp.handleMeetingActivityResponseCmdMsg(m, state)
case m: LogoutAndEndMeetingCmdMsg => usersApp.handleLogoutAndEndMeetingCmdMsg(m, state)
case m: SetRecordingStatusCmdMsg => usersApp.handleSetRecordingStatusCmdMsg(m)
+ case m: GetWebcamsOnlyForModeratorReqMsg => usersApp.handleGetWebcamsOnlyForModeratorReqMsg(m)
+ case m: UpdateWebcamsOnlyForModeratorCmdMsg => usersApp.handleUpdateWebcamsOnlyForModeratorCmdMsg(m)
case m: GetRecordingStatusReqMsg => usersApp.handleGetRecordingStatusReqMsg(m)
case m: ChangeUserEmojiCmdMsg => handleChangeUserEmojiCmdMsg(m)
// Client requested to eject user
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/AnalyticsActor.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/AnalyticsActor.scala
index 9de28236823d..ad82eb6a1028 100755
--- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/AnalyticsActor.scala
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/AnalyticsActor.scala
@@ -40,6 +40,7 @@ class AnalyticsActor extends Actor with ActorLogging {
case m: ValidateAuthTokenRespMsg => logMessage(msg)
case m: UserJoinedMeetingEvtMsg => logMessage(msg)
case m: RecordingStatusChangedEvtMsg => logMessage(msg)
+ case m: WebcamsOnlyForModeratorChangedEvtMsg => logMessage(msg)
case m: UserLeftMeetingEvtMsg => logMessage(msg)
case m: PresenterUnassignedEvtMsg => logMessage(msg)
case m: PresenterAssignedEvtMsg => logMessage(msg)
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/MeetingStatus2x.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/MeetingStatus2x.scala
index 884ce39caee7..83804fcaaec3 100755
--- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/MeetingStatus2x.scala
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core2/MeetingStatus2x.scala
@@ -52,6 +52,8 @@ object MeetingStatus2x {
def isRecording(status: MeetingStatus2x): Boolean = status.recording
def setVoiceRecordingFilename(status: MeetingStatus2x, path: String) = status.voiceRecordingFilename = path
def getVoiceRecordingFilename(status: MeetingStatus2x): String = status.voiceRecordingFilename
+ def setWebcamsOnlyForModerator(status: MeetingStatus2x, value: Boolean) = status.webcamsOnlyForModerator = value
+ def webcamsOnlyForModeratorEnabled(status: MeetingStatus2x): Boolean = status.webcamsOnlyForModerator
def permisionsInitialized(status: MeetingStatus2x): Boolean = status.permissionsInited
def initializePermissions(status: MeetingStatus2x) = status.permissionsInited = true
def audioSettingsInitialized(status: MeetingStatus2x): Boolean = status.audioSettingsInited
@@ -85,5 +87,7 @@ class MeetingStatus2x {
private var voiceRecordingFilename: String = ""
private var extension = new MeetingExtensionProp
+
+ private var webcamsOnlyForModerator = false
}
diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/endpoint/redis/RedisRecorderActor.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/endpoint/redis/RedisRecorderActor.scala
index a3508cc696ff..b6a151d1addb 100755
--- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/endpoint/redis/RedisRecorderActor.scala
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/endpoint/redis/RedisRecorderActor.scala
@@ -95,6 +95,7 @@ class RedisRecorderActor(val system: ActorSystem)
// Meeting
case m: RecordingStatusChangedEvtMsg => handleRecordingStatusChangedEvtMsg(m)
+ case m: WebcamsOnlyForModeratorChangedEvtMsg => handleWebcamsOnlyForModeratorChangedEvtMsg(m)
case m: EndAndKickAllSysMsg => handleEndAndKickAllSysMsg(m)
// Recording
@@ -462,6 +463,15 @@ class RedisRecorderActor(val system: ActorSystem)
record(msg.header.meetingId, ev.toMap)
}
+
+ private def handleWebcamsOnlyForModeratorChangedEvtMsg(msg: WebcamsOnlyForModeratorChangedEvtMsg) {
+ val ev = new WebcamsOnlyForModeratorRecordEvent()
+ ev.setMeetingId(msg.header.meetingId)
+ ev.setUserId(msg.body.setBy)
+ ev.setWebcamsOnlyForModerator(msg.body.webcamsOnlyForModerator)
+
+ record(msg.header.meetingId, ev.toMap)
+ }
private def handleEndAndKickAllSysMsg(msg: EndAndKickAllSysMsg): Unit = {
val ev = new EndAndKickAllRecordEvent()
diff --git a/bbb-common-message/src/main/scala/org/bigbluebutton/common2/msgs/UsersMgs.scala b/bbb-common-message/src/main/scala/org/bigbluebutton/common2/msgs/UsersMgs.scala
index d8038d4654be..00fdc483958f 100755
--- a/bbb-common-message/src/main/scala/org/bigbluebutton/common2/msgs/UsersMgs.scala
+++ b/bbb-common-message/src/main/scala/org/bigbluebutton/common2/msgs/UsersMgs.scala
@@ -84,15 +84,13 @@ object GetRecordingStatusReqMsg { val NAME = "GetRecordingStatusReqMsg" }
case class GetRecordingStatusReqMsg(header: BbbClientMsgHeader, body: GetRecordingStatusReqMsgBody) extends StandardMsg
case class GetRecordingStatusReqMsgBody(requestedBy: String)
-
/**
- * Sent by user as response to get recording mark.
+ * Sent to user as response to get recording mark.
*/
object GetRecordingStatusRespMsg { val NAME = "GetRecordingStatusRespMsg" }
case class GetRecordingStatusRespMsg(header: BbbClientMsgHeader, body: GetRecordingStatusRespMsgBody) extends BbbCoreMsg
case class GetRecordingStatusRespMsgBody(recording: Boolean, requestedBy: String)
-
/**
* Sent by user to start recording mark.
*/
@@ -107,6 +105,34 @@ object RecordingStatusChangedEvtMsg { val NAME = "RecordingStatusChangedEvtMsg"
case class RecordingStatusChangedEvtMsg(header: BbbClientMsgHeader, body: RecordingStatusChangedEvtMsgBody) extends BbbCoreMsg
case class RecordingStatusChangedEvtMsgBody(recording: Boolean, setBy: String)
+/**
+ * Sent by user to update webcamsOnlyForModerator meeting property.
+ */
+object UpdateWebcamsOnlyForModeratorCmdMsg { val NAME = "UpdateWebcamsOnlyForModeratorCmdMsg" }
+case class UpdateWebcamsOnlyForModeratorCmdMsg(header: BbbClientMsgHeader, body: UpdateWebcamsOnlyForModeratorCmdMsgBody) extends StandardMsg
+case class UpdateWebcamsOnlyForModeratorCmdMsgBody(webcamsOnlyForModerator: Boolean, setBy: String)
+
+/**
+ * Sent by user to get the value of webcamsOnlyForModerator mark.
+ */
+object GetWebcamsOnlyForModeratorReqMsg { val NAME = "GetWebcamsOnlyForModeratorReqMsg" }
+case class GetWebcamsOnlyForModeratorReqMsg(header: BbbClientMsgHeader, body: GetWebcamsOnlyForModeratorReqMsgBody) extends StandardMsg
+case class GetWebcamsOnlyForModeratorReqMsgBody(requestedBy: String)
+
+/**
+ * Sent to user as response to get webcamsOnlyForModerator mark.
+ */
+object GetWebcamsOnlyForModeratorRespMsg { val NAME = "GetWebcamsOnlyForModeratorRespMsg" }
+case class GetWebcamsOnlyForModeratorRespMsg(header: BbbClientMsgHeader, body: GetWebcamsOnlyForModeratorRespMsgBody) extends BbbCoreMsg
+case class GetWebcamsOnlyForModeratorRespMsgBody(webcamsOnlyForModerator: Boolean, requestedBy: String)
+
+/**
+ * Sent to all users about webcam only for moderator value.
+ */
+object WebcamsOnlyForModeratorChangedEvtMsg { val NAME = "WebcamsOnlyForModeratorChangedEvtMsg" }
+case class WebcamsOnlyForModeratorChangedEvtMsg(header: BbbClientMsgHeader, body: WebcamsOnlyForModeratorChangedEvtMsgBody) extends BbbCoreMsg
+case class WebcamsOnlyForModeratorChangedEvtMsgBody(webcamsOnlyForModerator: Boolean, setBy: String)
+
/**
* Sent by user to get status of screenshare (meant for late joiners).
*/
diff --git a/bbb-common-web/src/main/java/org/bigbluebutton/api/MeetingService.java b/bbb-common-web/src/main/java/org/bigbluebutton/api/MeetingService.java
index c79a7bdc60bb..4a17a2332102 100755
--- a/bbb-common-web/src/main/java/org/bigbluebutton/api/MeetingService.java
+++ b/bbb-common-web/src/main/java/org/bigbluebutton/api/MeetingService.java
@@ -257,6 +257,7 @@ private void handleCreateMeeting(Meeting m) {
logData.put("name", m.getName());
logData.put("duration", m.getDuration());
logData.put("isBreakout", m.isBreakout());
+ logData.put("webcamsOnlyForModerator", m.getWebcamsOnlyForModerator());
logData.put("record", m.isRecord());
logData.put("event", "create_meeting");
logData.put("description", "Create meeting.");
diff --git a/bbb-common-web/src/main/java/org/bigbluebutton/api/ParamsProcessorUtil.java b/bbb-common-web/src/main/java/org/bigbluebutton/api/ParamsProcessorUtil.java
index 6541cf81be41..d8891d2ed243 100755
--- a/bbb-common-web/src/main/java/org/bigbluebutton/api/ParamsProcessorUtil.java
+++ b/bbb-common-web/src/main/java/org/bigbluebutton/api/ParamsProcessorUtil.java
@@ -500,9 +500,9 @@ boolean record = processRecordMeeting(params.get("record"));
Boolean muteOnStart = defaultMuteOnStart;
if (!StringUtils.isEmpty(params.get("muteOnStart"))) {
muteOnStart = Boolean.parseBoolean(params.get("muteOnStart"));
- meeting.setMuteOnStart(muteOnStart);
}
+ meeting.setMuteOnStart(muteOnStart);
return meeting;
}
diff --git a/bbb-common-web/src/main/java/org/bigbluebutton/api/domain/Meeting.java b/bbb-common-web/src/main/java/org/bigbluebutton/api/domain/Meeting.java
index 8a5775126d19..1095dec1356b 100755
--- a/bbb-common-web/src/main/java/org/bigbluebutton/api/domain/Meeting.java
+++ b/bbb-common-web/src/main/java/org/bigbluebutton/api/domain/Meeting.java
@@ -207,8 +207,8 @@ public long getCreateTime() {
return createdTime;
}
- public Integer setSequence(Integer s) {
- return sequence = s;
+ public void setSequence(Integer s) {
+ sequence = s;
}
public Integer getSequence() {
@@ -263,8 +263,8 @@ public String getInternalId() {
return intMeetingId;
}
- public String setParentMeetingId(String p) {
- return parentMeetingId = p;
+ public void setParentMeetingId(String p) {
+ parentMeetingId = p;
}
public String getParentMeetingId() {
diff --git a/bbb-common-web/src/main/scala/org/bigbluebutton/api2/BbbWebApiGWApp.scala b/bbb-common-web/src/main/scala/org/bigbluebutton/api2/BbbWebApiGWApp.scala
index 7b82d7097112..2fcd1f5d4636 100755
--- a/bbb-common-web/src/main/scala/org/bigbluebutton/api2/BbbWebApiGWApp.scala
+++ b/bbb-common-web/src/main/scala/org/bigbluebutton/api2/BbbWebApiGWApp.scala
@@ -12,10 +12,11 @@ import org.bigbluebutton.presentation.messages._
import scala.concurrent.duration._
-class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
- val screenshareRtmpServer: String,
- val screenshareRtmpBroadcastApp: String,
- val screenshareConfSuffix: String) extends IBbbWebApiGWApp with SystemConfiguration{
+class BbbWebApiGWApp(
+ val oldMessageReceivedGW: OldMessageReceivedGW,
+ val screenshareRtmpServer: String,
+ val screenshareRtmpBroadcastApp: String,
+ val screenshareConfSuffix: String) extends IBbbWebApiGWApp with SystemConfiguration {
implicit val system = ActorSystem("bbb-web-common")
@@ -38,15 +39,14 @@ class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
private val msgToAkkaAppsEventBus = new MsgToAkkaAppsEventBus
/**
- * Not used for now as we will still user MeetingService for 2.0 (ralam july 4, 2017)
- */
+ * Not used for now as we will still user MeetingService for 2.0 (ralam july 4, 2017)
+ */
//private val meetingManagerActorRef = system.actorOf(
// MeetingsManagerActor.props(msgToAkkaAppsEventBus), "meetingManagerActor")
//msgFromAkkaAppsEventBus.subscribe(meetingManagerActorRef, fromAkkaAppsChannel)
private val oldMeetingMsgHdlrActor = system.actorOf(
- OldMeetingMsgHdlrActor.props(oldMessageReceivedGW), "oldMeetingMsgHdlrActor"
- )
+ OldMeetingMsgHdlrActor.props(oldMessageReceivedGW), "oldMeetingMsgHdlrActor")
msgFromAkkaAppsEventBus.subscribe(oldMeetingMsgHdlrActor, fromAkkaAppsChannel)
private val msgToAkkaAppsToJsonActor = system.actorOf(
@@ -55,7 +55,7 @@ class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
msgToAkkaAppsEventBus.subscribe(msgToAkkaAppsToJsonActor, toAkkaAppsChannel)
private val appsRedisSubscriberActor = system.actorOf(
- AppsRedisSubscriberActor.props(receivedJsonMsgBus,oldMessageEventBus), "appsRedisSubscriberActor")
+ AppsRedisSubscriberActor.props(receivedJsonMsgBus, oldMessageEventBus), "appsRedisSubscriberActor")
private val receivedJsonMsgHdlrActor = system.actorOf(
ReceivedJsonMsgHdlrActor.props(msgFromAkkaAppsEventBus), "receivedJsonMsgHdlrActor")
@@ -67,7 +67,7 @@ class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
oldMessageEventBus.subscribe(oldMessageJsonReceiverActor, fromAkkaAppsOldJsonChannel)
- /*****
+/*****
* External APIs for Gateway
*/
def send(channel: String, json: String): Unit = {
@@ -77,21 +77,22 @@ class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
def createMeeting(meetingId: String, extMeetingId: String, parentMeetingId: String, meetingName: String,
recorded: java.lang.Boolean, voiceBridge: String, duration: java.lang.Integer,
- autoStartRecording: java.lang.Boolean,
+ autoStartRecording: java.lang.Boolean,
allowStartStopRecording: java.lang.Boolean, webcamsOnlyForModerator: java.lang.Boolean, moderatorPass: String,
viewerPass: String, createTime: java.lang.Long, createDate: String, isBreakout: java.lang.Boolean,
sequence: java.lang.Integer,
metadata: java.util.Map[String, String], guestPolicy: String,
welcomeMsgTemplate: String, welcomeMsg: String, modOnlyMessage: String,
- dialNumber: String, maxUsers: java.lang.Integer, maxInactivityTimeoutMinutes: java.lang.Integer,
- warnMinutesBeforeMax: java.lang.Integer,
- meetingExpireIfNoUserJoinedInMinutes: java.lang.Integer,
+ dialNumber: String, maxUsers: java.lang.Integer, maxInactivityTimeoutMinutes: java.lang.Integer,
+ warnMinutesBeforeMax: java.lang.Integer,
+ meetingExpireIfNoUserJoinedInMinutes: java.lang.Integer,
meetingExpireWhenLastUserLeftInMinutes: java.lang.Integer,
- muteOnStart: java.lang.Boolean): Unit = {
+ muteOnStart: java.lang.Boolean): Unit = {
val meetingProp = MeetingProp(name = meetingName, extId = extMeetingId, intId = meetingId,
isBreakout = isBreakout.booleanValue())
- val durationProps = DurationProps(duration = duration.intValue(),
+ val durationProps = DurationProps(
+ duration = duration.intValue(),
createdTime = createTime.longValue(), createDate,
maxInactivityTimeoutMinutes = maxInactivityTimeoutMinutes.intValue(),
warnMinutesBeforeMax = warnMinutesBeforeMax.intValue(),
@@ -108,7 +109,8 @@ class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
val usersProp = UsersProp(maxUsers = maxUsers.intValue(), webcamsOnlyForModerator = webcamsOnlyForModerator.booleanValue(),
guestPolicy = guestPolicy)
val metadataProp = MetadataProp(mapAsScalaMap(metadata).toMap)
- val screenshareProps = ScreenshareProps(screenshareConf = voiceBridge + screenshareConfSuffix,
+ val screenshareProps = ScreenshareProps(
+ screenshareConf = voiceBridge + screenshareConfSuffix,
red5ScreenshareIp = screenshareRtmpServer,
red5ScreenshareApp = screenshareRtmpBroadcastApp)
@@ -144,7 +146,7 @@ class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
msgToAkkaAppsEventBus.publish(MsgToAkkaApps(toAkkaAppsChannel, event))
}
- def destroyMeeting (msg: DestroyMeetingMessage): Unit = {
+ def destroyMeeting(msg: DestroyMeetingMessage): Unit = {
val event = MsgBuilder.buildDestroyMeetingSysCmdMsg(msg)
msgToAkkaAppsEventBus.publish(MsgToAkkaApps(toAkkaAppsChannel, event))
}
@@ -173,7 +175,7 @@ class BbbWebApiGWApp(val oldMessageReceivedGW: OldMessageReceivedGW,
}
def sendDocConversionMsg(msg: IDocConversionMsg): Unit = {
- if (msg.isInstanceOf[DocPageGeneratedProgress]) {
+ if (msg.isInstanceOf[DocPageGeneratedProgress]) {
val event = MsgBuilder.buildPresentationPageGeneratedPubMsg(msg.asInstanceOf[DocPageGeneratedProgress])
msgToAkkaAppsEventBus.publish(MsgToAkkaApps(toAkkaAppsChannel, event))
} else if (msg.isInstanceOf[OfficeDocConversionProgress]) {
diff --git a/bigbluebutton-client/branding/default/style/css/V2Theme.css b/bigbluebutton-client/branding/default/style/css/V2Theme.css
index 1ffe485fd4b3..4b1cc7a315be 100755
--- a/bigbluebutton-client/branding/default/style/css/V2Theme.css
+++ b/bigbluebutton-client/branding/default/style/css/V2Theme.css
@@ -146,6 +146,8 @@ phonecomponents|MuteMeButton {
backgroundColor : #FFFFFF;
paddingTop : 0;
paddingBottom : 6;
+ verticalAlign : middle;
+ verticalGap : 0;
}
.breakoutRoomRibbon {
@@ -648,6 +650,10 @@ chat|ChatOptionsTab {
fontSize : 14;
}
+chat|ChatMessageRenderer {
+ moderatorIcon : Embed(source="assets/swf/v2_skin.swf", symbol="Icon_User_Chat_Moderator");
+}
+
.chatMessageListStyle {
borderStyle : none;
rollOverColor : #FFFFFF;
@@ -668,6 +674,15 @@ chat|ChatMessageRenderer {
textAlign : right;
}
+.chatMessageHeader {
+ color : #808080;
+}
+
+.chatMessageHeaderModerator {
+ color : #808080;
+ fontWeight : bold;
+}
+
/*
//------------------------------
// CheckBox
@@ -932,6 +947,7 @@ layout|LayoutsCombo {
views|LogoutWindow, views|LoggedOutWindow {
headerHeight : 32;
+ horizontalAlign : center;
paddingBottom : 8;
paddingLeft : 8;
paddingRight : 8;
@@ -948,6 +964,58 @@ views|LogoutWindow, views|LoggedOutWindow {
paddingBottom : 8;
}
+.logoutRatingBox {
+ paddingTop : 12;
+ paddingBottom : 12;
+ horizontalAlign : center;
+ verticalGap : 8;
+}
+
+.logoutTitle {
+ fontSize : 24;
+}
+
+.logoutSubTitle {
+ fontSize : 16;
+ color : #4E5A66;
+}
+
+.loggedOutContainer {
+ horizontalAlign : center;
+ verticalGap : 4;
+}
+
+.logoutFeedbackHintBoxStyle {
+ backgroundColor : #CDD4DB;
+ paddingLeft : 0;
+ paddingRight : 0;
+ verticalGap : 0;
+}
+
+views|StarRating {
+ paddingTop : 4;
+ paddingBottom : 4;
+ verticalGap : 8;
+ horizontalGap : 0;
+ emptyStar : Embed(source="assets/swf/v2_skin.swf", symbol="Icon_Star_Empty");
+ filledStar : Embed(source="assets/swf/v2_skin.swf", symbol="Icon_Star_Filled");
+}
+
+.starBoxStyle {
+ horizontalAlign : center;
+ verticalGap : 4;
+ paddingLeft : 0;
+ paddingRight : 0;
+ paddingTop : 4;
+ paddingBottom : 4;
+
+}
+
+.logoutRule {
+ strokeWidth : 1;
+ color : #BBBDBF;
+}
+
/*
//------------------------------
// Lock Settings
@@ -958,10 +1026,19 @@ views|LockSettings {
headerHeight : 0;
}
+.lockSettingsColumnTitleStyle {
+ fontSize : 14;
+ fontWeight : bold;
+}
+
.lockSettingsDefaultLabelStyle {
fontSize : 14;
}
+.lockSettingsCheckboxColumn {
+ horizontalAlign : center;
+}
+
/*
//------------------------------
// MainApplicationShell
@@ -1366,13 +1443,17 @@ mx|Panel {
textDecoration : underline;
}
-.presentationUploadFileFormatHintBoxStyle, .audioBroswerHintBoxStyle {
+.presentationUploadFileFormatHintBoxStyle, .audioBroswerHintBoxStyle, .lockSettingsHintBoxStyle {
backgroundColor : #CDD4DB;
+ horizontalAlign : center;
+ paddingTop : 8;
+ paddingBottom : 8;
paddingLeft : 10;
paddingRight : 10;
+ verticalAlign : middle;
}
-.presentationUploadFileFormatHintTextStyle, .audioBroswerHintTextStyle {
+.presentationUploadFileFormatHintTextStyle, .audioBroswerHintTextStyle, .logoutFeedbackHint, .lockSettingHintTextStyle {
fontWeight : bold;
}
@@ -1804,7 +1885,6 @@ videoconf|UserGraphicHolder {
.userGraphicBackground {
backgroundColor : #FFFFFF;
- borderStyle : solid;
borderColor : #000000;
borderThickness : 0;
}
diff --git a/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.fla b/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.fla
index a266fb404fd3..2013f15199f0 100644
Binary files a/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.fla and b/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.fla differ
diff --git a/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.swf b/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.swf
index 58863e818a1e..a228164ae1f6 100644
Binary files a/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.swf and b/bigbluebutton-client/branding/default/style/css/assets/swf/v2_skin.swf differ
diff --git a/bigbluebutton-client/locale/am/bbbResources.properties b/bigbluebutton-client/locale/am/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/am/bbbResources.properties
+++ b/bigbluebutton-client/locale/am/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/am_ET/bbbResources.properties b/bigbluebutton-client/locale/am_ET/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/am_ET/bbbResources.properties
+++ b/bigbluebutton-client/locale/am_ET/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ar/bbbResources.properties b/bigbluebutton-client/locale/ar/bbbResources.properties
index 0c7a7077d3e8..17bbf6a6fd80 100644
--- a/bigbluebutton-client/locale/ar/bbbResources.properties
+++ b/bigbluebutton-client/locale/ar/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = الإتصال بالخادم
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = تحميل
bbb.mainshell.statusProgress.cannotConnectServer = عفوا, لا يمكن الاتصال بالخادم.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (إصدار {0})
bbb.mainshell.logBtn.toolTip = افتح نافذة السجلّ
@@ -9,21 +9,21 @@ bbb.mainshell.invalidAuthToken = رمز مصادقة غير صالح
bbb.mainshell.resetLayoutBtn.toolTip = اعادة تعيين التصميم
bbb.mainshell.notification.tunnelling = النقل عبر الأنفاق
bbb.mainshell.notification.webrtc = صوت WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip = تبديل الشاشة الكاملة
+bbb.mainshell.quote.sentence.1 = إنما العلم بالتعلم.
+bbb.mainshell.quote.attribution.1 = رسول الله محمد ﷺ
+bbb.mainshell.quote.sentence.2 = عجبت لمن لم يطلب العلم كيف تدعوه نفسه إلى مكرمة..
+bbb.mainshell.quote.attribution.2 = عبد الله بن المبارك
+bbb.mainshell.quote.sentence.3 = من ظن أنه يستغني عن التعلّم فليبكِ على نفسه
+bbb.mainshell.quote.attribution.3 = أبو يوسف
+bbb.mainshell.quote.sentence.4 = العلم مغرس كل فخر فافتخر ... واحذر يفوتك فخر ذاك المغرس
+bbb.mainshell.quote.attribution.4 = الشافعي
+bbb.mainshell.quote.sentence.5 = اغد عالماً أو متعلماً ، ولا تغد إمعة بين ذلك
+bbb.mainshell.quote.attribution.5 = ابن مسعود رضي الله عنه
bbb.oldlocalewindow.reminder1 = قد يكون لديك ترجمة قديمة لـBigBlueButton.
bbb.oldlocalewindow.reminder2 = الرجاء مسح الملفات المؤقتة للمتصفح وحاول مرة أخرى.
bbb.oldlocalewindow.windowTitle = تحذير: ترجمة قديمة
-bbb.audioSelection.title = كيف ترغب بالانضمام للصوت؟
+bbb.audioSelection.title = كيف ترغب الانضمام للصوت؟
bbb.audioSelection.btnMicrophone.label = ميكيرفون
bbb.audioSelection.btnMicrophone.toolTip = الانضمام للصوت بالميكرفون الخاص بك
bbb.audioSelection.btnListenOnly.label = الاستماع فقط
@@ -44,8 +44,8 @@ bbb.micSettings.recommendHeadset = استخدم سماعات الرأس مع ا
bbb.micSettings.changeMic = اختبار أو تغيير المايك
bbb.micSettings.changeMic.toolTip = فتح مربع الحوار لإعدادات المايك لمشغل الفلاش.
bbb.micSettings.comboMicList.toolTip = اختيار ميكرفون
-bbb.micSettings.micRecordVolume.label = gain
-bbb.micSettings.micRecordVolume.toolTip = ضبط إعداد "gain" في الميكرفون الخاص بك
+bbb.micSettings.micRecordVolume.label = التضخيم
+bbb.micSettings.micRecordVolume.toolTip = ضبط إعداد "التضخيم" في الميكرفون الخاص بك
bbb.micSettings.nextButton = التالي
bbb.micSettings.nextButton.toolTip = بدء اختبار الصدى
bbb.micSettings.join = انضم للمحادثة
@@ -66,14 +66,15 @@ bbb.micSettings.webrtc.waitingforice = الاتصال
bbb.micSettings.webrtc.transferring = تتم عملية النقل
bbb.micSettings.webrtc.endingecho = الانضمام للصوت
bbb.micSettings.webrtc.endedecho = انتهى اختبار الصدى.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = أذونات ميكرفون Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = أذونات ميكرفون Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = تحذير صوتي
bbb.micWarning.joinBtn.label = الانضمام على أي حال
bbb.micWarning.testAgain.label = الاختبار مرة أخرى
-bbb.micWarning.message = لا يعرض الميكرفون الخاص بك أي نشاط، وقد لا يتمكن الآخرين من سماعك خلال الجلسة.
+bbb.micWarning.message = لا يعرض الميكرفون الخاص بك أي نشاط، وقد لا يتمكن الآخرون من سماعك خلال الجلسة.
bbb.webrtcWarning.message = الكشف عن حالة WebRTC التالية: {0}. هل تريد تجربة الفلاش بدلاً عن ذلك؟
bbb.webrtcWarning.title = خطأ سمعي في تقنية "ويب آر. تي. سي."
bbb.webrtcWarning.failedError.1001 = خطأ 1001: انقطاع اتصال WebSocket
@@ -93,48 +94,48 @@ bbb.webrtcWarning.failedError.endedunexpectedly = انتهاء اختبار ص
bbb.webrtcWarning.connection.dropped = فشل اتصال WebRTC
bbb.webrtcWarning.connection.reconnecting = محاولة استعادة الاتصال
bbb.webrtcWarning.connection.reestablished = تم اعادة الاتصال WebRTC
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel = إلغاء
bbb.mainToolbar.helpBtn = مساعدة
bbb.mainToolbar.logoutBtn = خروج
bbb.mainToolbar.logoutBtn.toolTip = تسجيل الخروج
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = اختر اللغة
bbb.mainToolbar.settingsBtn = الإعدادات
bbb.mainToolbar.settingsBtn.toolTip = افتح الإعدادات
bbb.mainToolbar.shortcutBtn = اختصارات المفاتيح
bbb.mainToolbar.shortcutBtn.toolTip = فتح نافذة مفاتيح الاختصارات
bbb.mainToolbar.recordBtn.toolTip.start = بدء التسجيل
-bbb.mainToolbar.recordBtn.toolTip.stop = ايقاف التسجيل
-bbb.mainToolbar.recordBtn.toolTip.recording = يتم تسجيل الجلسة
-bbb.mainToolbar.recordBtn.toolTip.notRecording = يتم تسجيل الجلسة
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.stop = إيقاف التسجيل
+bbb.mainToolbar.recordBtn.toolTip.recording = الجلسة قيد التسجيل
+bbb.mainToolbar.recordBtn.toolTip.notRecording = الجلسة غير مسجلة
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = تأكيد التسجيل
-bbb.mainToolbar.recordBtn.confirm.message.start = هل أنت متأكد من رغبتك في بدء التسجيل الجلسة؟
-bbb.mainToolbar.recordBtn.confirm.message.stop = هل أنت متأكد من رغبتك في ايقاف التسجيل الجلسة؟
-bbb.mainToolbar.recordBtn..notification.title = تسجيل اشعار
-bbb.mainToolbar.recordBtn..notification.message1 = بإمكانك تسجيل هذا الاجتماع.
-bbb.mainToolbar.recordBtn..notification.message2 = يجب عليك النقر على زر بدء/ايقاف التسجيل في شريط العنوان من أجل بدء/انهاء التسجيل.
+bbb.mainToolbar.recordBtn.confirm.message.start = هل أنت متأكد من رغبتك في بدء تسجيل الجلسة؟
+bbb.mainToolbar.recordBtn.confirm.message.stop = هل أنت متأكد من رغبتك في ايقاف تسجيل الجلسة؟
+bbb.mainToolbar.recordBtn.notification.title = تسجيل اشعار
+bbb.mainToolbar.recordBtn.notification.message1 = بإمكانك تسجيل هذا الاجتماع.
+bbb.mainToolbar.recordBtn.notification.message2 = يجب عليك النقر على زر بدء/ايقاف التسجيل في شريط العنوان من أجل بدء/انهاء التسجيل.
bbb.mainToolbar.recordingLabel.recording = (تسجيل)
bbb.mainToolbar.recordingLabel.notRecording = لا يسجل
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title = انتظار
+bbb.guests.title = الضيوف
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip = رفض
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text = تذكر الاختيار
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management = إدارة الضيوف
bbb.clientstatus.title = تنبيه الاعدادات
bbb.clientstatus.notification = الإخطارات الغير مقروءة
bbb.clientstatus.close = إغلاق
@@ -150,10 +151,10 @@ bbb.clientstatus.webrtc.almostStrongStatus = اتصالك الصوتي WebRTC
bbb.clientstatus.webrtc.almostWeakStatus = اتصالك الصوتي WebRTC سيئ
bbb.clientstatus.webrtc.weakStatus = ربما يكون عند مشكلة مع الاتصال الصوتي WebRTC
bbb.clientstatus.webrtc.message = نوصي باستخدام متصفح "فاير فوكس" أو "كروم" لتقديم تقنية سمعية أفضل.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title = جافا
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = تصغير النافذة
bbb.window.maximizeRestoreBtn.toolTip = تكبير النافذة
bbb.window.closeBtn.toolTip = اغلاق
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = الحالة
bbb.users.usersGrid.statusItemRenderer.changePresenter = انقر لاختيار مقدم
bbb.users.usersGrid.statusItemRenderer.presenter = المقدم
bbb.users.usersGrid.statusItemRenderer.moderator = المدير
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = صوت فقط
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause = تصفيق
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused = مرتبك
+bbb.users.usersGrid.statusItemRenderer.neutral = محايد
+bbb.users.usersGrid.statusItemRenderer.happy = سعيد
+bbb.users.usersGrid.statusItemRenderer.sad = حزين
bbb.users.usersGrid.statusItemRenderer.clearStatus = مسح الحالة
bbb.users.usersGrid.statusItemRenderer.viewer = عارض
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = مشاركة كاميرا الويب
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = إلغاء كتم الصوت
bbb.users.usersGrid.mediaItemRenderer.pushToMute = كتم الصوت {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = قفل {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = عدم القفل {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = طرد {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser = حذف {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = مشاركة كاميرا الويب
bbb.users.usersGrid.mediaItemRenderer.micOff = إغلاق الميكرفون
bbb.users.usersGrid.mediaItemRenderer.micOn = تشغيل الميكرفون
bbb.users.usersGrid.mediaItemRenderer.noAudio = غير موجود في الاجتماع الصوتي
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = مسح
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy = سعيد
+bbb.users.emojiStatus.neutral = محايد
+bbb.users.emojiStatus.sad = حزين
+bbb.users.emojiStatus.confused = مرتبك
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp = أرفع إبهامي
+bbb.users.emojiStatus.thumbsDown = أخفظ إبهامي
+bbb.users.emojiStatus.applause = تصفيق
+bbb.users.emojiStatus.agree = أوافق
+bbb.users.emojiStatus.disagree = لا أوافق
+bbb.users.emojiStatus.none = مسح
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = عرض تقديمي
bbb.presentation.titleWithPres = عرض تقديمي : {0}
bbb.presentation.quickLink.label = نافذة التقديم
bbb.presentation.fitToWidth.toolTip = ملائمة العرض التقديمي للعرض
bbb.presentation.fitToPage.toolTip = ملائمة العرض التقديمي للصفحة
bbb.presentation.uploadPresBtn.toolTip = رفع العرض التقديمي
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip = تنزيل العروض التقديمية
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = الشريحة السابقة
bbb.presentation.btnSlideNum.accessibilityName = شريحة {0} من {1}
bbb.presentation.btnSlideNum.toolTip = اختيار شريحة
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = اكتمل الرفع. يرجى الانتظا
bbb.presentation.uploaded = تم رفعه.
bbb.presentation.document.supported = الوثيقة المرفوعة مدعومة. بدء التحويل...
bbb.presentation.document.converted = تم تحويل وثيقة المكتب بنجاح.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = الرجاء تحويل هذا الملف إلى صيغة PDF
bbb.presentation.error.io = خطأ IO: يرجى التواصل مع المدير.
bbb.presentation.error.security = خطأ أمني: يرجى التواصل مع المدير.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = ارفع
bbb.fileupload.uploadBtn.toolTip = ارفع الملف المحدد
bbb.fileupload.deleteBtn.toolTip = حذف العرض التقديمي
bbb.fileupload.showBtn = اعرض
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = عرض العرض التقديمي
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = إغلاق
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = إنشاء الصور المصغرة..
bbb.fileupload.progBarLbl = التقدم:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip = إغلاق
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn = تحميل
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable = الملف قابل للتنزيل
bbb.chat.title = محادثة
bbb.chat.quickLink.label = نافذة المحادثة
bbb.chat.cmpColorPicker.toolTip = لون النص
bbb.chat.input.accessibilityName = حقل تعديل رسائل المحادثة
bbb.chat.sendBtn.toolTip = أرسل الرسالة
bbb.chat.sendBtn.accessibilityName = أرسل الرسالة للمحادثة
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip = حفظ المحادثة
+bbb.chat.saveBtn.accessibilityName = حفظ المحادثة في ملف نصي
+bbb.chat.saveBtn.label = حفظ
+bbb.chat.save.complete = تم حفظ المحادثة بنجاح
+bbb.chat.save.ioerror =
+bbb.chat.save.filename = دردشة-عامة
+bbb.chat.copyBtn.toolTip = نسخ المحادثة
+bbb.chat.copyBtn.accessibilityName = نسخ المحادثة إلى الحافظة
+bbb.chat.copyBtn.label = نسخ
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title = تحذير
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = انسخ جميع النص
bbb.chat.publicChatUsername = عام
bbb.chat.optionsTabName = خيارات
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = بدء المشاركة
bbb.publishVideo.startPublishBtn.toolTip = بدء مشاركة كاميرا الويب الخاصة بك
bbb.publishVideo.startPublishBtn.errorName = لا يمكن مشاركة الوب كام بسبب {0}
bbb.webcamPermissions.chrome.title = أذونات كاميرا الويب Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = كاميرا الويب
bbb.videodock.quickLink.label = نافذة كاميرا الويب
bbb.video.minimizeBtn.accessibilityName = تصغير نافذة كاميرا الويب
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = إغلاق مربع حوار إعداد
bbb.video.publish.closeBtn.label = إلغاء
bbb.video.publish.titleBar = نشر نافذة كاميرا الويب
bbb.video.streamClose.toolTip = إغلاق البث من أجل {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = مشاركة الشاشة: معاينة المقدّم
bbb.screensharePublish.pause.tooltip = إيقاف مشاركة الشاشة مؤقتا
bbb.screensharePublish.pause.label = إيقاف مؤقت
@@ -428,28 +432,29 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = غير قادر عل
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = يبدو أنك قد تكون مختفي أو تستخدم التصفح الخاص. تأكد ضمن إعدادات النتصفح الخاص بك أنك تسمح بتشغيل الإضافات في التخفي أوالتصفح الخاص.
bbb.screensharePublish.WebRTCExtensionInstallButton.label = انقر هنا للتثبيت
bbb.screensharePublish.WebRTCUseJavaButton.label = استخدام مشاركة الشاشة جافا
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = مشاركة الشاشة
bbb.screenshareView.fitToWindow = التلائم مع النافذة
bbb.screenshareView.actualSize = عرض الحجم الأصلي
bbb.screenshareView.minimizeBtn.accessibilityName = تصغير نافذة عرض مشاركة الشاشة
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = تكبير نافذة عرض مشاركة الشاشة
bbb.screenshareView.closeBtn.accessibilityName = إغلاق نافذة عرض مشاركة الشاشة
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop = تعطيل الصوت
bbb.toolbar.phone.toolTip.mute = ايقاف الاستماع للاجتماع
bbb.toolbar.phone.toolTip.unmute = بدء الاستماع للاجتماع
bbb.toolbar.phone.toolTip.nomic = لا يمكن الكشف عن ميكرفون
bbb.toolbar.deskshare.toolTip.start = فتح نافذة نشر مشاركة الشاشة
bbb.toolbar.deskshare.toolTip.stop = إيقاف مشاركة شاشتك
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip = فتح الملاحظات المشتركة
bbb.toolbar.video.toolTip.start = مشاركة كاميرا الويب الخاصة بك
bbb.toolbar.video.toolTip.stop = ايقاف مشاركة كاميرا الويب الخاصة بك
+bbb.layout.addButton.label = إضافة
bbb.layout.addButton.toolTip = أضف ترتيب الصفحة المخصص للقائمة
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = تغيير ترتيب الصفحة الخاص بك
bbb.layout.loadButton.toolTip = تحميل ترتيب الصفحة من الملف
bbb.layout.saveButton.toolTip = حفظ ترتيب الصفحة للملف
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = تطبيق ترتيب الصفحة
bbb.layout.combo.custom = * تخصيص ترتيب الصفحة
bbb.layout.combo.customName = تخصيص ترتيب الصفحة
bbb.layout.combo.remote = بعيد
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip = إغلاق
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = تم حفظ ترتيبات الصفحة بنجاح
+bbb.layout.save.ioerror =
bbb.layout.load.complete = تم تحميل ترتيبات الصفحة بنجاح
bbb.layout.load.failed = عدم المقدرة على تحميل التصميم
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = المخطط الافتراضي
bbb.layout.name.closedcaption = التعليقات السفليّة
bbb.layout.name.videochat = دردشة الفيديو
bbb.layout.name.webcamsfocus = اجتماع بكاميرا الويب
bbb.layout.name.presentfocus = اجتماع العرض التقديمي
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = مساعد المحاضرة
bbb.layout.name.lecture = محاضرة
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes = الملاحظات المشتركة
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = قلم رصاص
bbb.highlighter.toolbar.pencil.accessibilityName = تحويل مؤشر الفأرة في السبورة إلى مؤشر قلم رصاص
bbb.highlighter.toolbar.ellipse = دائرة
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = اختيار لون
bbb.highlighter.toolbar.color.accessibilityName = علامة رسم اللون في السبورة
bbb.highlighter.toolbar.thickness = تغيير السماكة
bbb.highlighter.toolbar.thickness.accessibilityName = سماكة الرسم في السبورة
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = تسجيل الخروج
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = موافق
bbb.logout.appshutdown = تم اغلاق تطبيق الخادم
bbb.logout.asyncerror = حدث خطأ متزامن
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = تم انهاء التصال مع السيرفر
bbb.logout.rejected = تم رفض الاتصال بالخادم
bbb.logout.invalidapp = تطبيق red5 غير موجود
bbb.logout.unknown = فقد العميل الخاص بك الاتصال بالخادم
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = تم تسجيل خروجك من الاجتماع
bbb.logour.breakoutRoomClose = سيتم إغلاق نافذة المتصفح الخاص بك
-bbb.logout.ejectedFromMeeting = المشرف طردك من الاجتماع
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = إذا كان تسجيل الخروج هذا غير متوقع فقم بالنقر على الزر أدناه لإعادة الاتصال.
bbb.logout.refresh.label = إعادة الاتصال
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title = الإعدادات
+bbb.settings.ok = موافق
+bbb.settings.cancel = إلغاء
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = تأكيد الخروج
bbb.logout.confirm.message = هل أنت متأكد من تسجيل الخروج؟
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = نعم
bbb.logout.confirm.no = لا
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title = تحذير
+bbb.endSession.confirm.message =
bbb.connection.failure=تم اكتشاف مشاكل فى الاتصال
bbb.connection.reconnecting=إعادة الإتصال
bbb.connection.reestablished=تم اعادة الاتصال
@@ -530,59 +539,60 @@ bbb.notes.title = ملاحظات
bbb.notes.cmpColorPicker.toolTip = لون النص
bbb.notes.saveBtn = حفظ
bbb.notes.saveBtn.toolTip = حفظ الملاحظة
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title = الملاحظات المشتركة
+bbb.sharedNotes.quickLink.label = نافذة الملاحظات المشتركة
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip = إغلاق
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single = {0} يكتب
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip = حفظ الملاحظات إلى ملف
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel = نص منسق (html.)
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label = إنشاء
+bbb.sharedNotes.new.toolTip = إنشاء ملاحظة إضافية
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip = تراجع عن التعديل
+bbb.sharedNotes.redo.toolTip = إعادة التعديل
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip = إعدادات الملاحظات المشتركة
+bbb.sharedNotes.clearWarning.title = تنظيف الملاحظات المشتركة
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title = إغلاق الملاحظات المشتركة
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip = المساحة المتوفرة في الملاحظات المشتركة
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = اختيار سماح من النافذة المنبثقة للتحقق من أن مشاركة سطح المكتب تعمل بشكل صحيح
bbb.settings.deskshare.start = التحقق من مشاركة سطح المكتب
bbb.settings.voice.volume = نشاط الميكيرفون
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label = خطأ في إصدار الجافا
+bbb.settings.java.text =
+bbb.settings.java.command = تثبيت أحدث نسخة لجافا
bbb.settings.flash.label = خطأ في نسخة الفلاش
bbb.settings.flash.text = تم تنصيب فلاش {0} ولكنك بحاجة إلى نسخة {1} على الأقل لكي تتمكن من تشغيل BigBlueButton بشكل صحيح. سيقوم الزر أدناه بتنصيب أحدث نسخة فلاش Adobe.
bbb.settings.flash.command = تنصيب أحدث نسخة للفلاش
bbb.settings.isight.label = خطأ في كاميرا الويب iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = تنصيب Flash 10.2 RC2
bbb.settings.warning.label = تحذير
bbb.settings.warning.close = اغلاق التحذير
bbb.settings.noissues = لا يوجد مواضيع معلقة
bbb.settings.instructions = قبول الفلاش الذي يطلب منك أذونات كاميرا الويب. إذا تطابقت المخرجات مع المتوقع فإنه تم ضبط متصفحك بشكل صحيح. وتجد أدناه المواضيع الأخرى المحتملة. قم بفحصها لإيجاد حل ممكن.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload = رفع
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download = تحميل
+bbb.bwmonitor.download.short = تحميل
+bbb.bwmonitor.total = المجموع
+bbb.bwmonitor.current = حالي
+bbb.bwmonitor.available = متاح
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = مؤشر المثلث
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = تبديل مؤشر السبورة إلى مؤشر المثلث
ltbcustom.bbb.highlighter.toolbar.line = مؤشر الخط
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = لقد تصفحت الرسال
bbb.accessibility.chat.chatBox.navigatedLatestRead = لقد تصفحت الرسالة الأحدث في القراءة.
bbb.accessibility.chat.chatwindow.input = مدخلات الدردشة
bbb.accessibility.chat.chatwindow.audibleChatNotification = إخطارات المحادثة الصوتية
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions = خيارات الدردشة العامة
bbb.accessibility.chat.initialDescription = فضلاً قم باستخدام الأسهم في لوحة المفاتيح لتصفح رسائل الدردشة.
bbb.accessibility.notes.notesview.input = مدخلات الملاحظات
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = ملائمة الشرائح مع ال
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = تعيين الشخص الذي تم اختياره مقدم
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = استبعاد الشخص الذي تم اختياره من الاجتماع
+bbb.shortcutkey.users.kick.function = أزالة الشخص المحدد من الاجتماع
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = كتم أو عدم كتم الصوت الذي تم اختياره
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = نشر
bbb.polling.closeButton.label = اغلق
bbb.polling.customPollOption.label = تصويت خصوصي...
bbb.polling.pollModal.title = نتائج الاستطلاع الحية
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = أدخل خيارات الاستطلاع
bbb.polling.respondersLabel.novotes = بانتظار الإجابات
bbb.polling.respondersLabel.text = قد اجاب {0} مستخدم
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = تطبيق إعدادات القفل
bbb.lockSettings.cancel = إلغاء
bbb.lockSettings.cancel.toolTip = إغلاق هذه النافذة بدون الحفظ
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = قفل المشرف
bbb.lockSettings.privateChat = دردشة خاصة
bbb.lockSettings.publicChat = دردشة عامة
bbb.lockSettings.webcam = كاميرا الويب
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = ميكيرفون
bbb.lockSettings.layout = الترتيب
bbb.lockSettings.title=قفل المستعرضين
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=إغلاق الاتصال "Lock on Join"
bbb.users.breakout.breakoutRooms = الغرف المفرقة
bbb.users.breakout.updateBreakoutRooms = تحديث الغرف المفرقة
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = الوقت المتبقي قبل إغلاق الغرف المتفرقة
bbb.users.breakout.calculatingRemainingTime = حساب الوقت المتبقي...
bbb.users.breakout.closing = إغلاق
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = غرف
bbb.users.breakout.roomsCombo.accessibilityName = عدد الغرف للإنشاء
bbb.users.breakout.room = غرفة
-bbb.users.breakout.randomAssign = تعيين المستخدمين عشوائيا
bbb.users.breakout.timeLimit = الحد الزمني
bbb.users.breakout.durationStepper.accessibilityName = الحد الزمني بالدقائق
bbb.users.breakout.minutes = دقيقة
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = دعوة
bbb.users.breakout.close = إغلاق
bbb.users.breakout.closeAllRooms = إغلاق كل الغرف المتفرقة
bbb.users.breakout.insufficientUsers = عدد المستخدمين غير كاف. يجب وضع مستخدم واحد على الأقل في غرفة متفرقة واحدة.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip = إغلاق
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = غرفة
bbb.users.roomsGrid.users = المستخدمون
bbb.users.roomsGrid.action = إجراء
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = نقل الصوت
bbb.users.roomsGrid.join = الانضمام
bbb.users.roomsGrid.noUsers = لا يوجد مستخدمون في هذه الغرفة
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=اللغة الافتراضية
+
+bbb.alert.cancel = إلغاء
+bbb.alert.ok = موافق
+bbb.alert.no = لا
+bbb.alert.yes = نعم
diff --git a/bigbluebutton-client/locale/ar_EG/bbbResources.properties b/bigbluebutton-client/locale/ar_EG/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/ar_EG/bbbResources.properties
+++ b/bigbluebutton-client/locale/ar_EG/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ar_SA/bbbResources.properties b/bigbluebutton-client/locale/ar_SA/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/ar_SA/bbbResources.properties
+++ b/bigbluebutton-client/locale/ar_SA/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/az_AZ/bbbResources.properties b/bigbluebutton-client/locale/az_AZ/bbbResources.properties
index d8e30609c6b5..28c50b82527a 100644
--- a/bigbluebutton-client/locale/az_AZ/bbbResources.properties
+++ b/bigbluebutton-client/locale/az_AZ/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Xahis edirik gozləyin {0} modul yuklənir:
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Xahis edirik biz serverin test muddəti ərzində gozləyəsiz.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Loq pəncərəsini aç
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Pəncərəni yenilə
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Ola bilər ki sizdə video konfransın köhnə versiyası var.
bbb.oldlocalewindow.reminder2 = Brovseri yeniləyin.
bbb.oldlocalewindow.windowTitle = Diqqət: köhnə dil ayarları
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Yardım
bbb.mainToolbar.logoutBtn = Çıxış
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentasiya
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Əvvəlki slayd.
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
bbb.presentation.forwardBtn.toolTip = Sonrakı slayd
bbb.presentation.maxUploadFileExceededAlert = Səhv: Faylın ölçüsü böyükdür.
bbb.presentation.uploadcomplete = Yükləmə sona çatdı. Sənəd yüklənənə qədər gözləyin.
bbb.presentation.uploaded = yükləndi.
bbb.presentation.document.supported = Yüklənmiş sənəd proqram tərəfindən dəstəklənir.
bbb.presentation.document.converted = Uğurla konvertasiya olundu.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Səhv: 111.
bbb.presentation.error.security = Səhv: 112.
bbb.presentation.error.convert.notsupported = Səhv: Yüklənmiş sənəd dəstəklənmir.
bbb.presentation.error.convert.nbpage = Səhv: Yüklənmiş sənəddə itki var.
bbb.presentation.error.convert.maxnbpagereach = Səhv: Yüklənmiş sənədi çevirmək mümkün olmadı.
bbb.presentation.converted = {0} dan {1} i çevirildi
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = Prezentasiya faylı
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
bbb.presentation.uploadwindow.excel = EXCEL
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
bbb.fileupload.title = Prezentasiyanı yükləyin
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
bbb.fileupload.selectBtn.toolTip = Faylı axtar
bbb.fileupload.uploadBtn = Yüklə
bbb.fileupload.uploadBtn.toolTip = Faylı yüklə
bbb.fileupload.deleteBtn.toolTip = Prezentasiyanı sil
bbb.fileupload.showBtn = Göstər
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Prezentasiyanı göstər
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = şəkillər hazırlanır..
bbb.fileupload.progBarLbl = Əməliyyat:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Yazışma
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = Mətn rəngi
-bbb.chat.input.accessibilityName = Chat Message Editing Field
+bbb.chat.input.accessibilityName =
bbb.chat.sendBtn.toolTip = Yazını göndər
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = Hamı
-bbb.chat.optionsTabName = Options
+bbb.chat.optionsTabName =
bbb.chat.privateChatSelect = Yazışma üçün istifadəçini seçin
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Sazlamalar
bbb.chat.fontSize = Şrift ölçüsüe
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
bbb.publishVideo.startPublishBtn.toolTip = Kamera qoşulur
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Rəngləndirən
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
+bbb.highlighter.toolbar.pencil.accessibilityName =
bbb.highlighter.toolbar.ellipse = Çevrə
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
+bbb.highlighter.toolbar.ellipse.accessibilityName =
bbb.highlighter.toolbar.rectangle = Dördbucaq
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
bbb.highlighter.toolbar.color = Rəng seç
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = Dəyiş
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = İmtina
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/be_BY/bbbResources.properties b/bigbluebutton-client/locale/be_BY/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/be_BY/bbbResources.properties
+++ b/bigbluebutton-client/locale/be_BY/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/bg_BG/bbbResources.properties b/bigbluebutton-client/locale/bg_BG/bbbResources.properties
index 5f408e4689de..46ef2b00b576 100644
--- a/bigbluebutton-client/locale/bg_BG/bbbResources.properties
+++ b/bigbluebutton-client/locale/bg_BG/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Свързване със сървъра
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Съжалявамe, не можем да се свържем със сървъра.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Отвори Дневник Прозорецът
bbb.mainshell.meetingNotFound = Сесията не бе намерена
bbb.mainshell.invalidAuthToken = Невалиден активационен код
bbb.mainshell.resetLayoutBtn.toolTip = Занули Изгледа
bbb.mainshell.notification.tunnelling = Връзката минава през тунел - tunnelling
bbb.mainshell.notification.webrtc = WebRTC Аудио
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Вие може да имате стар превод на BigBlueButton.
bbb.oldlocalewindow.reminder2 = Моля, изчистете кеша на браузъра си и опитайте отново.
bbb.oldlocalewindow.windowTitle = Предупреждение: Стар превод на езика
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Свързване
bbb.micSettings.webrtc.transferring = В процес на трансфер
bbb.micSettings.webrtc.endingecho = Свързване към аудиото
bbb.micSettings.webrtc.endedecho = Изпробването на аудиото приключи.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Разрешения за микрофон под Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Разрешения за микрофон под Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Предупреждение за звука
bbb.micWarning.joinBtn.label = Влез все пак
bbb.micWarning.testAgain.label = Изпробвай отново
@@ -79,28 +80,28 @@ bbb.webrtcWarning.title = WebRTC Аудио проблем
bbb.webrtcWarning.failedError.1001 = Грешка 1001: Връзката с WebSocket е прекъсната.
bbb.webrtcWarning.failedError.1002 = Грешка 1002: Не може да се осъществи връзка с WebSocket.
bbb.webrtcWarning.failedError.1003 = Грешка 1003: Версията на браузъра не е поддържана.
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
+bbb.webrtcWarning.failedError.1004 =
bbb.webrtcWarning.failedError.1005 = Грешка 1005: Повикването завърши неочаквано.
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
bbb.webrtcWarning.failedError.unknown = Грешка {0}: Непознат код на грешка.
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Помощ
bbb.mainToolbar.logoutBtn = Изход
bbb.mainToolbar.logoutBtn.toolTip = Изход
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Изберете език
bbb.mainToolbar.settingsBtn = Настройки
bbb.mainToolbar.settingsBtn.toolTip = Отвори настройки
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = Започни запис
bbb.mainToolbar.recordBtn.toolTip.stop = Спри запис
bbb.mainToolbar.recordBtn.toolTip.recording = Тази сесия се записва.
bbb.mainToolbar.recordBtn.toolTip.notRecording = Тази сесия не се записва.
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Потвърди запис
bbb.mainToolbar.recordBtn.confirm.message.start = Сигурни ли сте, че искате да започнете да записвате тази сесия?
bbb.mainToolbar.recordBtn.confirm.message.stop = Сигурни ли сте, че искате да спрете записа на тази сесия?
-bbb.mainToolbar.recordBtn..notification.title = Известие за записване
-bbb.mainToolbar.recordBtn..notification.message1 = Можете да запишете сесията
-bbb.mainToolbar.recordBtn..notification.message2 = За да започнете/спрете да записвате, използвайте бутона под заглавитето
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
bbb.mainToolbar.recordingLabel.recording = (Записва се)
bbb.mainToolbar.recordingLabel.notRecording = Не се записва
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Настройки на известията
bbb.clientstatus.notification = Непрочетени известия
bbb.clientstatus.close = Затвори
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
bbb.clientstatus.flash.title = Флаш плейър
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
+bbb.clientstatus.flash.message =
bbb.clientstatus.webrtc.title = Аудио
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = За по-добър звук, моля използвайте браузър Firefox или Chrome.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Минимизирай
bbb.window.maximizeRestoreBtn.toolTip = Увеличи
bbb.window.closeBtn.toolTip = Затвори
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Статус
bbb.users.usersGrid.statusItemRenderer.changePresenter = Натиснете тук за да презентирате
bbb.users.usersGrid.statusItemRenderer.presenter = Лектор
bbb.users.usersGrid.statusItemRenderer.moderator = Модератор
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Заличи статус
bbb.users.usersGrid.statusItemRenderer.viewer = Наблюдаващ
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Сподели уебкамера
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Щракнете, за да
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Щракнете, за да заглушите потребителят
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Заключи {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Отключи {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Отстранете потребител
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Споделена камера
bbb.users.usersGrid.mediaItemRenderer.micOff = Изкл. микрофон
bbb.users.usersGrid.mediaItemRenderer.micOn = Вкл. микрофон
bbb.users.usersGrid.mediaItemRenderer.noAudio = Не е аудио конференция
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Изчисти
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Презентация
bbb.presentation.titleWithPres = Презентация: {0}
bbb.presentation.quickLink.label = Прозорец за презентацията
bbb.presentation.fitToWidth.toolTip = Регулиране на широчината на панела за презентация
bbb.presentation.fitToPage.toolTip = Регулиране на размера на панела за презентация
bbb.presentation.uploadPresBtn.toolTip = Качване на презентация
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Прозорец Презентация Предишен слайд.
bbb.presentation.btnSlideNum.accessibilityName = Слайд {0} от {1}
bbb.presentation.btnSlideNum.toolTip = Избери слайд
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Качването завърши. Моля,
bbb.presentation.uploaded = качено.
bbb.presentation.document.supported = Каченият документ се поддържа. Започва конвертиране...
bbb.presentation.document.converted = Успешно конвертиране на офис документа.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Грешка: Моля, свържете се с администратор.
bbb.presentation.error.security = Грешка в сигурността: Моля, свържете се с администратор.
bbb.presentation.error.convert.notsupported = Грешка: Каченият документ не се поддържа. Моля, заредете съвместим файл.
@@ -283,70 +285,71 @@ bbb.fileupload.uploadBtn = Качване
bbb.fileupload.uploadBtn.toolTip = Качи файл
bbb.fileupload.deleteBtn.toolTip = Премахни Презентация
bbb.fileupload.showBtn = Покажи
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Покажи Презентация
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Генериране на миникартинки...
bbb.fileupload.progBarLbl = Прогрес:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Чат
bbb.chat.quickLink.label = Прозорец за съобщенията
bbb.chat.cmpColorPicker.toolTip = Цвят на текста в прозорец Чат
bbb.chat.input.accessibilityName = Поле за редактиране на съобщението
bbb.chat.sendBtn.toolTip = Изпрати съобщение
bbb.chat.sendBtn.accessibilityName = Изпрати чат съобщение
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Копирай всичкия текст
bbb.chat.publicChatUsername = Всички
bbb.chat.optionsTabName = Настройки
bbb.chat.privateChatSelect = Прозорец Чат Избери лице за персонален чат
bbb.chat.private.userLeft = Потребителят е напуснал.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Избери потребител за директно съобщение
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Прозорец Чат Чат опции
bbb.chat.fontSize = Прозорец Чат Големина на шрифта
bbb.chat.cmbFontSize.toolTip = Изберете размер на шрифта на чата
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Минимизирайте прозорец Чат
bbb.chat.maximizeRestoreBtn.accessibilityName = Максимизирайте прозорец Чат
bbb.chat.closeBtn.accessibilityName = Затворете прозорец Чат
bbb.chat.chatTabs.accessibleNotice = Новите съобщения се показват тук.
bbb.chat.chatMessage.systemMessage = Система
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Смяна на камерата
bbb.publishVideo.changeCameraBtn.toolTip = Прозорец за избиране на видео камера
bbb.publishVideo.cmbResolution.tooltip = Избери резолюция на камерата
bbb.publishVideo.startPublishBtn.labelText = Стартиране на споделянето
bbb.publishVideo.startPublishBtn.toolTip = Започни споделяне
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
+bbb.publishVideo.startPublishBtn.errorName =
bbb.webcamPermissions.chrome.title = Разрешения за камера под Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Закачи видео
bbb.videodock.quickLink.label = Прозорец за Видео/Уеб камерите
bbb.video.minimizeBtn.accessibilityName = Минимизирай прозорец Видео
@@ -366,90 +369,92 @@ bbb.video.publish.hint.publishing = Публикуване...
bbb.video.publish.closeBtn.accessName = Прозорец Уебкамера Затвори прозорец
bbb.video.publish.closeBtn.label = Отмени
bbb.video.publish.titleBar = Прозорец Публикуване на камера
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = Минимизирай
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
bbb.screensharePublish.startButton.label = Начало
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Споделяне на екрана
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Спрете да слушате аудиото.
bbb.toolbar.phone.toolTip.unmute = Слушайте аудиото.
bbb.toolbar.phone.toolTip.nomic = Не бе намерен микрофон
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Споделете камерата си
bbb.toolbar.video.toolTip.stop = Прекратете споделянето на камерата си
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Добави потребителски изглед към списъка
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Променете изгледа
bbb.layout.loadButton.toolTip = Зареждане на изгледи от файл
bbb.layout.saveButton.toolTip = Съхрани изгледите във файл
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Задай изглед
bbb.layout.combo.custom = *Потребителски изглед
bbb.layout.combo.customName = Потребителски изглед
bbb.layout.combo.remote = Отдалечен
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Изгледите бяха успешно съхранени
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Изгледите бяха успешно заредени
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.load.failed =
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Стандартен изглед
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Видео Чат
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Асистент
bbb.layout.name.lecture = Лекция
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Молив
bbb.highlighter.toolbar.pencil.accessibilityName = Превключи от курсор към молив
bbb.highlighter.toolbar.ellipse = Кръг
@@ -492,97 +500,99 @@ bbb.highlighter.toolbar.color = Избери цвят
bbb.highlighter.toolbar.color.accessibilityName = Цвят на маркера
bbb.highlighter.toolbar.thickness = Смени дебелината
bbb.highlighter.toolbar.thickness.accessibilityName = Дебелина на маркера
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Вие сте напуснали
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = ДА
bbb.logout.appshutdown = Приложението на сървъра беше спряно
bbb.logout.asyncerror = Възникнала е асинхронна грешка
bbb.logout.connectionclosed = Връзката със сървъра е била затворена
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Връзката до сървъра беше отказана
bbb.logout.invalidapp = Приложението red5 не съществува
bbb.logout.unknown = Вашият клиент е загубил връзка със сървъра
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Вие сте излезли от конференцията
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Ако изходът от системата е неочакван, натиснете бутона по-долу, за да се свържете повторно.
bbb.logout.refresh.label = Повторно свързване
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Потвърдете, че искате да напуснете
bbb.logout.confirm.message = Сигурни ли сте, че искате да напуснете?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Да
bbb.logout.confirm.no = Не
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
bbb.connection.video=Видео
-bbb.connection.deskshare=Deskshare
+bbb.connection.deskshare=
bbb.notes.title = Бележки
bbb.notes.cmpColorPicker.toolTip = Цвят на текста
bbb.notes.saveBtn = Съхрани
bbb.notes.saveBtn.toolTip = Съхрани бележката
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Кликни "Allow", когато изкочи, за проверка на правилната работа на споделянето на работния плот
bbb.settings.deskshare.start = Проверете споделянето на работният екран
bbb.settings.voice.volume = Микрофон
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Грешка на Flash версията
bbb.settings.flash.text = Имате инсталирана Flash версия {0}, но трябва да имате инсталирана версия поне {1}, за да използвате споделяне на екрана през BigBlueButton. Щракнете бутона по-долу, за да инсталирате най-новата версия на Adobe Flash.
bbb.settings.flash.command = Инсталирайте най-новия Flash
bbb.settings.isight.label = Грешка на iSight камера
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Инсталирай Flash версия 10.2 RC2
bbb.settings.warning.label = Предупреждение
bbb.settings.warning.close = Затвори предупреждението
bbb.settings.noissues = Няма открити възпрепятсващи проблеми.
bbb.settings.instructions = Приемете Flash запитването за достъп до вашата камера. Ако можете да видите и чуете себе си, вашият браузър е настроен правилно. Други потенциални проблеми са показани по-долу. Кликнете върху всеки, за да намерите възможно решение.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Триъгълник
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Превключи курсор към триъгълник
ltbcustom.bbb.highlighter.toolbar.line = Линия
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Текст
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Превключи от курсор към текст
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Цвят на текст
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Размер на шрифта
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = В готовност
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Преминали сте на
bbb.accessibility.chat.chatBox.navigatedLatest = Преминали сте към най-последното съобщение.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Преминали сте към оследното съобщение, което сте чели.
bbb.accessibility.chat.chatwindow.input = Въвеждане в чата
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Моля използвайте стрелките на клавиатурата за навигация в съобщенията
bbb.accessibility.notes.notesview.input = Вход за бележки
bbb.shortcuthelp.title = ÐлавиÑни комбинаÑии
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Минимизирай прозорец Клавишни комбинации
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Максимизирай прозорец Клавишни комбинации
bbb.shortcuthelp.closeBtn.accessibilityName = Затвори прозорец Клавишни комбинации
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Основни клавишни комбинации
bbb.shortcuthelp.dropdown.presentation = Клавишни комбинации за презентацията
bbb.shortcuthelp.dropdown.chat = Клавишни комбинации за чата
bbb.shortcuthelp.dropdown.users = Потребителски клавишни комбинации
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Пряк път
bbb.shortcuthelp.headers.function = Настройки
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Преместете фокусът върху прозорецът Презентация
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Преместете фокусът върху чат прозореца
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Отворете прозорецът за споделяне на работния екран
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Напуснете тази среща
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Вдигнете ръка
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Качване на презентация
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Преминете към предходния слайд
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Преминете към следващия слайд
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Слайдовете да паснат на широчината
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Слайдовете да паснат към страницата
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Направете избраната личност лектор
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Отстранете избраната личност от срещата
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Заглушете или позволете да говори избраната личност
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Заглушете или позволете да говорят всички потребители
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Заглушете всеки един с изключение на Лектора
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Фокусиране върху чат табовете
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Превключи към палитрата.
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Изпрати съобщение
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = За навигиране на съобщения, трябва да фокусирате върху чат кутията.
@@ -746,18 +756,19 @@ bbb.shortcutkey.chat.chatbox.goread.function = Преминете към пос
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Временна дебъг клавишна комбинация
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = Публикувай
bbb.polling.closeButton.label = Затвори
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
bbb.polling.respondersLabel.finished = Готово
bbb.polling.answer.Yes = Да
bbb.polling.answer.No = Не
@@ -770,8 +781,8 @@ bbb.polling.answer.D = Г
bbb.polling.answer.E = Д
bbb.polling.answer.F = Е
bbb.polling.answer.G = Ж
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Стартиране на споделянето
bbb.publishVideo.changeCameraBtn.labelText = Смяна на камерата
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Затвори всички ви
bbb.users.settings.lockAll = Заключи всички потребители
bbb.users.settings.lockAllExcept = Заключи всички потребители без презентиращия.
bbb.users.settings.lockSettings = Заключи всички потребители
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Отключи всички потребители
bbb.users.settings.roomIsLocked = Заключено по подразбиране
bbb.users.settings.roomIsMuted = Заглушен по подразбиране
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Задай настройки за заключ
bbb.lockSettings.cancel = Отмени
bbb.lockSettings.cancel.toolTip = Затвори този прозорец без запазване на информацията
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Заключване за модератор
bbb.lockSettings.privateChat = Лични съобщения
bbb.lockSettings.publicChat = Общ чат
bbb.lockSettings.webcam = Видео/Уеб камера
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Микрофон
bbb.lockSettings.layout = Изглед
bbb.lockSettings.title=Заключи потребителите
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Функционалност
bbb.lockSettings.locked=Заключен
bbb.lockSettings.lockOnJoin=Заключи при свързване
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Стаи
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
+bbb.users.breakout.roomsCombo.accessibilityName =
bbb.users.breakout.room = Стая
-bbb.users.breakout.randomAssign = Randomly Assign Users
bbb.users.breakout.timeLimit = Лимит
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
+bbb.users.breakout.durationStepper.accessibilityName =
bbb.users.breakout.minutes = Минути
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
bbb.users.breakout.start = Начало
-bbb.users.breakout.invite = Invite
+bbb.users.breakout.invite =
bbb.users.breakout.close = Затвори
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = Стая
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/bn_IN/bbbResources.properties b/bigbluebutton-client/locale/bn_IN/bbbResources.properties
index 851ea0e73349..c04d078f2dad 100644
--- a/bigbluebutton-client/locale/bn_IN/bbbResources.properties
+++ b/bigbluebutton-client/locale/bn_IN/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = ঠিক আছে
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = বন্ধ করুন
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/bs_BA/bbbResources.properties b/bigbluebutton-client/locale/bs_BA/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/bs_BA/bbbResources.properties
+++ b/bigbluebutton-client/locale/bs_BA/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ca_ES/bbbResources.properties b/bigbluebutton-client/locale/ca_ES/bbbResources.properties
index cb4aaefecd7a..5120e75b8e22 100644
--- a/bigbluebutton-client/locale/ca_ES/bbbResources.properties
+++ b/bigbluebutton-client/locale/ca_ES/bbbResources.properties
@@ -1,159 +1,160 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Connectant amb el servidor
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Ho sentim, no vam poder connectar amb el servidor.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Obrir finestra d'històric
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Reiniciar posició de finestres
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Podria ser una traducció obsoleta de BigBlueButton.
bbb.oldlocalewindow.reminder2 = Si us plau, buidi la memòria cau del seu navegador, i torneu a provar.
bbb.oldlocalewindow.windowTitle = Avís: Traducció d'idioma obsoleta
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
bbb.micSettings.speakers.header = Prova de parlants
bbb.micSettings.microphone.header = Provar Micròfon
bbb.micSettings.playSound = Reproduir so de prova
bbb.micSettings.playSound.toolTip = Escoltar música per provar els parlants.
bbb.micSettings.hearFromHeadset = S'haurien d'usar els auriculars en lloc dels altaveus de l'ordinador.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
bbb.micSettings.echoTestAudioYes = Si
bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = Canviar micròfon
bbb.micSettings.changeMic.toolTip = Obrir la finestra de configuracions del micròfon de Flash Player
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = Connectar àudio
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
bbb.micSettings.cancel.toolTip = Cancel·lar la unió a la conferència d'àudio
bbb.micSettings.access.helpButton = Ajuda (obrir videotutorials en una pàgina nova)
bbb.micSettings.access.title = Configuracions d'Àudio. Aquesta finestra romandrà enfocada fins que es tanqui la mateixa.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Ajuda
bbb.mainToolbar.logoutBtn = Desconnectar
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Selecciona Idioma
bbb.mainToolbar.settingsBtn = Configuració
bbb.mainToolbar.settingsBtn.toolTip = Obrir configuració
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimitzar
bbb.window.maximizeRestoreBtn.toolTip = Maximitzar
bbb.window.closeBtn.toolTip = Tancar
@@ -166,88 +167,89 @@ bbb.users.quickLink.label = Finestra d'Usuaris
bbb.users.minimizeBtn.accessibilityName = Minimitzar la Finestra d'Assistents
bbb.users.maximizeRestoreBtn.accessibilityName = Maximitzar la Finestra d'Assistents
bbb.users.settings.buttonTooltip = Configuracions
-bbb.users.settings.audioSettings = Audio Test
+bbb.users.settings.audioSettings =
bbb.users.settings.webcamSettings = Configuració de la Cambra
bbb.users.settings.muteAll = Silenciar a tots
bbb.users.settings.muteAllExcept = Silenciar a tots excepte al presentador
bbb.users.settings.unmuteAll = Activar àudio a tots
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = Click per parlar
bbb.users.pushToMute.toolTip = Cliqueu per desactivar l'àudio
bbb.users.muteMeBtnTxt.talk = Activar àudio
bbb.users.muteMeBtnTxt.mute = Desactivar Àudio
bbb.users.muteMeBtnTxt.muted = Àudio Desactivat
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Llista d'Assistents. Utilitza les tecles de direcció per navegar.
bbb.users.usersGrid.nameItemRenderer = Nom
bbb.users.usersGrid.nameItemRenderer.youIdentifier = el teu
bbb.users.usersGrid.statusItemRenderer = Estat
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
bbb.users.usersGrid.statusItemRenderer.presenter = Presentador
bbb.users.usersGrid.statusItemRenderer.moderator = Moderador
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Assistent
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = Mitjana
bbb.users.usersGrid.mediaItemRenderer.talking = Parlant
bbb.users.usersGrid.mediaItemRenderer.webcam = Cambra Compartida
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Cliqueu per veure la càmera
bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Fes click per activar l'àudio a l'assistent
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Fes click per desactivar l'àudio a l'assistent
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Expulsar a l'assistent
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Cambra Compartida
bbb.users.usersGrid.mediaItemRenderer.micOff = Micròfon apagat
bbb.users.usersGrid.mediaItemRenderer.micOn = Micròfon encès
bbb.users.usersGrid.mediaItemRenderer.noAudio = No està en la Conferència de Veu
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Presentació
bbb.presentation.titleWithPres = Presentació: {0}
bbb.presentation.quickLink.label = Finestra de Presentació
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Diapositiva anterior.
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
+bbb.presentation.btnSlideNum.accessibilityName =
bbb.presentation.btnSlideNum.toolTip = Fes click per a seleccionar una diapositiva
bbb.presentation.forwardBtn.toolTip = Diapositiva següent
bbb.presentation.maxUploadFileExceededAlert = Error: La mida del fitxer supera el màxim permès.
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Càrrega completa. Si us plau espereu mentre
bbb.presentation.uploaded = carregat.
bbb.presentation.document.supported = El document carregat està suportat. Començant la conversió ...
bbb.presentation.document.converted = Document convertit amb èxit.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Error E / S: Si us plau, contacti amb l'Administrador.
bbb.presentation.error.security = Error de Seguretat: Si us plau, contacti amb l'Administrador.
bbb.presentation.error.convert.notsupported = El tipus de fitxer carregat no està suportat. Si us plau, carregueu un fitxer compatible.
@@ -276,77 +278,78 @@ bbb.presentation.minimizeBtn.accessibilityName = Minimitzar la finestra de prese
bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximitzar la finestra de presentació
bbb.presentation.closeBtn.accessibilityName = Tancar la finestra de presentació
bbb.fileupload.title = Carregar un nou document per presentar.
-bbb.fileupload.lblFileName.defaultText = No file selected
+bbb.fileupload.lblFileName.defaultText =
bbb.fileupload.selectBtn.label = Seleccionar arxiu
bbb.fileupload.selectBtn.toolTip = Seleccioneu un arxiu
bbb.fileupload.uploadBtn = Carregar
bbb.fileupload.uploadBtn.toolTip = Carregar l'arxiu
bbb.fileupload.deleteBtn.toolTip = Eliminar presentació
bbb.fileupload.showBtn = Mostrar
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Mostra la Presentació
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Generant miniatures ...
bbb.fileupload.progBarLbl = Progrés:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Xat
bbb.chat.quickLink.label = Finestra del Xat
bbb.chat.cmpColorPicker.toolTip = Color de text
bbb.chat.input.accessibilityName = Camp per editar el missatge del xat.
bbb.chat.sendBtn.toolTip = Enviar el missatge
bbb.chat.sendBtn.accessibilityName = Enviar missatge del xat
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = Tots
bbb.chat.optionsTabName = Opcions
bbb.chat.privateChatSelect = Seleccioneu una persona per xerrar en privat
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Opcions de xat
bbb.chat.fontSize = Mida del text
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimitzar la finestra del xat
bbb.chat.maximizeRestoreBtn.accessibilityName = Maximitzar la finestra del xat
bbb.chat.closeBtn.accessibilityName = Tancar a finestra del xat
bbb.chat.chatTabs.accessibleNotice = Nous missatges en aquesta pestanya.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Canviar la configuració de la càmera
bbb.publishVideo.changeCameraBtn.toolTip = Obre per obrir la finestra de canvis a la cambra
bbb.publishVideo.cmbResolution.tooltip = Seleccionar la resolució de la càmera
bbb.publishVideo.startPublishBtn.labelText = Començar a compartir
bbb.publishVideo.startPublishBtn.toolTip = Comparteix la meva càmera
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Àrea de vídeo
bbb.videodock.quickLink.label = Finestra de Càmeres web
bbb.video.minimizeBtn.accessibilityName = Minimitzar la finestra d'àrea de vídeos
@@ -361,96 +364,98 @@ bbb.video.publish.hint.waitingApproval = Esperant per aprovació
bbb.video.publish.hint.videoPreview = Vista prèvia del vídeo
bbb.video.publish.hint.openingCamera = Obrint càmera ...
bbb.video.publish.hint.cameraDenied = Accés denegat a càmera
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Publicant ...
bbb.video.publish.closeBtn.accessName = Tancar la finestra de configuracions de la càmera web
bbb.video.publish.closeBtn.label = Cancel
bbb.video.publish.titleBar = Finestra d'iniciació de la càmera web
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Afegir el disseny personalitzat a la llista
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
bbb.layout.loadButton.toolTip = Carregar dissenys d'un arxiu
bbb.layout.saveButton.toolTip = Desar dissenys en un arxiu
bbb.layout.lockButton.toolTip = Bloquejar disseny
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Aplicar disseny
bbb.layout.combo.custom = * Disseny personalitzat
bbb.layout.combo.customName = Disseny personalitzat
bbb.layout.combo.remote = Remot
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Els dissenys van ser guardats amb èxit
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Els dissenys van ser carregats
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Ressaltat
bbb.highlighter.toolbar.pencil.accessibilityName = Canviar el cursor a llapis
bbb.highlighter.toolbar.ellipse = Cercle
@@ -484,105 +492,107 @@ bbb.highlighter.toolbar.rectangle = Rectangle
bbb.highlighter.toolbar.rectangle.accessibilityName = Canviar cursos a rectangle
bbb.highlighter.toolbar.panzoom = Panoràmic i Zoom
bbb.highlighter.toolbar.panzoom.accessibilityName = Canviar el cursor a panoràmic i zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
+bbb.highlighter.toolbar.clear =
bbb.highlighter.toolbar.clear.accessibilityName = Netejar la pàgina de la pissarra
-bbb.highlighter.toolbar.undo = Undo Annotation
+bbb.highlighter.toolbar.undo =
bbb.highlighter.toolbar.undo.accessibilityName = Desfer l'última figura de la pissarra
bbb.highlighter.toolbar.color = Selecciona color
bbb.highlighter.toolbar.color.accessibilityName = Dibuixar un color a la pissarra
bbb.highlighter.toolbar.thickness = Modificar el gruix de la línia
bbb.highlighter.toolbar.thickness.accessibilityName = Dibuixar gruix a la pissarra
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = L'aplicació de servidor ha estat detinguda
bbb.logout.asyncerror = S'ha produït un error asíncron
bbb.logout.connectionclosed = S'ha tancat la connexió amb el servidor
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = La connexió amb el servidor ha estat rebutjada
bbb.logout.invalidapp = No existeix l'aplicació Red5
bbb.logout.unknown = S'ha perdut la connexió amb el servidor
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Ha desconnectat de la conferència
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Confirmar Tancar Sessió
bbb.logout.confirm.message = Està segur que desitja tancar sessió?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Si
bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = Notes
bbb.notes.cmpColorPicker.toolTip = Color de Text
bbb.notes.saveBtn = Desa
bbb.notes.saveBtn.toolTip = Guardar Nota
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Premeu Permetre a la finestra emergent per verificar que la compartició del escriptori us està funcionant adequadament
bbb.settings.deskshare.start = Comprovar Compartició de pantalla
bbb.settings.voice.volume = Activitat del micròfon
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Error de versió de Flash
bbb.settings.flash.text = Disposa de Flash {0}, però necessita almenys {1} per a utilitzar la videoconferència. Premi el botó per actualitzar la seva versió de Adobe Flash.
bbb.settings.flash.command = Actualitzar Flash
bbb.settings.isight.label = Error de càmera iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instal·lar Flash 10.2 RC2
bbb.settings.warning.label = Avís
bbb.settings.warning.close = Tancar aquest avís
bbb.settings.noissues = No s'ha trobat cap problema greu.
bbb.settings.instructions = Accepteu la sol·licitud de Flash que li demana permisos per utilitzar la seva càmera. Si pot veure i escoltar, el seu navegador es troba configurat correctament. A continuació, es llisten problemes potencials. Premi en cada un d'ells per les seves possibles solucions.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Canviar Cursor de Pissarra a Triangle
ltbcustom.bbb.highlighter.toolbar.line = Línia
@@ -591,34 +601,34 @@ ltbcustom.bbb.highlighter.toolbar.text = Text
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Canviar Cursos de pissarra a text
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Color de text
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Mida de font
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
bbb.accessibility.chat.chatBox.reachedFirst = Has arribat al primer missatge
bbb.accessibility.chat.chatBox.reachedLatest = Has arribat a l'últim missatge
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Has navegat al primer missatge
bbb.accessibility.chat.chatBox.navigatedLatest = Has navegat a l'últim missatge
bbb.accessibility.chat.chatBox.navigatedLatestRead = Has navegat al missatge llegit més recent
bbb.accessibility.chat.chatwindow.input = Entrada del xat
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Si us plau usar les tecles direccionals per navegar a través dels missatges del xat.
bbb.accessibility.notes.notesview.input = Entrades de les notes
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimitzar la finestra d'accessos ràpids
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximitzar la finestra d'accessos ràpids
bbb.shortcuthelp.closeBtn.accessibilityName = Tancar la finestra d'accessos ràpids
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Accessos ràpids globals
bbb.shortcuthelp.dropdown.presentation = Accessos ràpids a la presentació
bbb.shortcuthelp.dropdown.chat = Accés ràpid al xat
bbb.shortcuthelp.dropdown.users = Accés ràpid als usuaris
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Accés Ràpid
bbb.shortcuthelp.headers.function = Funció
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Minimitzar finestra actual
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Maximitzar finestra actual
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Desenfocar de la finestra de flash
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Activar o Desactivar el so del teu micròfon
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Moure enfocament a la finestra de presentació
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Moure enfocament a la venda de xat
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Obrir la finestra de compartir escriptori
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Tancar Sessió d'aquesta reunió
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Aixecar la mà
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Pujar presentació
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Anar a la diapositiva anterior
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Anar a la següent diapositiva
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Ajustar diapositives a l'ample
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Ajustar diapositives a la pàgina
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Fer presentador a la persona seleccionada
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Expulsar la persona seleccionada de la reunió
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Activar o Desactivar so de la persona seleccionada
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Activar o Desactivar so a tots els usuaris
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Silenciar a tots excepte al presentador
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Enfocar a les pestanyes del xat
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Enfocar al seleccionador de color de la font
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Enviar missatge del xat
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Per navegar en el missatge, el teu has enfocar a la finestra del xat
@@ -746,32 +756,33 @@ bbb.shortcutkey.chat.chatbox.goread.function = Navegar al missatge llegit més r
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Tecla d'accés ràpid per depurar temporalment
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = Publicar
bbb.polling.closeButton.label = Tancar
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = Si
bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Començar a compartir
bbb.publishVideo.changeCameraBtn.labelText = Canviar la configuració de la càmera
@@ -787,117 +798,74 @@ bbb.shortcutkey.specialKeys.down = Fletxa direccional baix
bbb.shortcutkey.specialKeys.plus = Més
bbb.shortcutkey.specialKeys.minus = Menys
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/cs_CZ/bbbResources.properties b/bigbluebutton-client/locale/cs_CZ/bbbResources.properties
index 61ae65bb2174..abecc53cf48a 100644
--- a/bigbluebutton-client/locale/cs_CZ/bbbResources.properties
+++ b/bigbluebutton-client/locale/cs_CZ/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Připojování k serveru
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Omlouváme se, k serveru se nelze připojit.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Otevřít okno záznamu
bbb.mainshell.meetingNotFound = Konference nenalezena
bbb.mainshell.invalidAuthToken = Neplatný autentizační kód
bbb.mainshell.resetLayoutBtn.toolTip = Původní nastavení vzhledu
bbb.mainshell.notification.tunnelling = Tunelování
bbb.mainshell.notification.webrtc = WebRTC zvuk
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Máte starý jazykový překlad BigBlueButtonu.
bbb.oldlocalewindow.reminder2 = Vymažte cache Vašeho prohlížeče a zkuste to znovu, prosím.
bbb.oldlocalewindow.windowTitle = Upozornění: Starý jazykový překlad
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Zrušit
bbb.micSettings.connectingtoecho = Připojování
bbb.micSettings.connectingtoecho.error = Chyba ozvěnové zkoušky: Prosím kontaktujte administrátora.
bbb.micSettings.cancel.toolTip = Zrušit přihlášení do audio konference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Nastavení zvuku. Fokus zůstane v tomto okně až do jeho zavření.
bbb.micSettings.webrtc.title = WebRTC Podpora
bbb.micSettings.webrtc.capableBrowser = Váš prohlížeč podporuje WebRTC
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Připojování
bbb.micSettings.webrtc.transferring = Přenáším
bbb.micSettings.webrtc.endingecho = Připojování ke zvuku
bbb.micSettings.webrtc.endedecho = Ozvěnová zkouška ukončena.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Oprávnění pro mikrofon
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Oprávnění pro mikrofon
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Upozornění zvuku
bbb.micWarning.joinBtn.label = Vstoupit
bbb.micWarning.testAgain.label = Znovu otestovat
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Ozvěnový test WebRTC byl neo
bbb.webrtcWarning.connection.dropped = Připojení pomocí WebRTC bylo přerušeno
bbb.webrtcWarning.connection.reconnecting = Pokouším se o opětovné navázání spojení
bbb.webrtcWarning.connection.reestablished = Připojení pomocí WebRTC bylo opětovně navázáno
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Pomoc
bbb.mainToolbar.logoutBtn = Odhlásit se
bbb.mainToolbar.logoutBtn.toolTip = Odhlásit se
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Volba jazyka
bbb.mainToolbar.settingsBtn = Nastavení
bbb.mainToolbar.settingsBtn.toolTip = Otevřít nastavení
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Spustit nahrávání
bbb.mainToolbar.recordBtn.toolTip.stop = Zastavit nahrávání
bbb.mainToolbar.recordBtn.toolTip.recording = Místnost je nahrávána
bbb.mainToolbar.recordBtn.toolTip.notRecording = Místnost není nahrávána
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Potvrdit nahrávání
bbb.mainToolbar.recordBtn.confirm.message.start = Opravdu chcete nahrávat tuto místnost?
bbb.mainToolbar.recordBtn.confirm.message.stop = Opravdu chcete zastavit nahrávání?
-bbb.mainToolbar.recordBtn..notification.title = Nahrát oznámení
-bbb.mainToolbar.recordBtn..notification.message1 = Můžete nahrát tuto konferenci
-bbb.mainToolbar.recordBtn..notification.message2 = Pro zahájení nebo ukončení nahrávání stiskněte tlačítko na titulní liště.
+bbb.mainToolbar.recordBtn.notification.title = Nahrát oznámení
+bbb.mainToolbar.recordBtn.notification.message1 = Můžete nahrát tuto konferenci
+bbb.mainToolbar.recordBtn.notification.message2 = Pro zahájení nebo ukončení nahrávání stiskněte tlačítko na titulní liště.
bbb.mainToolbar.recordingLabel.recording = (Nahrávání)
bbb.mainToolbar.recordingLabel.notRecording = Nahrávání zastaveno
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Konfigurační oznámení
bbb.clientstatus.notification = Nepřečtená oznámení
bbb.clientstatus.close = Zavřít
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Váš prohlížeč ({0}) je zastaralý. Dopor
bbb.clientstatus.flash.title = Flash přehrávač
bbb.clientstatus.flash.message = Váš Flash přehrávač plugin ({0}) je zastaralý. Doporučujeme aktualizovat na poslední verzi.
bbb.clientstatus.webrtc.title = Zvuk
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Pro lepší zvuk doporučujeme Firefox nebo Chrome.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimalizovat
bbb.window.maximizeRestoreBtn.toolTip = Maximalizovat
bbb.window.closeBtn.toolTip = Zavřít
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Stav
bbb.users.usersGrid.statusItemRenderer.changePresenter = Klikněte pro volbu prezentujícího
bbb.users.usersGrid.statusItemRenderer.presenter = Prezentující
bbb.users.usersGrid.statusItemRenderer.moderator = Moderátor
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Vymazat stav
bbb.users.usersGrid.statusItemRenderer.viewer = Pozorovatel
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sdílení webové kamery.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Zesílit {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Ztlumit {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Zamknout {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Odemknout {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Vyhodit {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Sdílení webové kamery
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon vypnut
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon zapnut
bbb.users.usersGrid.mediaItemRenderer.noAudio = Není ve zvukové konferenci
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Vyčistit
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentace
bbb.presentation.titleWithPres = Prezentace: {0}
bbb.presentation.quickLink.label = Okno prezentace
bbb.presentation.fitToWidth.toolTip = Pžizpůsobit prezentaci šířce
bbb.presentation.fitToPage.toolTip = Pžizpůsobit prezentaci stránce
bbb.presentation.uploadPresBtn.toolTip = Nahrát prezentaci
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Předchozí snímek.
bbb.presentation.btnSlideNum.accessibilityName = Snímek {0} z {1}
bbb.presentation.btnSlideNum.toolTip = Výběr stránky prezentace
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Nahrávání bylo dokončeno. Prosíme chvíli
bbb.presentation.uploaded = nahráno.
bbb.presentation.document.supported = Nahraný dokument je podporován. Zahajuji převod...
bbb.presentation.document.converted = Dokument byl úspěšně převeden.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO chyba: Prosíme kontaktujte administratora.
bbb.presentation.error.security = Bezpečnostní chyba: Prosíme kontaktujte administratora.
bbb.presentation.error.convert.notsupported = Chyba: Nahraný soubor není podporován. Prosíme nahrajte kompatibilní soubor.
@@ -283,61 +285,62 @@ bbb.fileupload.uploadBtn = Nahrát
bbb.fileupload.uploadBtn.toolTip = Nahrát soubor
bbb.fileupload.deleteBtn.toolTip = Odstranit prezentaci
bbb.fileupload.showBtn = Zobrazit
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Zobrazit prezentaci
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Vytvářím náhledy..
bbb.fileupload.progBarLbl = Postup:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chat
bbb.chat.quickLink.label = Okno chatu
bbb.chat.cmpColorPicker.toolTip = Barva textu
bbb.chat.input.accessibilityName = Pole pro editaci zprávy chatu
bbb.chat.sendBtn.toolTip = Odeslat zprávu
bbb.chat.sendBtn.accessibilityName = Odeslat zprávu chatu
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopírovat všechen text
bbb.chat.publicChatUsername = Všichni
bbb.chat.optionsTabName = Volby
bbb.chat.privateChatSelect = Vyberte osobu, se kterou chcete chatovat soukromě
bbb.chat.private.userLeft = Uživatel se odhlásil.
bbb.chat.private.userJoined = Uživatel se přihlásil.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Vyberte uživatele pro soukromý chat
bbb.chat.usersList.accessibilityName = Vyberte uživatele k otevření soukromého chatu. Použijte klávesy s šipkami pro navigaci.
bbb.chat.chatOptions = Nastavení chatu
bbb.chat.fontSize = Velikost písma
bbb.chat.cmbFontSize.toolTip = Výběr velikosti písma pro chat
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimalizovat okno chatu
bbb.chat.maximizeRestoreBtn.accessibilityName = Maximalizovat okno chatu
bbb.chat.closeBtn.accessibilityName = Zavřít okno chatu
bbb.chat.chatTabs.accessibleNotice = Nové zprávy na této záložce.
bbb.chat.chatMessage.systemMessage = Systém
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Zpráva je delší o {0} znak(ů)
bbb.publishVideo.changeCameraBtn.labelText = Změnit webovou kameru
bbb.publishVideo.changeCameraBtn.toolTip = Otevřít dialogové okno pro změnu kamery
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Zahájit sdílení
bbb.publishVideo.startPublishBtn.toolTip = Zahájit sdílení webové kamery
bbb.publishVideo.startPublishBtn.errorName = Nelze nasdílet webkameru. Důvod: {0}
bbb.webcamPermissions.chrome.title = Oprávnění pro webovou kameru
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Webové kamery
bbb.videodock.quickLink.label = Okno webových kamer
bbb.video.minimizeBtn.accessibilityName = Minimalizovat okno webových kamer
@@ -367,89 +370,91 @@ bbb.video.publish.closeBtn.accessName = Zavřít dialogové okno pro nastavení
bbb.video.publish.closeBtn.label = Zrušit
bbb.video.publish.titleBar = Okno zveřejnění webové kamery
bbb.video.streamClose.toolTip = Ukončit stream pro: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
bbb.screensharePublish.closeBtn.toolTip = Ukončit sdílení a zavřít
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = Minimalizovat
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
bbb.screenshareView.fitToWindow = Přizpůsobit oknu
bbb.screenshareView.actualSize = Zobrazit aktuální velikost
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Ukončit poslouchání konference
bbb.toolbar.phone.toolTip.unmute = Zahájit poslouchání konference
bbb.toolbar.phone.toolTip.nomic = Mikrofon nebyl nalezen
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Sdílet Vaši webovou kameru
bbb.toolbar.video.toolTip.stop = Zastavit sdílení webové kamery
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Přidat vlastní vzhled do seznamu
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Změnit vzhled
bbb.layout.loadButton.toolTip = Nahrát vzhledy ze souboru
bbb.layout.saveButton.toolTip = Uložit vzhledy do souboru
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Aplikovat vzhled
bbb.layout.combo.custom = * Vlastní vzhled
bbb.layout.combo.customName = Vlastní vzhled
bbb.layout.combo.remote = Vzdálený
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Vzhledy byly úspěšně uloženy
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Vzhledy byly úspěšně nahrány
bbb.layout.load.failed = Nelze nahrát rozvržení vzhledu
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Původní vzhled
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Video chat
bbb.layout.name.webcamsfocus = Sezení s webovou kamerou
bbb.layout.name.presentfocus = Sezení s prezentací
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Přednáškový pomocník
bbb.layout.name.lecture = Přednáška
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Zvýrazňovač
bbb.highlighter.toolbar.pencil.accessibilityName = Přepnout ukazovátko tabule na tužku
bbb.highlighter.toolbar.ellipse = Kruh
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Vybrat barvu
bbb.highlighter.toolbar.color.accessibilityName = Označit barvu pro kreslení na tabuli
bbb.highlighter.toolbar.thickness = Změnit tloušťku čáry
bbb.highlighter.toolbar.thickness.accessibilityName = Tloušťka čáry pro kreslení na tabuli
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Odhlášen
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Serverová aplikace byla ukončena
bbb.logout.asyncerror = Došlo k asynchronní chybě
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Spojení se serverem bylo ukončeno
bbb.logout.rejected = Připojení k serveru bylo zamítnuto
bbb.logout.invalidapp = Aplikace red5 neexistuje
bbb.logout.unknown = Váš klient ztratil spojení se serverem
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Odhlásil-a jste se z konference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Moderátor Vás vyhodil z konference.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Pokud jste se odhlásil-a neúmyslně, použijte tlačítko dole pro opětovné připojení.
bbb.logout.refresh.label = Znovu připojit
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Potvrdit odhlášení
bbb.logout.confirm.message = Opravdu se chcete odhlásit?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Ano
bbb.logout.confirm.no = Ne
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Detekovány problémy s připojením
bbb.connection.reconnecting=Znovu se připojuji
bbb.connection.reestablished=Spojení navázáno
@@ -530,59 +539,60 @@ bbb.notes.title = Poznámky
bbb.notes.cmpColorPicker.toolTip = Barva textu
bbb.notes.saveBtn = Uložit
bbb.notes.saveBtn.toolTip = Uložit poznámku
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = V následujícím okně zvolte "Povolit" pro správné fungování sdílení pracovní plochy
bbb.settings.deskshare.start = Zaškrtnout sdílení pracovní plochy
bbb.settings.voice.volume = Aktivita na mikrofonu
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Chybná verze Flashe
bbb.settings.flash.text = Máte nainstalovánu verzi Flash {0}, pro používání této aplikace je potřeba alespoň verze {1}. Tlačítkem dole nainstalujete nejnovější verzi Flash od Adobe.
bbb.settings.flash.command = Instalovat nejnovější verzi Flash
bbb.settings.isight.label = Chyba webové kamery iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instalovat Flash 10.2 RC2
bbb.settings.warning.label = Varování
bbb.settings.warning.close = Zavřít toto varování
bbb.settings.noissues = Nebyly detekovány žádné nevyřešené problémy.
bbb.settings.instructions = Potvrďte žádost Flash na používání webové kamery. Pokud výstup odpovídá očekávání, je Váš prohlížeč nastaven správně. Ostatní možné problémy jsou popsány dole. Prozkoumejte je pro nalezení vhodného řešení.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Trojúhelník
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Přepnout ukazovátko tabule na trojúhelník
ltbcustom.bbb.highlighter.toolbar.line = Čára
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Text
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Přepnout ukazovátko tabule na text
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Barva textu
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Velikost písma
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Hotovo
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Přešli jste na poslední zpr
bbb.accessibility.chat.chatBox.navigatedLatestRead = Přešli jste na zprávu, kterou jste četli naposledy
bbb.accessibility.chat.chatwindow.input = Vstup pro chat
bbb.accessibility.chat.chatwindow.audibleChatNotification = Akustické oznámení z chatu
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Prosíme použijte klávesové šipky pro navigaci mezi zprávami chatu
bbb.accessibility.notes.notesview.input = Vkládání poznámek
bbb.shortcuthelp.title = Klávesové zkratky
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimalizovat okno nápovědy
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximalizovat okno nápovědy
bbb.shortcuthelp.closeBtn.accessibilityName = Zavřít okno nápovědy
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Globální zkratky
bbb.shortcuthelp.dropdown.presentation = Zkratky prezentace
bbb.shortcuthelp.dropdown.chat = Zkratky chatu
bbb.shortcuthelp.dropdown.users = Zkratky uživatelů
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Zkratka
bbb.shortcuthelp.headers.function = Funkce
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Minimalizovat aktuální okno
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Maximalizovat aktuální okno
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Opustit okno Flash
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Ztlumit a zesílit Váš mikrofon
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Přejít na okno prezentace
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Přejít na okno chatu
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Otevřít okno sdílení pracovní plochy
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Odhlásit z této konference
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Zvednout ruku
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Nahrát prezentaci
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Přejít na předchozí snímek
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Přejít na následující snímek
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Přizpůsobit snímky šířce
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Přizpůsobit snímky stránce
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Vybranou osobu udělat prezentujícím
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Vyhodit vybranou osobu z konference
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Ztlumit nebo zesílit vybranou osobu
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Ztlumit nebo zesílit všechny uživatele
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Ztlumit všechny kromě prezentujícího
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Přejít na záložky chatu
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Přejít na volbu barvy písma.
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Navigovat na zprávu, kterou jste
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Dočasná horká klávesa pro debugování
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Zahájit anketu
bbb.polling.startButton.label = Zahájit anketu
bbb.polling.publishButton.label = Zveřejnit
bbb.polling.closeButton.label = Zavřít
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Výsledky ankety živě
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Vložit možnosti hlasování
bbb.polling.respondersLabel.novotes = Čeká se na odpovědi
bbb.polling.respondersLabel.text = Odpovědělo uživatelů: {0}
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Zavřít všechna videa
bbb.users.settings.lockAll = Zamknout všechny uživatele
bbb.users.settings.lockAllExcept = Zamknout všechny uživatele vyjma přednášejícího
bbb.users.settings.lockSettings = Zamknout pozorovatele
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Odemknout všechny pozorovatele
bbb.users.settings.roomIsLocked = Standardně uzamčeno
bbb.users.settings.roomIsMuted = Standardně ztlumeno
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Použít nastavení zámku
bbb.lockSettings.cancel = Zrušit
bbb.lockSettings.cancel.toolTip = Uzavřít toto okno bez uložení
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Zamknutí moderátora
bbb.lockSettings.privateChat = Soukromý chat
bbb.lockSettings.publicChat = Veřejný chat
bbb.lockSettings.webcam = Webová kamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Vzhled
bbb.lockSettings.title=Zamknout pozorovatele
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Vlastnost
bbb.lockSettings.locked=Zamčeno
bbb.lockSettings.lockOnJoin=Zamknout po přihlášení
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
bbb.users.breakout.close = Zavřít
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/cy_GB/bbbResources.properties b/bigbluebutton-client/locale/cy_GB/bbbResources.properties
index 24840cef93e9..f9a5c25a4d15 100644
--- a/bigbluebutton-client/locale/cy_GB/bbbResources.properties
+++ b/bigbluebutton-client/locale/cy_GB/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Cysylltu â'r gweinydd
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Mae'n ddrwg gennym, ni allwn cysylltu â'r gweinydd.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Agor ffenestr cofnodi
bbb.mainshell.meetingNotFound = Ni Chanfuwyd y Cyfarfod
bbb.mainshell.invalidAuthToken = Tocyn Dilysu Annilys
bbb.mainshell.resetLayoutBtn.toolTip = Ailosod Gosodiad
bbb.mainshell.notification.tunnelling = Twneli
bbb.mainshell.notification.webrtc = Sain WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Efallai bod gennych hen gyfieithiadau iaith BigBlueButton.
bbb.oldlocalewindow.reminder2 = Gliriwch storfa eich porwr a cheisiwch eto.
bbb.oldlocalewindow.windowTitle = Rhybudd: Hen Cyfieithiadau Iaith
@@ -66,41 +66,42 @@ bbb.micSettings.webrtc.waitingforice = Cysylltu
bbb.micSettings.webrtc.transferring = Trosglwyddo
bbb.micSettings.webrtc.endingecho = Ymuno â'r Sain
bbb.micSettings.webrtc.endedecho = Diweddwyd y prawf atsain.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Caniatâd Meicroffon Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Caniatâd Meicroffon Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Rhybudd Sain
bbb.micWarning.joinBtn.label = Ymuno ta beth
bbb.micWarning.testAgain.label = Profi eto
bbb.micWarning.message = Nid yw eich meicroffon wedi dangos unrhyw weithgaredd, mae'n debyg ni fydd eraill yn gallu eich clywed yn ystod y sesiwn.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
+bbb.webrtcWarning.message =
bbb.webrtcWarning.title = Methwyd Sain WebRTC
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Cymorth
bbb.mainToolbar.logoutBtn = Allgofnodi
bbb.mainToolbar.logoutBtn.toolTip = Allgofnodi
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Dewis iaith
bbb.mainToolbar.settingsBtn = Gosodiadau
bbb.mainToolbar.settingsBtn.toolTip = Agor Gosodiadau
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = Dechrau recordio
bbb.mainToolbar.recordBtn.toolTip.stop = Terfynu recordio
bbb.mainToolbar.recordBtn.toolTip.recording = Recordir y sesiwn
bbb.mainToolbar.recordBtn.toolTip.notRecording = Ni recordir y sesiwn
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Cadarnhau recordio
bbb.mainToolbar.recordBtn.confirm.message.start = Ydych chi'n sicr eich bod am dechrau recordio?
bbb.mainToolbar.recordBtn.confirm.message.stop = Ydych chi'n sicr eich bod am terfynu recordio?
-bbb.mainToolbar.recordBtn..notification.title = Hysbysiad Recordio
-bbb.mainToolbar.recordBtn..notification.message1 = Gallwch recordio'r cyfarfod yma.
-bbb.mainToolbar.recordBtn..notification.message2 = Mae'n rhaid i chi glicio ar y botwm Dechrau / Terfynu Recordio yn y bar teitl i ddechrau / terfynu recordio.
+bbb.mainToolbar.recordBtn.notification.title = Hysbysiad Recordio
+bbb.mainToolbar.recordBtn.notification.message1 = Gallwch recordio'r cyfarfod yma.
+bbb.mainToolbar.recordBtn.notification.message2 = Mae'n rhaid i chi glicio ar y botwm Dechrau / Terfynu Recordio yn y bar teitl i ddechrau / terfynu recordio.
bbb.mainToolbar.recordingLabel.recording = (Recordio)
bbb.mainToolbar.recordingLabel.notRecording = Dim yn Recordio
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
bbb.clientstatus.close = Cau
bbb.clientstatus.tunneling.title = Mur gwarchod
bbb.clientstatus.tunneling.message = Mae mur gwarchod yn atal eich cleient rhag cysylltu yn uniongyrchol ar borth 1935 i'r gweinydd. Argymell ymuno â rhwydwaith llai cyfyngol ar gyfer cysylltiad mwy sefydlog
bbb.clientstatus.browser.title = Fersiwn Porwr
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
+bbb.clientstatus.browser.message =
bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
+bbb.clientstatus.flash.message =
bbb.clientstatus.webrtc.title = Sain
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Argymhellir defnyddio naill ai Firefox neu Chrome ar gyfer gwell sain.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Lleihau
bbb.window.maximizeRestoreBtn.toolTip = Ehangu
bbb.window.closeBtn.toolTip = Cau
@@ -171,8 +172,8 @@ bbb.users.settings.webcamSettings = Gosodiadau Gwegamera
bbb.users.settings.muteAll = Pylu Pob Defnyddiwr
bbb.users.settings.muteAllExcept = Pylu Pob Defnyddiwr Ac Eithrio'r Cyflwynydd
bbb.users.settings.unmuteAll = Datpylu Pob Defnyddiwr
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
bbb.users.roomMuted.text = Pylwyd Gwylwyr
bbb.users.roomLocked.text = Gwylwyr Dan Glo
bbb.users.pushToTalk.toolTip = Siarad
@@ -180,7 +181,7 @@ bbb.users.pushToMute.toolTip = Pylu eich hun
bbb.users.muteMeBtnTxt.talk = Datpylu
bbb.users.muteMeBtnTxt.mute = Pylu
bbb.users.muteMeBtnTxt.muted = Pylwyd
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Rhestr Defnyddwyr. Defnyddiwch y bysellau saeth i lywio.
bbb.users.usersGrid.nameItemRenderer = Enw
bbb.users.usersGrid.nameItemRenderer.youIdentifier = chi
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Statws
bbb.users.usersGrid.statusItemRenderer.changePresenter = Cliciwch I Wneud Y Cyflwynydd
bbb.users.usersGrid.statusItemRenderer.presenter = Cyflwynydd
bbb.users.usersGrid.statusItemRenderer.moderator = Cymedrolwr
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Clirio'r statws
bbb.users.usersGrid.statusItemRenderer.viewer = Gwyliwr
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Rhannu eich gwegamera.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Datpylu {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Pylu {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Cloi {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Datgloi {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Cicio {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Rhannu Gwegamera
bbb.users.usersGrid.mediaItemRenderer.micOff = Meicroffon i ffwrdd
bbb.users.usersGrid.mediaItemRenderer.micOn = Meicroffon ar
bbb.users.usersGrid.mediaItemRenderer.noAudio = Dim mewn cynhadledd sain
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Clirio
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Cyflwyniad
bbb.presentation.titleWithPres = Cyflwyniad: {0}
bbb.presentation.quickLink.label = Ffenestr Cyflwyniad
bbb.presentation.fitToWidth.toolTip = Addasu'r Cyflwyniad i'r Lled
bbb.presentation.fitToPage.toolTip = Addasu'r Cyflwyniad I'r Dudalen
bbb.presentation.uploadPresBtn.toolTip = Llwytho I Fyny Cyflwyniad
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Sleid Blaenorol
bbb.presentation.btnSlideNum.accessibilityName = Sleid {0} o {1}
bbb.presentation.btnSlideNum.toolTip = Dewiswch slide
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Llwythwyd i fyny. Arhoswch tra trosir y ddogfe
bbb.presentation.uploaded = wedi'i lwytho i fynnu.
bbb.presentation.document.supported = Cefnogir y ddogfen a lwythwyd i fyny. Dechrau trosi...
bbb.presentation.document.converted = Troswyd y ddogfen yn llwyddiannus.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Gwall IO: Cysylltwch â'r gweinyddwr.
bbb.presentation.error.security = Gwall Diogelwch: Cysylltwch â'r gweinyddwr.
bbb.presentation.error.convert.notsupported = Gwall: Ni chefnogir y ddogfen a lwythwyd i fyny. Llwythwch i fyny dogfen a gefnogir.
@@ -283,62 +285,63 @@ bbb.fileupload.uploadBtn = Llwytho i fyny
bbb.fileupload.uploadBtn.toolTip = Llwytho i fyny'r ffeil a ddewiswyd
bbb.fileupload.deleteBtn.toolTip = Dileu'r Cyflwyniad
bbb.fileupload.showBtn = Dangos
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Dangos y Cyflwyniad
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Cynhyrchu mân-luniau.
bbb.fileupload.progBarLbl = Ar y gweill:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Sgwrs
bbb.chat.quickLink.label = Ffenestr Sgwrsio
bbb.chat.cmpColorPicker.toolTip = Lliw'r Testun
bbb.chat.input.accessibilityName = Maes Golygu Neges Sgwrsio
bbb.chat.sendBtn.toolTip = Anfon Neges
bbb.chat.sendBtn.accessibilityName = Anfon neges sgwrsio
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Copïo'r Holl Destun
bbb.chat.publicChatUsername = Cyhoeddus
bbb.chat.optionsTabName = Dewisiadau
bbb.chat.privateChatSelect = Dewiswch defnyddiwr i sgwrsio gyda'n breifat
bbb.chat.private.userLeft = Gadawodd y defnyddiwr.
bbb.chat.private.userJoined = Ymunodd y defnyddiwr
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Dewiswch Gyfranogwr i Agor Sgwrs Breifat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Dewisiadau sgwrsio
bbb.chat.fontSize = Maint Testun Neges Sgwrsio
bbb.chat.cmbFontSize.toolTip = Dweis Maint Testun Neges Sgwrsio
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Lleihau Ffenestr Sgwrsio
bbb.chat.maximizeRestoreBtn.accessibilityName = Ehangu Ffenestr Sgwrsio
bbb.chat.closeBtn.accessibilityName = Cau Ffenestr Sgwrsio
bbb.chat.chatTabs.accessibleNotice = Neges newydd yn y tab
bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Newid Gwegamera
bbb.publishVideo.changeCameraBtn.toolTip = Agor blwch deialog newid gwegamera
bbb.publishVideo.cmbResolution.tooltip = Dewiswch gydraniad gwegamera
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Dechrau Rhannu
bbb.publishVideo.startPublishBtn.toolTip = Dechrau rannu eich gwegamera
bbb.publishVideo.startPublishBtn.errorName = Methu rhannu eich gwegamera. Rheswm: {0}
bbb.webcamPermissions.chrome.title = Caniatâd Gwegamera Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Gwegamerau
bbb.videodock.quickLink.label = Ffenestr Gwegamera
bbb.video.minimizeBtn.accessibilityName = Lleihau Ffenestr Gwegamera
@@ -366,90 +369,92 @@ bbb.video.publish.hint.publishing = Cyhoeddi...
bbb.video.publish.closeBtn.accessName = Cau blwch deialog newid gwegamera
bbb.video.publish.closeBtn.label = Diddymu
bbb.video.publish.titleBar = Cyhoeddi Ffenestr Gwegamera
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Terfynu gwrando ar y gynhadledd
bbb.toolbar.phone.toolTip.unmute = Dechrau gwrando ar y gynhadledd
bbb.toolbar.phone.toolTip.nomic = Ni chanfuwyd meicroffon
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Rhannu Dy Wegamera
bbb.toolbar.video.toolTip.stop = Terfynu Rhannu Dy Wegamera
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Ychwanegu'r addasiad gosodiad i'r rhestr
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Newid Dy Osodiad
bbb.layout.loadButton.toolTip = Llwytho cynllun sgrin o ffeil
bbb.layout.saveButton.toolTip = Arbed cynllun sgrin i ffeil
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Cymhwyso gosodiad
bbb.layout.combo.custom = * Addasiad gosodiad
bbb.layout.combo.customName = Addasiad gosodiad
bbb.layout.combo.remote = Anghysbell
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Arbedwyd y gosodiadau yn llwyddiannus
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Llwythwyd y gosodiadau yn llwyddiannus
bbb.layout.load.failed = Methwyd llwytho'r gosodiadau
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Gosodiad Rhagosodedig
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Sgwrs Fideo
bbb.layout.name.webcamsfocus = Cyfarfod Gwegamera
bbb.layout.name.presentfocus = Cyfarfod Cyflwyniad
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Cynorthwy-ydd Darlithydd
bbb.layout.name.lecture = Darlith
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Pensil
bbb.highlighter.toolbar.pencil.accessibilityName = Newid cyrchwr bwrdd gwyn i bensil
bbb.highlighter.toolbar.ellipse = Cylch
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Dewis Lliw
bbb.highlighter.toolbar.color.accessibilityName = Lliw lluniadu'r bwrdd gwyn
bbb.highlighter.toolbar.thickness = Newid Trwch
bbb.highlighter.toolbar.thickness.accessibilityName = Trwch lluniadu'r bwrdd gwyn
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Allgofnodwyd
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = Iawn
bbb.logout.appshutdown = Mae'r rhaglen gweinyddu wedi'i gau i lawr
bbb.logout.asyncerror = Digwyddodd Gwall Anghydamseredig
@@ -502,87 +509,90 @@ bbb.logout.connectionfailed = Bennwyd y cysylltiad â'r gweinydd
bbb.logout.rejected = Gwrthodwyd cysylltiad â'r gweinydd
bbb.logout.invalidapp = Nid yw'r rhaglen red5 yn bodoli
bbb.logout.unknown = Collwyd cysylltiad â'r gweinydd gan eich cleient
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Fe allgofnodoch o'r gynhadledd
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
bbb.logout.refresh.label = Ailgysylltu
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Cadarnhau Allgofnodi
bbb.logout.confirm.message = Ydych chi'n sicr eich bod eisiau allgofnodi?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Ydw
bbb.logout.confirm.no = Nac ydw
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
bbb.connection.reconnecting=Wrthi'n ailgysylltu
-bbb.connection.reestablished=Connection reestablished
+bbb.connection.reestablished=
bbb.connection.bigbluebutton=BigBlueButton
bbb.connection.sip=SIP
bbb.connection.video=Fideo
-bbb.connection.deskshare=Deskshare
+bbb.connection.deskshare=
bbb.notes.title = Nodiadau
bbb.notes.cmpColorPicker.toolTip = Lliw'r Testun
bbb.notes.saveBtn = Arbed
bbb.notes.saveBtn.toolTip = Arbed nodiadau
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Dewiswch Ganiatáu ar yr annog sy'n amlygu'i hun i wirio bod rhannu bwrdd gwaith yn gweithio'n iawn i chi
bbb.settings.deskshare.start = Gwirio Rhannu Bwrdd Gwaith
bbb.settings.voice.volume = Gweithgaredd Meicroffon
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Gwall fersiwn Flash
bbb.settings.flash.text = Mae gennych Flash {0} wedi'i osod, ond mae angen o leiaf fersiwn {1} i defnyddio BigBlueButton yn effeithiol. Bydd y botwm isod yn gosod y fersiwn diweddaraf o Adobe Flash.
bbb.settings.flash.command = Gosodwch Flash diweddaraf
bbb.settings.isight.label = Gwall gwegamera iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Gosodwch Flash 10.2 RC2
bbb.settings.warning.label = Rhybudd
bbb.settings.warning.close = Cau'r rhybudd hwn
bbb.settings.noissues = Ni ddarganfuwyd materion sydd heb ei ddatrys
bbb.settings.instructions = Derbyniwch yr anogwr Flash sy'n gofyn am ganiatâd gwe-gamera. Os yw'r allbwn yn cyfateb i'r hyn a ddisgwylir, mae eich porwr wedi'i osod yn gywir. Rhestrir materion potensial eraill rhestru isod, archwiliwch hwy i ganfod datrysiadau phosibl.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Triongl
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Newid cyrchwr bwrdd gwyn i driongl
ltbcustom.bbb.highlighter.toolbar.line = Llinell
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Testun
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Newid cyrchwr bwrdd gwyn i destun
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Lliw'r Testun
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Maint Ffont
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Yn Barod
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Fe lywiwyd i'r neges gyntaf
bbb.accessibility.chat.chatBox.navigatedLatest = Fe lywiwyd i'r neges ddiweddaraf
bbb.accessibility.chat.chatBox.navigatedLatestRead = Fe lywiwyd i'r neges ddiweddaraf a ddarllenwyd
bbb.accessibility.chat.chatwindow.input = Mewnbwn sgwrsio
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Defnyddiwch y bysellau saeth i lywio drwy negeseuon sgwrsio.
bbb.accessibility.notes.notesview.input = Mewnbwn nodiadau
bbb.shortcuthelp.title = Bysellau Byrlwybr
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Lleihau ffenestr Cymorth Llwybrau Byr
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Ehangu ffenestr Cymorth Llwybrau Byr
bbb.shortcuthelp.closeBtn.accessibilityName = Cau ffenestr Cymorth Llwybrau Byr
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Llwybrau Byr Cyffredinol
bbb.shortcuthelp.dropdown.presentation = Llwybrau Byr Cyflwyniad
bbb.shortcuthelp.dropdown.chat = Llwybrau Byr Sgwrsio
bbb.shortcuthelp.dropdown.users = Llwybrau Byr Defnyddwyr
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Llwybr Byr
bbb.shortcuthelp.headers.function = Ffrwythiant
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Lleihau ffenestr bresennol
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Ehangu ffenestr bresennol
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Symud ffocws oddi ar y ffenestr Flash
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Pylu neu Datpylu eich meicroffon
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Symud ffocws i'r Ffenestr Cyflwyniad
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Symud ffocws i'r Ffenestr Sgwrsio
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Agor ffenestr rhannu bwrdd gwaith
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Allgofnodi o'r cyfarfod
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Codi eich llaw
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Llwytho i fyny cyflwyniad
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Symud yn ôl i'r sleid blaenorol
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Symud ymlaen i'r sleid nesaf
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Addasu'r sleid i'r lled
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Addasu'r sleid i'r dudalen
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Gwneud y person a ddetholir yn gyflwynydd.
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Cicio'r person a ddewiswyd o'r cyfarfod
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Pylu neu datpylu'r person detholedig
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Pylu neu datpylu pob defnyddiwr
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Pylu pawb ac eithrio'r Cyflwynydd
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Ffocysu'r tabiau sgwrsio
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Ffocysu'r dweissydd lliw ffont.
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,19 +756,20 @@ bbb.shortcutkey.chat.chatbox.goread.function = Llywio i'r neges ddiweddaraf a dd
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Bysell frys dadfygio dros dro
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
+bbb.polling.startButton.tooltip =
bbb.polling.startButton.label = Dechrau Pleidleisio
bbb.polling.publishButton.label = Cyhoeddi
bbb.polling.closeButton.label = Cau
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = Ydw
bbb.polling.answer.No = Nac ydw
bbb.polling.answer.True = Gwir
@@ -770,8 +781,8 @@ bbb.polling.answer.D = D
bbb.polling.answer.E = E
bbb.polling.answer.F = F
bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Dechrau Rhannu
bbb.publishVideo.changeCameraBtn.labelText = Newid Gwegamera
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Cau pob fideo
bbb.users.settings.lockAll = Cloi Pob Defnyddiwr
bbb.users.settings.lockAllExcept = Cloi Pob Defnyddiwr Ac Eithrio'r Cyflwynydd
bbb.users.settings.lockSettings = Cloi Gwyliwr ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Datgloi Pob Defnyddiwr
bbb.users.settings.roomIsLocked = Rhagosod Dan glo
bbb.users.settings.roomIsMuted = Rhagosod Pylu
@@ -802,102 +813,59 @@ bbb.lockSettings.save.tooltip = Cymhwyso gosodiadau cloi
bbb.lockSettings.cancel = Diddymu
bbb.lockSettings.cancel.toolTip = Caewch y ffenestr hon heb achub
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Cloi Cymedrolwr
bbb.lockSettings.privateChat = Sgwrs Preifat
bbb.lockSettings.publicChat = Sgwrs Gyhoeddus
bbb.lockSettings.webcam = Gwegamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Meicroffon
bbb.lockSettings.layout = Gosodiad
bbb.lockSettings.title=Cloi Gwyliwr
bbb.lockSettings.feature=Nodwedd
bbb.lockSettings.locked=Dan Glo
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/da_DK/bbbResources.properties b/bigbluebutton-client/locale/da_DK/bbbResources.properties
index df7d441cc1f6..6530e862603d 100644
--- a/bigbluebutton-client/locale/da_DK/bbbResources.properties
+++ b/bigbluebutton-client/locale/da_DK/bbbResources.properties
@@ -6,26 +6,26 @@ bbb.mainshell.copyrightLabel2 = (c) 2017 HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.notdetected = Java version er ikke detekteret
+bbb.clientstatus.java.notinstalled = Du har ikke installeret Java. Venligst tryk HERE for at installere den seneste Java til at anvende dele skrivebord funktionen.
+bbb.clientstatus.java.oldversion = Du har en ældre Java installeret, venligst tryk HERE for at installere den seneste Java for at anvende dele skrivebord funktionen.
bbb.window.minimizeBtn.toolTip = Minimér
bbb.window.maximizeRestoreBtn.toolTip = Maksimér
bbb.window.closeBtn.toolTip = Luk
@@ -188,15 +189,15 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Gør vedkommende til foredragsholder
bbb.users.usersGrid.statusItemRenderer.presenter = Foredragsholder
bbb.users.usersGrid.statusItemRenderer.moderator = Ordfører
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Kun stemme
+bbb.users.usersGrid.statusItemRenderer.raiseHand = Ræk hånden op
bbb.users.usersGrid.statusItemRenderer.applause = Klap
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
+bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumps up
+bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thumbs down
+bbb.users.usersGrid.statusItemRenderer.speakLouder = Tal højere
+bbb.users.usersGrid.statusItemRenderer.speakSofter = Tal lavere
+bbb.users.usersGrid.statusItemRenderer.speakFaster = Tal hurtigere
+bbb.users.usersGrid.statusItemRenderer.speakSlower = Tal langsomere
bbb.users.usersGrid.statusItemRenderer.away = Væk
bbb.users.usersGrid.statusItemRenderer.confused = Forvirret
bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
@@ -214,13 +215,13 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lås {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Lås op {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Spark {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Dele webcam
bbb.users.usersGrid.mediaItemRenderer.micOff = Luk mikrofon
bbb.users.usersGrid.mediaItemRenderer.micOn = Tænd mikrofon
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Deltager ikke i lyd konference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.noAudio = Deltager ikke i audiowebinar
+bbb.users.usersGrid.mediaItemRenderer.promoteUser = Gør {0} til moderator
+bbb.users.usersGrid.mediaItemRenderer.demoteUser = Nedgrader {0} til seer
bbb.users.emojiStatus.clear = Clear
bbb.users.emojiStatus.raiseHand = Ræk hånden op
bbb.users.emojiStatus.happy = Glad
@@ -231,21 +232,22 @@ bbb.users.emojiStatus.away = Væk
bbb.users.emojiStatus.thumbsUp = Thumbs Up
bbb.users.emojiStatus.thumbsDown = Thumbs Down
bbb.users.emojiStatus.applause = Klap
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.agree = Jeg er enig
+bbb.users.emojiStatus.disagree = Jeg er uenig
+bbb.users.emojiStatus.none = Ryd
+bbb.users.emojiStatus.speakLouder = Vil du venligst tale højere?
+bbb.users.emojiStatus.speakSofter = Kan du tale lavere?
+bbb.users.emojiStatus.speakFaster = Kan du tale hurtigere?
+bbb.users.emojiStatus.speakSlower = Kan du tale langsommere?
+bbb.users.emojiStatus.beRightBack = Jeg er tilbage om et øjeblik
bbb.presentation.title = Præsentation
bbb.presentation.titleWithPres = Præsentation: {0}
bbb.presentation.quickLink.label = Præsentationsvinduet
bbb.presentation.fitToWidth.toolTip = Tilpas preæsentationen
bbb.presentation.fitToPage.toolTip = Tilpas præsentationen til siden
bbb.presentation.uploadPresBtn.toolTip = Upload din præsentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip = Download præsentationer
+bbb.presentation.poll.response = Svar på afstemning
bbb.presentation.backBtn.toolTip = Forrige slide.
bbb.presentation.btnSlideNum.accessibilityName = Slide {0} af {1}
bbb.presentation.btnSlideNum.toolTip = Vælg slide
@@ -256,7 +258,7 @@ bbb.presentation.uploaded = uploadet.
bbb.presentation.document.supported = Det uploadede dokument er understøttet. Begynder at konvertere...
bbb.presentation.document.converted = Office-dokumentet konverteredes vellykket.
bbb.presentation.error.document.convert.failed = Prøv at konvertere dokumentet til PDF og upload igen.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.invalid = Konverter først dokumentet til PDF.
bbb.presentation.error.io = IO-fejl: Kontakt administratoren.
bbb.presentation.error.security = Sikkerhedsfejl: Kontakt administratoren.
bbb.presentation.error.convert.notsupported = Fejl: Det uploadede dokument er ikke understøttet. Upload en kompatibel fil.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Upload
bbb.fileupload.uploadBtn.toolTip = Upload fil
bbb.fileupload.deleteBtn.toolTip = Slet præsentation
bbb.fileupload.showBtn = Vis
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = Prøv en anden fil
bbb.fileupload.showBtn.toolTip = Vis præsentation
bbb.fileupload.close.tooltip = Luk
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.accessibilityName = Luk "Fil upload"-vinduet
bbb.fileupload.genThumbText = Genererer thumbnails..
bbb.fileupload.progBarLbl = Fremskridt:
bbb.fileupload.fileFormatHint = Du kan uploade alle Office eller PDF-dokumenter. Vi anbefaler, at du bruger PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
+bbb.fileupload.letUserDownload = Tillad download af præsentationer
+bbb.fileupload.letUserDownload.tooltip = Marker her hvis du gerne vil have at andre kan downloade din præsentation
+bbb.filedownload.title = Download præsentationer
bbb.filedownload.close.tooltip = Luk
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
+bbb.filedownload.close.accessibilityName = Luk fil download-vinduet
+bbb.filedownload.fileLbl = Vælg fil at downloade:
bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.filedownload.downloadBtn.toolTip = Download præsentation
+bbb.filedownload.thisFileIsDownloadable = Fil kan downloades
bbb.chat.title = Chat
bbb.chat.quickLink.label = Chatvinduet
bbb.chat.cmpColorPicker.toolTip = Tekstfarve i chatvindue
bbb.chat.input.accessibilityName = Chat besked editoren
bbb.chat.sendBtn.toolTip = Send besked
bbb.chat.sendBtn.accessibilityName = Send chat besked
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip = Gem chat
+bbb.chat.saveBtn.accessibilityName = Del chat i textfil
+bbb.chat.saveBtn.label = Gem
+bbb.chat.save.complete = Chat er gemt
+bbb.chat.save.ioerror = Chat er ikke gemt. Prøv af gemme igen.
+bbb.chat.save.filename = Fælleschat
+bbb.chat.copyBtn.toolTip = Kopier tekst
+bbb.chat.copyBtn.accessibilityName = Kopier chat til udklipsholderen
+bbb.chat.copyBtn.label = Kopier
+bbb.chat.copy.complete = Chatten er kopieret til udklipsholderen
+bbb.chat.clearBtn.toolTip = Slet fælleschat
+bbb.chat.clearBtn.accessibilityName = Slet fælleschat historik
+bbb.chat.clearBtn.chatMessage = Fælleschat-historikken er blevet slette af en moderator
+bbb.chat.clearBtn.alert.title = Advarsel
+bbb.chat.clearBtn.alert.text = Du er i færd med at slette fælleschat-historikken og det kan ikke fortrydes. Vil du forsætte?
bbb.chat.contextmenu.copyalltext = Kopi al tekst
bbb.chat.publicChatUsername = Alle
bbb.chat.optionsTabName = Indstillinger
@@ -337,7 +340,7 @@ bbb.chat.maximizeRestoreBtn.accessibilityName = Maksimer chatvinduet
bbb.chat.closeBtn.accessibilityName = Luk chatvinduet
bbb.chat.chatTabs.accessibleNotice = Nye beskeder
bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation = Fra {0} {1} klokken {2}
bbb.chat.chatMessage.tooLong = Denne besked er {0} tegn for lang
bbb.publishVideo.changeCameraBtn.labelText = Skift kamera
bbb.publishVideo.changeCameraBtn.toolTip = Åbn skift webcam vinduet
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Påbegynd deling
bbb.publishVideo.startPublishBtn.toolTip = Start deling
bbb.publishVideo.startPublishBtn.errorName = Det er ikke muligt at dele webcam. De skyldes: {0}
bbb.webcamPermissions.chrome.title = Chrome Webcam tilladelser
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message = Klik på Tillad for at give Chrome adgang til dit webcam.
bbb.videodock.title = Video-dok
bbb.videodock.quickLink.label = Webcam vindue
bbb.video.minimizeBtn.accessibilityName = Minimer webcam vinduet
@@ -367,69 +370,70 @@ bbb.video.publish.closeBtn.accessName = Luk webcam indstillingsvinduet
bbb.video.publish.closeBtn.label = Fortryd
bbb.video.publish.titleBar = Offentliggør webcam vindue
bbb.video.streamClose.toolTip = Afslut stream for: {0}
+bbb.video.message.browserhttp = Denne server er ikke indstillet til at køre med SSL. Derfor vil {0} deaktivere deling af dit webcam.
bbb.screensharePublish.title = Skærmdeling: Præsentators forhåndsvisning
-bbb.screensharePublish.pause.tooltip = Pause screen share
+bbb.screensharePublish.pause.tooltip = Sæt skærmdeling på pause
bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
+bbb.screensharePublish.restart.tooltip = Genoptag skærmdeling
+bbb.screensharePublish.restart.label = Genoptag
bbb.screensharePublish.maximizeRestoreBtn.toolTip = Du kan ikke maksimere dette vindue.
bbb.screensharePublish.closeBtn.toolTip = Stop deling og luk
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.accessibilityName = Stop deling og luk skærmdelingsvinduet
bbb.screensharePublish.minimizeBtn.toolTip = Minimér
bbb.screensharePublish.minimizeBtn.accessibilityName = Minimer skærmdelings offentliggørelses vinduet
bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maksimer skærmdelings offentliggørelses vinduet
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.screensharePublish.commonHelpText.text = Skridtene herunder hjælper dig igang med skærmdeling. (Kræver Java).
+bbb.screensharePublish.helpButton.toolTip = Hjælp
+bbb.screensharePublish.helpButton.accessibilityName = Hjælp (Åbner tutorial i et et nyt vindue)
+bbb.screensharePublish.helpText.PCIE1 = 1. Vælg 'Åben'
+bbb.screensharePublish.helpText.PCIE2 = 2. Accepter certifikatet
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 = 1. Klik "Ok" for at starte
+bbb.screensharePublish.helpText.PCFirefox2 = 2. Accepter certifikatet
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 = 1. Find "sceenshare.jnlp"
+bbb.screensharePublish.helpText.PCChrome2 = 2. Klik for åbne
+bbb.screensharePublish.helpText.PCChrome3 = 3. Accepter certifikatet
+bbb.screensharePublish.helpText.MacSafari1 = 1. Find "sceenshare.jnlp"
+bbb.screensharePublish.helpText.MacSafari2 = 2. Vælg "Vis i Finder"
+bbb.screensharePublish.helpText.MacSafari3 = 3. Højre-klik og vælg "Åben"
+bbb.screensharePublish.helpText.MacSafari4 = 4. Vælg "Åben" (hvis du bliver spurgt om det)
+bbb.screensharePublish.helpText.MacFirefox1 = 1. Vælg "Gem fil" (hvis du bliver spurgt om det)
+bbb.screensharePublish.helpText.MacFirefox2 = 2. Vælg "Vis i Finder"
+bbb.screensharePublish.helpText.MacFirefox3 = 3. Højre-klik og vælg åben
+bbb.screensharePublish.helpText.MacFirefox4 = 4. Vælg "Åben" (hvis du bliver spurgt om det)
+bbb.screensharePublish.helpText.MacChrome1 = 1. Find "screenshare.jnlp"
+bbb.screensharePublish.helpText.MacChrome2 = 2. Vælg "Vis i finder"
+bbb.screensharePublish.helpText.MacChrome3 = 3. Højre-klik og vælg "Åben"
+bbb.screensharePublish.helpText.MacChrome4 = 4. Vælg "Åben" (hvis du bliver spurgt om det)
+bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Klik på "OK" for at starte
+bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accepter certifikatet
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
+bbb.screensharePublish.helpText.LinuxChrome1 = 1. Find "screenshare.jnlp"
+bbb.screensharePublish.helpText.LinuxChrome2 = 2. Klik på åben
+bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accepter certifikatet
+bbb.screensharePublish.shareTypeLabel.text = Del:
+bbb.screensharePublish.shareType.fullScreen = Fuldskærm
bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
+bbb.screensharePublish.pauseMessage.label = Skærmdeling er i øjeblikke pauset.
+bbb.screensharePublish.startFailed.label = Kunne ikke detektere start af skærmdeling
+bbb.screensharePublish.restartFailed.label = Kunne ikke detektere genstart af skærmdeling
+bbb.screensharePublish.jwsCrashed.label = Skærmdelingsprogrammet stoppede uventet.
+bbb.screensharePublish.commonErrorMessage.label = Vælg "Fortryd" og prøv igen.
+bbb.screensharePublish.tunnelingErrorMessage.one = Skærmdeling kan ikke køre
+bbb.screensharePublish.tunnelingErrorMessage.two = Prøve at genindlæse (klik på genindlæs i browseren). Hvis du efter genindlæs kan se ordene '[ Tunneling ]' i det nederste højre af siden, så prøv igen fra et andet netværk.
+bbb.screensharePublish.cancelButton.label = Fortryd
bbb.screensharePublish.startButton.label = Start
bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.stopButton.toolTip = Stop skærmdeling
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label = Du bruger en aktuel version af Chrome men har ikke skærmdelingsudvidelsen installeret.
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = Når du har installeret skærmdelingsudvidelsen, så klik på "Prøv igen" herunder.
+bbb.screensharePublish.WebRTCExtensionFailFallback.label = Kunne ikke finde skærmdelingsudvidelsen. Klik her for at installere igen eller vælg "Brug Java skærmdeling"
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = Det ser ud at bruger "Inkognito" eller privat surfing. Tjek at dine udvidelsesindstillinger tillader dig at køre udvidelsen i Inkognito eller privat tilstand.
+bbb.screensharePublish.WebRTCExtensionInstallButton.label = Klik her for at installere
+bbb.screensharePublish.WebRTCUseJavaButton.label = Brug Java-skærmdeling
+bbb.screensharePublish.WebRTCVideoLoading.label = Video indlæses... Vent venligst
+bbb.screensharePublish.sharingMessage= Dette er din skærm som bliver delt
bbb.screenshareView.title = Skærmdeling
bbb.screenshareView.fitToWindow = Tilpas til vindue
bbb.screenshareView.actualSize = Vis faktisk størrelse
@@ -438,17 +442,18 @@ bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maksimer skærmdeling
bbb.screenshareView.closeBtn.accessibilityName = Luk skærmdelingsvinduet
bbb.toolbar.phone.toolTip.start = Slå lyd til (mikrofon eller kun lyt)
bbb.toolbar.phone.toolTip.stop = Slå lyd fra
-bbb.toolbar.phone.toolTip.mute = Stop med at lytte til sessionen.
+bbb.toolbar.phone.toolTip.mute = Stop med at lytte til webniaret.
bbb.toolbar.phone.toolTip.unmute = Begynd med at lytte til sessionen
bbb.toolbar.phone.toolTip.nomic = Ingen mikrofon opdaget
bbb.toolbar.deskshare.toolTip.start = Åben offentliggørelse af Del Skærm
bbb.toolbar.deskshare.toolTip.stop = Stop deling af din skærm
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip = Åben delte noter
bbb.toolbar.video.toolTip.start = Del dit webcam
bbb.toolbar.video.toolTip.stop = Stop deling af dit webcam
+bbb.layout.addButton.label = Tilføj
bbb.layout.addButton.toolTip = Tilføj det skræddersyede layout til listen
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
+bbb.layout.overwriteLayoutName.title = Overskriv layout
+bbb.layout.overwriteLayoutName.text = Navnet er allerede i brug. Vil du gerne overskrive?
bbb.layout.broadcastButton.toolTip = Anvend nuværende layout til alle seere
bbb.layout.combo.toolTip = Ændre din layout
bbb.layout.loadButton.toolTip = Upload layouts fra en fil
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Anvend en layout
bbb.layout.combo.custom = *Skræddersyet layout
bbb.layout.combo.customName = Skræddersyet layout
bbb.layout.combo.remote = Fjern
-bbb.layout.window.name = Layout name
+bbb.layout.window.name = Layoutnavn
+bbb.layout.window.close.tooltip = Luk
+bbb.layout.window.close.accessibilityName = Luk og tilføj nyt layout vindue
bbb.layout.save.complete = Layouts er gemt
+bbb.layout.save.ioerror = Layouts kunne ikke gemmes. Prøv at gemme igen.
bbb.layout.load.complete = Layouts er uploaded
bbb.layout.load.failed = Ikke muligt at indlæse layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync = Dit layout er blevet sendt til alle deltagere
bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption = Undertekster
bbb.layout.name.videochat = Video Chat
bbb.layout.name.webcamsfocus = Webcam møde
bbb.layout.name.presentfocus = Præsentationsmøde
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers = Præsentation + brugere
bbb.layout.name.lectureassistant = Undervisningsassistent
bbb.layout.name.lecture = Undervisning
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes = Delte noter
+bbb.layout.addCurrentToFileWindow.title = Tilføj nuværende layout til fil
+bbb.layout.addCurrentToFileWindow.text = Vil du gemme nuværende layout i en fil?
+bbb.layout.denyAddToFile.toolTip = Afvis tilføjelse til det nuværende layout
+bbb.layout.confirmAddToFile.toolTip = Bekræft tilføjelse til det nuværende layout
bbb.highlighter.toolbar.pencil = Highlighter
bbb.highlighter.toolbar.pencil.accessibilityName = Skift whiteboard cursoren til en pen
bbb.highlighter.toolbar.ellipse = Cirkel
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Vælg farve
bbb.highlighter.toolbar.color.accessibilityName = Whiteboard tegnefarve
bbb.highlighter.toolbar.thickness = Skift tykkelse
bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard tegne tykkelse
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Du har forladt sessionen
+bbb.highlighter.toolbar.multiuser = Multi-bruger tegning
bbb.logout.button.label = OK
bbb.logout.appshutdown = Serverens program er lukket ned
bbb.logout.asyncerror = En asynkron fejl opstod
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Forbindelsen med serveren er afsluttet
bbb.logout.rejected = Forbindelsen til serveren blev afvist
bbb.logout.invalidapp = Programmet red5 findes ikke
bbb.logout.unknown = Din klient mistede forbindelsen til serveren
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = Du er logget ud af konferencen
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Du er blevet udelukket af den ansvarlige i whiteboardet
+bbb.logout.guestkickedout = Moderatoren tillod dig ikke at deltage i dette møde
+bbb.logout.usercommand = Du er logget ud af webniaret
+bbb.logour.breakoutRoomClose = Dit browservindue vil blive lukket
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = I tilfælde af at forbindelsen pludselig forsvandt, klik på knappen for at forbinde igen.
bbb.logout.refresh.label = Forbind igen.
-bbb.settings.title = Settings
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title = Indstillinger
bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.settings.cancel = Fortryd
+bbb.settings.btn.toolTip = Åben konfigurationsvinduet
bbb.logout.confirm.title = Bekræft log ud
bbb.logout.confirm.message = Er du helt sikker på, du vil forlade sessionen?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting = Ja og slut mødet
bbb.logout.confirm.yes = Ja
bbb.logout.confirm.no = Nej
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title = Advarsel
+bbb.endSession.confirm.message = Hvis du lukker sessionen, vil alle deltagere blive afbrudt. Vil du forsætte?
bbb.connection.failure=Har opdaget tilslutningsproblemer
bbb.connection.reconnecting=Forbinder igen
bbb.connection.reestablished=Forbindelsen er etableret igen.
@@ -530,40 +539,41 @@ bbb.notes.title = Noter
bbb.notes.cmpColorPicker.toolTip = Tekst farver
bbb.notes.saveBtn = Gem
bbb.notes.saveBtn.toolTip = Gem noter
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
+bbb.sharedNotes.title = Delte noter
+bbb.sharedNotes.quickLink.label = Delte noter vindue
+bbb.sharedNotes.createNoteWindow.label = Notenavn
bbb.sharedNotes.createNoteWindow.close.tooltip = Luk
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Luk "Opret ny note"-vinduet
+bbb.sharedNotes.typing.single = {0} skriver...
+bbb.sharedNotes.typing.double = {0} og {1} skriver...
+bbb.sharedNotes.typing.multiple = Flere deltagere skriver...
+bbb.sharedNotes.save.toolTip = Gem noter i en fil
+bbb.sharedNotes.save.complete = Noterne er gemt
+bbb.sharedNotes.save.ioerror = Noter kunne ikke gemmes. Prøv at gemme igen.
+bbb.sharedNotes.save.htmlLabel = Formateret text (.html)
+bbb.sharedNotes.save.txtLabel = Almindelig text (.txt)
+bbb.sharedNotes.new.label = Opret
+bbb.sharedNotes.new.toolTip = Tilføj en note mere
+bbb.sharedNotes.limit.label = Grænse for noter er nået
+bbb.sharedNotes.clear.label = Ryd denne note
+bbb.sharedNotes.undo.toolTip = Fortryd ændring
+bbb.sharedNotes.redo.toolTip = Gentag modifikation
+bbb.sharedNotes.toolbar.toolTip = Textformatværktøjslinje
+bbb.sharedNotes.settings.toolTip = Indstillinger for delte noter
+bbb.sharedNotes.clearWarning.title = Rydder op i delte noter
+bbb.sharedNotes.clearWarning.message = Denne handling vil rydde noterne i dette vindue for alle og kan ikke fortrydes. Er du sikker på at du vil slette disse noter?
+bbb.sharedNotes.additionalNotes.closeWarning.title = Luk delte noter
+bbb.sharedNotes.additionalNotes.closeWarning.message = Denne handling vil fjerne noterne i dette vindue for alle og kan ikke fortrydes. Er du sikker på at du vil lukke disse noter?
+bbb.sharedNotes.messageLengthWarning.title = Karakterskit grænse er overskredet
+bbb.sharedNotes.messageLengthWarning.text = Din ændring overskrider grænser med {0}. Prøv at lave en mindre ændring.
+bbb.sharedNotes.remaining.tooltip = Ledig plads tilgængelig i delte noter
+bbb.sharedNotes.full.tooltip = Kapaciteten er overskredet (prøv at slette noget text)
bbb.settings.deskshare.instructions = Klik Tillad ved prompten, der vises for at tjekke at skrivebordsdeling virker for dig.
bbb.settings.deskshare.start = Check skrivebordsdeling
bbb.settings.voice.volume = Mikrofonaktivitet
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label = Java versionsfejl
+bbb.settings.java.text = Du har Java {0} installeret, men du skal mindst have version {1} for at bruge BigBlueButton's skrivebordsdeling. Klik på knappen forneden for at installere den nyeste version af Java JRE.
+bbb.settings.java.command = Installer nyeste Java
bbb.settings.flash.label = Fejl i Flash-version
bbb.settings.flash.text = Du har Flash {0} installeret, men du skal mindst benytte version {1} for at bruge BigBlueButton ordentligt. Klik på knappen forneden for at installere den nyeste version af Flash.
bbb.settings.flash.command = Installer nyeste version af Flash
@@ -574,15 +584,15 @@ bbb.settings.warning.label = Advarsel
bbb.settings.warning.close = Luk denne advarsel
bbb.settings.noissues = Ingen alvorlige fejl blev fundet.
bbb.settings.instructions = Accepter Flash-prompten der spørger om kameratilladelser. Hvis du kan se og høre dig selv, er din browser opsat korrekt. Andre potentielle problemer er vist forneden. Klik på hver enkelt for at finde en løsning.
-bbb.bwmonitor.title = Network monitor
+bbb.bwmonitor.title = Netværksmonitor
bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
+bbb.bwmonitor.upload.short = Op
bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
+bbb.bwmonitor.download.short = Ned
bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.current = Nuværende
+bbb.bwmonitor.available = Tilgængelig
+bbb.bwmonitor.latency = Forsinkelse
ltbcustom.bbb.highlighter.toolbar.triangle = Trekant
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Skift whiteboard cursoren til en trekant
ltbcustom.bbb.highlighter.toolbar.line = Linje
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Tekst
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Skift whiteboard cursoren til tekst
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Tekst farver
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Skriftstørrelse
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title = Undertekster
+bbb.caption.quickLink.label = Undertekstvindue
+bbb.caption.window.titleBar = Undertekstvindue titellinje
+bbb.caption.window.minimizeBtn.accessibilityName = Minimer undertekstvinduet
+bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maksimer undertekstvinduet
+bbb.caption.transcript.noowner = Ingen
+bbb.caption.transcript.youowner = Dig
+bbb.caption.transcript.pastewarning.title = Undertekst kopieringsadvarsel
+bbb.caption.transcript.pastewarning.text = Kan ikke indsætte tekst længere end {0} tegn. Du indsatte {1} tegn.
+bbb.caption.transcript.inputArea.toolTip = Undertekstindtastningsfelt
+bbb.caption.transcript.outputArea.toolTip = Undertekstvisningsområde
+bbb.caption.option.label = Indstillinger
+bbb.caption.option.language = Sprog:
+bbb.caption.option.language.tooltip = Vælg undertekstsprog
+bbb.caption.option.language.accessibilityName = Vælg undertekstsprog. Brug piletasterne til at skifte.
+bbb.caption.option.takeowner = Tag ejerskab
+bbb.caption.option.takeowner.tooltip = Tag ejerskab over det valgte sprog
+bbb.caption.option.fontfamily = Skrifttypefamilie:
+bbb.caption.option.fontfamily.tooltip = Skrifttypefamilie
+bbb.caption.option.fontsize = Skriftstørrelse:
+bbb.caption.option.fontsize.tooltip = Skriftstørrelse
+bbb.caption.option.backcolor = Baggrundsfarve:
+bbb.caption.option.backcolor.tooltip = Baggrundsfarve
+bbb.caption.option.textcolor = Tekstfarve:
+bbb.caption.option.textcolor.tooltip = Tekstfarve
bbb.accessibility.clientReady = Klar
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Du har navigeret til den sidste
bbb.accessibility.chat.chatBox.navigatedLatestRead = Du har navigeret til den seneste modtaget besked, du har læst.
bbb.accessibility.chat.chatwindow.input = Chat input
bbb.accessibility.chat.chatwindow.audibleChatNotification = Chat notifikation
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions = Fælleschatindstillinger
bbb.accessibility.chat.initialDescription = Venligst anvend tasteturpilene for at navigere i chatbeskederne
bbb.accessibility.notes.notesview.input = Input til noter
bbb.shortcuthelp.title = Genvejstaster
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar = Genvejstast indstillingsvinduebar
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimer genvejsvinduet for hjælp
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maksimer genvejsvinduet for hjælp
bbb.shortcuthelp.closeBtn.accessibilityName = Luk genvejsvinduet for hjælp
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName = Genvejskategori
bbb.shortcuthelp.dropdown.general = Globale genveje
bbb.shortcuthelp.dropdown.presentation = Præsentations genveje
bbb.shortcuthelp.dropdown.chat = Chat genveje
bbb.shortcuthelp.dropdown.users = Brugere genveje
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption = Undertekstgenveje
+bbb.shortcuthelp.browserWarning.text = Den fulde liste af genvejstaster er kun understøttet i Internet Explorer
bbb.shortcuthelp.headers.shortcut = Genveje
bbb.shortcuthelp.headers.function = Funktion
@@ -672,7 +682,7 @@ bbb.shortcutkey.focus.presentation.function = Ret fokus på præsentationsvindue
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Ret fokus på chatboksen
bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption.function = Ret fokus på undertekstvinduet
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Åbn deleskrivebord vinduet
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Tilpas slides til vinduet
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Gør deltageren til foredragsholder
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Smid deltageren ud af sessionen
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Mute eller unmute pågældende deltager
bbb.shortcutkey.users.muteall = 65v
@@ -710,13 +720,13 @@ bbb.shortcutkey.users.muteall.function = Mute eller unmute alle brugere
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Mute alle deltager - undtagen foredragsholderen
bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
+bbb.shortcutkey.users.breakoutRooms.function = Grupperumsvindue
bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
+bbb.shortcutkey.users.focusBreakoutRooms.function = Fokuser på listen over grupperum
bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
+bbb.shortcutkey.users.listenToBreakoutRoom.function = Lyt til det valgte grupperum
bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.joinBreakoutRoom.function = Deltag i det valgte grupperum
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Fokus på chat tabs
@@ -747,14 +757,15 @@ bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Midlertidig debug hotkey
bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership.function = Tag ejerskab over det valgte sprog
bbb.polling.startButton.tooltip = Start en undersøgelse
bbb.polling.startButton.label = Start undersøgelse
bbb.polling.publishButton.label = Offentliggør
bbb.polling.closeButton.label = Luk
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label = Brugeropsat afstemning...
bbb.polling.pollModal.title = Live undersøgelse resultater
+bbb.polling.pollModal.hint = Efterlad dette vindue åbent for at give eleverne mulighed for at svare på afstemningen. Afstemningen lukkes ved trykke på Luk eller Offentliggør.
bbb.polling.customChoices.title = Indtast svarmuligheder
bbb.polling.respondersLabel.novotes = Venter på svar
bbb.polling.respondersLabel.text = {0} brugere har svaret
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Luk alle videoer
bbb.users.settings.lockAll = Lås alle brugere
bbb.users.settings.lockAllExcept = Lås alle brugere - undtagen foredragsholderen
bbb.users.settings.lockSettings = Lås deltagere...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms = Grupperum..
+bbb.users.settings.sendBreakoutRoomsInvitations = Send invitation til grupperum
bbb.users.settings.unlockAll = Åben alle deltagere
bbb.users.settings.roomIsLocked = Lås som default
bbb.users.settings.roomIsMuted = Muted som default
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Anvend låseindstillinger
bbb.lockSettings.cancel = Fortryd
bbb.lockSettings.cancel.toolTip = Lukke dette vindue uden at gemme
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Lås ordfører
bbb.lockSettings.privateChat = Chat privat
-bbb.lockSettings.publicChat = Åben chat
+bbb.lockSettings.publicChat = Fælleschat
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Lås deltagere
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Funktioner
bbb.lockSettings.locked=Låst
bbb.lockSettings.lockOnJoin=Lås på deltagelse
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
+bbb.users.breakout.breakoutRooms = Grupperum
+bbb.users.breakout.updateBreakoutRooms = Opdater grupperum
+bbb.users.breakout.timerForRoom.toolTip = Tid tilbage i dette grupperum
+bbb.users.breakout.timer.toolTip = Tid tilbage i grupperum
bbb.users.breakout.calculatingRemainingTime = Beregner resttid...
-bbb.users.breakout.closing = Closing
+bbb.users.breakout.closing = Lukker
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Rum
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
+bbb.users.breakout.roomsCombo.accessibilityName = Antal rum, der skal oprettes
bbb.users.breakout.room = Rum
-bbb.users.breakout.randomAssign = Tilfældigt tildelte brugere
bbb.users.breakout.timeLimit = Tidsgrænse
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
+bbb.users.breakout.durationStepper.accessibilityName = Tidsgrænse i minutter
bbb.users.breakout.minutes = Minutter
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
+bbb.users.breakout.record = Optag
+bbb.users.breakout.recordCheckbox.accessibilityName = Optage grupperum
bbb.users.breakout.notAssigned = Ikke tildelt
bbb.users.breakout.dragAndDropToolTip = Tip: Du kan trække og slippe brugere mellem rum
bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
+bbb.users.breakout.invite = Invitation
bbb.users.breakout.close = Luk
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
+bbb.users.breakout.closeAllRooms = Luk alle grupperum
+bbb.users.breakout.insufficientUsers = Der ikke nok brugere. Der skal være mindst en bruger i hvert grupperum.
+bbb.users.breakout.confirm = Deltag i et grupperum
+bbb.users.breakout.invited = Du har modtaget en invitation om at deltage i Grupperum
+bbb.users.breakout.accept = Når du acceptere, vil du automatisk afbryde lyd og videowebinar
+bbb.users.breakout.joinSession = Deltag i session
+bbb.users.breakout.joinSession.accessibilityName = Tilsiut grupperumssession
bbb.users.breakout.joinSession.close.tooltip = Luk
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.joinSession.close.accessibilityName = Luk "Tilslut grupperumvindue"
+bbb.users.breakout.youareinroom = Du er i grupperum {0}
bbb.users.roomsGrid.room = Rum
bbb.users.roomsGrid.users = Bruger
bbb.users.roomsGrid.action = Handling
bbb.users.roomsGrid.transfer = Overfør lyd
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.roomsGrid.join = Deltag
+bbb.users.roomsGrid.noUsers = Ingen brugere i dette rum
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=Default sprog
+
+bbb.alert.cancel = Fortryd
+bbb.alert.ok = OK
+bbb.alert.no = Nej
+bbb.alert.yes = Ja
diff --git a/bigbluebutton-client/locale/de/bbbResources.properties b/bigbluebutton-client/locale/de/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/de/bbbResources.properties
+++ b/bigbluebutton-client/locale/de/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/de_DE/bbbResources.properties b/bigbluebutton-client/locale/de_DE/bbbResources.properties
index daaa359635ab..167387278f0d 100644
--- a/bigbluebutton-client/locale/de_DE/bbbResources.properties
+++ b/bigbluebutton-client/locale/de_DE/bbbResources.properties
@@ -14,7 +14,7 @@ bbb.mainshell.quote.sentence.1 = Es gibt kein Geheimnis für Erfolg. Erfolg ist
bbb.mainshell.quote.attribution.1 = Colin Powell
bbb.mainshell.quote.sentence.2 = Sag mir etwas und ich vergesse es wieder, bringe mir etwas bei und ich erinnere mich daran, beziehe mich ein und ich lerne wirklich etwas
bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = Ich habe der Wert harter Arbeit durch eigene harte Arbeit zu schätzen gelernt
+bbb.mainshell.quote.sentence.3 = Ich habe den Wert harter Arbeit durch eigene harte Arbeit zu schätzen gelernt
bbb.mainshell.quote.attribution.3 = Margaret Mead
bbb.mainshell.quote.sentence.4 = Entwickeln Sie eine Leidenschaft fürs Lernen, dann werden Sie nie aufhören zu wachsen.
bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Verbinde
bbb.micSettings.webrtc.transferring = Übertrage
bbb.micSettings.webrtc.endingecho = Audiostream wird verbunden
bbb.micSettings.webrtc.endedecho = Echotest beendet.
+bbb.micPermissions.message.browserhttp = Dieser Server ist nicht für SSL-Verschlüsselung konfiguriert. Deshalb hat {0} die Freigabe Ihres Mikrofons verhindert.
bbb.micPermissions.firefox.title = Firefox Mikrofon-Berechtigungen
-bbb.micPermissions.firefox.message = Während Sie "Erlauben" um Firefox Zugriff auf Ihr Mikrofon zu geben
+bbb.micPermissions.firefox.message = Wählen Sie das richtige Mikrofon aus der Liste und klicken Sie dann auf "Erlauben", um Firefox Zugriff auf Ihr Mikrofon zu geben
bbb.micPermissions.chrome.title = Chrome Mikrofon-Berechtigungen
-bbb.micPermissions.chrome.message = Während Sie "Erlauben" um Chrome Zugriff auf Ihr Mikrofon zu geben
+bbb.micPermissions.chrome.message = Wählen Sie "Zulassen", um Chrome Zugriff auf Ihr Mikrofon zu geben
bbb.micWarning.title = Audiowarnung
bbb.micWarning.joinBtn.label = Trotzdem teilnehmen
bbb.micWarning.testAgain.label = Noch einmal testen
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Diese Sitzung kann nicht aufgezei
bbb.mainToolbar.recordBtn.confirm.title = Aufzeichnung bestätigen
bbb.mainToolbar.recordBtn.confirm.message.start = Sind Sie sicher, dass Sie die Aufzeichnung der Sitzung starten wollen?
bbb.mainToolbar.recordBtn.confirm.message.stop = Sind Sie sicher, dass Sie die Aufzeichnung der Sitzung beenden wollen?
-bbb.mainToolbar.recordBtn..notification.title = Aufnahme-Benachrichtigung
-bbb.mainToolbar.recordBtn..notification.message1 = Sie können diese Konferenz aufnehmen.
-bbb.mainToolbar.recordBtn..notification.message2 = Klicken Sie den Aufnahme Start-/Stop-Button in der Titelleiste, um die Aufnahme zu beginnen oder zu beenden.
+bbb.mainToolbar.recordBtn.notification.title = Aufnahme-Benachrichtigung
+bbb.mainToolbar.recordBtn.notification.message1 = Sie können diese Konferenz aufnehmen.
+bbb.mainToolbar.recordBtn.notification.message2 = Klicken Sie den Aufnahme Start-/Stop-Button in der Titelleiste, um die Aufnahme zu beginnen oder zu beenden.
bbb.mainToolbar.recordingLabel.recording = (Aufnahme läuft)
bbb.mainToolbar.recordingLabel.notRecording = Keine Aufnahme
bbb.waitWindow.waitMessage.message = Sie sind Gast, bitte warten Sie bis der Moderator zustimmt
@@ -214,7 +215,7 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Mikrofon von {0} freigeben
bbb.users.usersGrid.mediaItemRenderer.pushToMute = {0} stummschalten
bbb.users.usersGrid.mediaItemRenderer.pushToLock = {0} sperren
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = {0} freigeben
-bbb.users.usersGrid.mediaItemRenderer.kickUser = {0} aus Konferenz entfernen
+bbb.users.usersGrid.mediaItemRenderer.kickUser = {0} entfernen
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam ist freigegeben
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon ausgeschaltet
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon aktiv
@@ -246,6 +247,7 @@ bbb.presentation.fitToWidth.toolTip = Präsentation an Breite anpassen
bbb.presentation.fitToPage.toolTip = Präsentation an Seite anpassen
bbb.presentation.uploadPresBtn.toolTip = Präsentation hochladen
bbb.presentation.downloadPresBtn.toolTip = Präsentationen herunterladen
+bbb.presentation.poll.response = Auf Umfrage antworten
bbb.presentation.backBtn.toolTip = Vorherige Folie
bbb.presentation.btnSlideNum.accessibilityName = Folie {0} von {1}
bbb.presentation.btnSlideNum.toolTip = Folie auswählen
@@ -309,6 +311,7 @@ bbb.chat.saveBtn.toolTip = Chatverlauf speichern
bbb.chat.saveBtn.accessibilityName = Chatverlauf in Textdatei speichern
bbb.chat.saveBtn.label = Speichern
bbb.chat.save.complete = Chatverlauf erfolgreich gespeichert
+bbb.chat.save.ioerror = Chat konnte nicht gespeichert werden. Versuchen Sie es nochmal.
bbb.chat.save.filename = Öffentlicher Chat
bbb.chat.copyBtn.toolTip = Chat kopieren
bbb.chat.copyBtn.accessibilityName = Chatverlauf in die Zwischenablage kopieren
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Freigeben
bbb.publishVideo.startPublishBtn.toolTip = Webcam freigeben
bbb.publishVideo.startPublishBtn.errorName = Webcam kann nicht freigegeben werden. Grund: {0}
bbb.webcamPermissions.chrome.title = Chrome Webcam-Berechtigungen
-bbb.webcamPermissions.chrome.message = Während Sie "Erlauben" um Firefox Zugriff auf Ihre Webcam zu geben
+bbb.webcamPermissions.chrome.message = Wählen Sie "Zulassen", um Chrome Zugriff auf Ihre Webcam zu geben
bbb.videodock.title = Webcam Sammelfenster
bbb.videodock.quickLink.label = Webcamfenster
bbb.video.minimizeBtn.accessibilityName = Webcamfenster minimieren
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Webcam Einstellungen schließen
bbb.video.publish.closeBtn.label = Abbrechen
bbb.video.publish.titleBar = Webcam freigeben
bbb.video.streamClose.toolTip = Beende den Stream für: {0}
+bbb.video.message.browserhttp = Dieser Server ist nicht für SSL konfiguriert. Deshalb hat {0} das Teilen Ihrer Webcam deaktiviert.
bbb.screensharePublish.title = Bildschirmfreigabe: Präsentationsvorschau
bbb.screensharePublish.pause.tooltip = Bildschirmfreigabe unterbrechen
bbb.screensharePublish.pause.label = Unterbrechen
@@ -446,6 +450,7 @@ bbb.toolbar.deskshare.toolTip.stop = Bildschirmfreigabe beenden
bbb.toolbar.sharednotes.toolTip = Geteilte Notizen öffnen
bbb.toolbar.video.toolTip.start = Webcam freigeben
bbb.toolbar.video.toolTip.stop = Webcam nicht mehr freigeben
+bbb.layout.addButton.label = Hinzufügen
bbb.layout.addButton.toolTip = Benutzerdefiniertes Layout zur Liste hinzufügen
bbb.layout.overwriteLayoutName.title = Layout überschreiben
bbb.layout.overwriteLayoutName.text = Name wird bereits verwendet. Möchten Sie überschreiben?
@@ -459,7 +464,10 @@ bbb.layout.combo.custom = * Benutzerspezifisches Layout
bbb.layout.combo.customName = Benutzerspezifisches Layout
bbb.layout.combo.remote = Fern
bbb.layout.window.name = Layoutname
+bbb.layout.window.close.tooltip = Schließen
+bbb.layout.window.close.accessibilityName = Fenster zum Hinzufügen neuer Layouts schließen
bbb.layout.save.complete = Layouts wurden gespeichert
+bbb.layout.save.ioerror = Layouts konnten nicht gespeichert werden. Versuchen Sie es nochmal.
bbb.layout.load.complete = Layouts wurden geladen
bbb.layout.load.failed = Die Layouts können nicht geladen werden
bbb.layout.sync = Ihr Layout wurde an alle Teilnehmer übertragen
@@ -493,21 +501,22 @@ bbb.highlighter.toolbar.color.accessibilityName = Whiteboard Stiftfarbe
bbb.highlighter.toolbar.thickness = Dicke ändern
bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard Strichstärke
bbb.highlighter.toolbar.multiuser = Mehrbenutzer-Zeichnung
-bbb.logout.title = Abgemeldet
bbb.logout.button.label = OK
bbb.logout.appshutdown = Die Server Applikation wurde herunter gefahren
bbb.logout.asyncerror = Ein Async Fehler ist aufgetreten
bbb.logout.connectionclosed = Die Verbindung zum Server wurde beendet
-bbb.logout.connectionfailed = Die Verbindung zum Server wurde geschlossen
+bbb.logout.connectionfailed = Die Verbindung zum Server wurde beendet
bbb.logout.rejected = Die Verbindung zum Server wurde abgelehnt
bbb.logout.invalidapp = Die red5 Applikation existiert nicht
bbb.logout.unknown = Die Verbindung zwischen Ihrem Client und dem Server wurde abgebrochen
bbb.logout.guestkickedout = Der Moderator hat die Teilnahme an der Konferenz für Sie gesperrt
bbb.logout.usercommand = Sie haben sich aus der Konferenz ausgeloggt
bbb.logour.breakoutRoomClose = Ihr Browserfenster wird geschlossen
-bbb.logout.ejectedFromMeeting = Ein Moderator hat Sie aus der Konferenz entfernt.
+bbb.logout.ejectedFromMeeting = Sie wurden aus der Konferenz entfernt.
bbb.logout.refresh.message = Falls Sie sich gar nicht ausloggen wollten, klicken Sie unten auf Erneut verbinden
bbb.logout.refresh.label = Erneut verbinden
+bbb.logout.feedback.hint = Wie können wir BigBlueButton verbessern?
+bbb.logout.feedback.label = Wir würden gerne erfahren, wie Sie BigBlueButton finden (optional)
bbb.settings.title = Einstellungen
bbb.settings.ok = OK
bbb.settings.cancel = Abbrechen
@@ -518,7 +527,7 @@ bbb.logout.confirm.endMeeting = Ja und Konferenz beenden
bbb.logout.confirm.yes = Ja
bbb.logout.confirm.no = Nein
bbb.endSession.confirm.title = Warnung
-bbb.endSession.confirm.message = Wenn Sie die Sitzung beenden, wird die Verbindung zu allen Teilnehmern beendet. Wollen Sie fortfahren?
+bbb.endSession.confirm.message = Durchs Beenden der Sitzung, werden alle verbleibenden Teilnehmer aus dem Konferenzraum geworfen. Wollen Sie fortfahren?
bbb.connection.failure=Es wurden Verbindungsprobleme festgestellt
bbb.connection.reconnecting=Verbinde erneut
bbb.connection.reestablished=Verbindung hergestellt
@@ -540,6 +549,7 @@ bbb.sharedNotes.typing.double = {0} und {1} tippen beide...
bbb.sharedNotes.typing.multiple = Mehrere Personen tippen...
bbb.sharedNotes.save.toolTip = Notizen in Datei speichern
bbb.sharedNotes.save.complete = Notizen wurden erfolgreich gespeichert
+bbb.sharedNotes.save.ioerror = Notizen konnten nicht gespeichert werden. Versuchen Sie es nochmal.
bbb.sharedNotes.save.htmlLabel = Formatierter Text (.html)
bbb.sharedNotes.save.txtLabel = Einfacher Text (.txt)
bbb.sharedNotes.new.label = Erstellen
@@ -553,7 +563,7 @@ bbb.sharedNotes.settings.toolTip = Einstellungen für geteilte Notizen
bbb.sharedNotes.clearWarning.title = Geteilte Notizen werden gelöscht
bbb.sharedNotes.clearWarning.message = Hiermit löschen Sie den Inhalt des Notizfensters für alle Teilnehmer und es gibt keinen Weg, diesen Schritt rückgängig zu machen. Sind Sie sicher, dass Sie die Notizen löschen wollen?
bbb.sharedNotes.additionalNotes.closeWarning.title = Geteilte Notizen schließen
-bbb.sharedNotes.additionalNotes.closeWarning.message = Hiermit werden die Notizen in diesem Fenster gelöscht und es gibt keine Möglichkeit dies rückgängig zu machen. Sind sie sicher, dass sie diese Notizen löschen wollen?
+bbb.sharedNotes.additionalNotes.closeWarning.message = Hiermit werden die Notizen in diesem Fenster gelöscht und es gibt keine Möglichkeit dies rückgängig zu machen. Sind Sie sicher, dass Sie diese Notizen löschen wollen?
bbb.sharedNotes.messageLengthWarning.title = Limit zur Zeichenveränderung überschritten
bbb.sharedNotes.messageLengthWarning.text = Ihre Veränderung überschreitet das Limit um {0}. Versuchen Sie eine kleinere Veränderung.
bbb.sharedNotes.remaining.tooltip = Verbleibender Platz für geteilte Notizen
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = an Seite anpassen
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Ausgewähltem Teilnehmer Präsentationsrechte geben
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Ausgewählten Teilnehmer aus der Konferenz entfernen
+bbb.shortcutkey.users.kick.function = Ausgewählte Person aus der Konferenz entfernen
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Das Mikrofon des ausgewählten Teilnehmers stumm schalten oder freigeben
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Veröffentlichen
bbb.polling.closeButton.label = Schließen
bbb.polling.customPollOption.label = Benutzerdefinierte Umfrage...
bbb.polling.pollModal.title = Live Umfrageergebnisse
+bbb.polling.pollModal.hint = Lassen Sie dieses Fenster geöffnet, damit die Teilnehmer ihre Antworten abgeben können. Wenn Sie auf Veröffentlichen oder Schließen klicken, wird die Umfrage dadurch beendet.
bbb.polling.customChoices.title = Antwortoptionen eingeben
bbb.polling.respondersLabel.novotes = Warte auf Rückmeldungen
bbb.polling.respondersLabel.text = {0} Nutzer haben geantwortet
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Sperreinstellungen anwenden
bbb.lockSettings.cancel = Abbrechen
bbb.lockSettings.cancel.toolTip = Fenster schließen ohne zu speichern
+bbb.lockSettings.hint = Diese Optionen ermöglichen es, bestimmte Funktionen für Zuschauer einzuschränken, wie z.B. die Nutzung des privaten Chats. (Diese Einschränkungen gelten nicht für Moderatoren)
bbb.lockSettings.moderatorLocking = Sperrung durch Moderator
bbb.lockSettings.privateChat = Privater Chat
bbb.lockSettings.publicChat = Öffentlicher Chat
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator = Webcams der anderen Zuschauer ausblenden
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Teilnehmer sperren
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Beim Konferenzbeitritt sperren
bbb.users.breakout.breakoutRooms = Breakout-Räume
bbb.users.breakout.updateBreakoutRooms = Breakout-Räume aktualisieren
+bbb.users.breakout.timerForRoom.toolTip = Verbleibende Zeit für diesen Breakout-Raum
bbb.users.breakout.timer.toolTip = Verbleibende Zeit für Breakout-Räume
bbb.users.breakout.calculatingRemainingTime = Berechne verbleibende Zeit...
bbb.users.breakout.closing = Der Breakout-Raum wird in Kürze geschlossen
+bbb.users.breakout.closewarning.text = Breakout-Räume werden in einer Minute geschlossen.
bbb.users.breakout.rooms = Räume
bbb.users.breakout.roomsCombo.accessibilityName = Anzahl der zu erstellenden Räume
bbb.users.breakout.room = Raum
-bbb.users.breakout.randomAssign = Nutzer zufällig auf Räume verteilen
bbb.users.breakout.timeLimit = Zeitlimit
bbb.users.breakout.durationStepper.accessibilityName = Zeitlimit in Minuten
bbb.users.breakout.minutes = Minuten
@@ -838,10 +852,10 @@ bbb.users.breakout.confirm = Breakout Raum beitreten
bbb.users.breakout.invited = Sie wurden eingeladen Breakout Room beizutreten
bbb.users.breakout.accept = Wenn sie zustimmen, verlassen Sie automatisch die Audio- und Videokonferenz.
bbb.users.breakout.joinSession = Sitzung beitreten
-bbb.users.breakout.joinSession.accessibilityName = Breakout Raum beitreten
+bbb.users.breakout.joinSession.accessibilityName = Breakout-Raum beitreten
bbb.users.breakout.joinSession.close.tooltip = Schließen
-bbb.users.breakout.joinSession.close.accessibilityName = Schließen des Fensters zum Beitreten der Breakout Räume
-bbb.users.breakout.youareinroom = Sie befinden sich in Breakout Raum {0}
+bbb.users.breakout.joinSession.close.accessibilityName = Fensters zum Beitreten der Breakout-Räume schließen
+bbb.users.breakout.youareinroom = Sie befinden sich in Breakout-Raum {0}
bbb.users.roomsGrid.room = Raum
bbb.users.roomsGrid.users = Nutzer
bbb.users.roomsGrid.action = Tätigkeit
@@ -850,54 +864,8 @@ bbb.users.roomsGrid.join = Beitreten
bbb.users.roomsGrid.noUsers = Keine Nutzer in diesem Raum
bbb.langSelector.default=Voreingestellte Sprache
-bbb.langSelector.ar=Arabisch
-bbb.langSelector.az_AZ=Aserbaidschanisch
-bbb.langSelector.eu_EU=Baskisch
-bbb.langSelector.bn_BN=Bengalisch
-bbb.langSelector.bg_BG=Bulgarisch
-bbb.langSelector.ca_ES=Katalanisch
-bbb.langSelector.zh_CN=Chinesisch (vereinfacht)
-bbb.langSelector.zh_TW=Chinesisch (Traditionell)
-bbb.langSelector.hr_HR=Kroatisch
-bbb.langSelector.cs_CZ=Tschechisch
-bbb.langSelector.da_DK=Dänisch
-bbb.langSelector.nl_NL=Holländisch
-bbb.langSelector.en_US=Englisch
-bbb.langSelector.et_EE=Estnisch
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnisch
-bbb.langSelector.fr_FR=Französisch
-bbb.langSelector.fr_CA=Französisch (Kanadisch)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=Deutsch
-bbb.langSelector.el_GR=Griechisch
-bbb.langSelector.he_IL=Hebräisch
-bbb.langSelector.hu_HU=Ungarisch
-bbb.langSelector.id_ID=Indonesisch
-bbb.langSelector.it_IT=Italienisch
-bbb.langSelector.ja_JP=Japanisch
-bbb.langSelector.ko_KR=Koreanisch
-bbb.langSelector.lv_LV=Lettisch
-bbb.langSelector.lt_LT=Litauisch
-bbb.langSelector.mn_MN=Mongolisch
-bbb.langSelector.ne_NE=Nepalesisch
-bbb.langSelector.no_NO=Norwegisch
-bbb.langSelector.pl_PL=Polisch
-bbb.langSelector.pt_BR=Portugisisch (Brasilianisch)
-bbb.langSelector.pt_PT=Portugisisch
-bbb.langSelector.ro_RO=Rumänisch
-bbb.langSelector.ru_RU=Russisch
-bbb.langSelector.sr_SR=Serbisch (kyrillisch)
-bbb.langSelector.sr_RS=Serbisch (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slowakisch
-bbb.langSelector.sl_SL=Slowenisch
-bbb.langSelector.es_ES=Spanisch
-bbb.langSelector.es_LA=Spanisch (Lateinamerikanisch)
-bbb.langSelector.sv_SE=Schwedisch
-bbb.langSelector.th_TH=Thailändisch
-bbb.langSelector.tr_TR=Türkisch
-bbb.langSelector.uk_UA=Ukrainisch
-bbb.langSelector.vi_VN=Vietnamesisch
-bbb.langSelector.cy_GB=Walisisch
-bbb.langSelector.oc=Okzitanisch
+
+bbb.alert.cancel = Abbrechen
+bbb.alert.ok = OK
+bbb.alert.no = Nein
+bbb.alert.yes = Ja
diff --git a/bigbluebutton-client/locale/el/bbbResources.properties b/bigbluebutton-client/locale/el/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/el/bbbResources.properties
+++ b/bigbluebutton-client/locale/el/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/el_GR/bbbResources.properties b/bigbluebutton-client/locale/el_GR/bbbResources.properties
index 9348943628fd..ed233676b4bb 100644
--- a/bigbluebutton-client/locale/el_GR/bbbResources.properties
+++ b/bigbluebutton-client/locale/el_GR/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Σύνδεση στον διακομιστή
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Λυπούμαστε, αλλά δεν μπορούμε να συνδεθούμε στο διακομιστή
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Ανοίξτε το παράθυρο καταγραφής
bbb.mainshell.meetingNotFound = Δεν βρέθηκε η συνεδρίαση
bbb.mainshell.invalidAuthToken = Λάθος στοιχεία πιστοποίησης
bbb.mainshell.resetLayoutBtn.toolTip = Επαναφορά διάταξης
bbb.mainshell.notification.tunnelling = Προώθηση
bbb.mainshell.notification.webrtc = Ήχος WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Μπορεί να έχετε παλαιότερη μετάφραση του BigBlueButton.
bbb.oldlocalewindow.reminder2 = Παρακαλούμε εκκαθαρίστε το πρόσφατο ιστορικό του περιηγητή σας και ξαναπροσπαθήστε.
bbb.oldlocalewindow.windowTitle = Προσοχή: Παλαιά Μετάφραση
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Γίνεται σύνδεση
bbb.micSettings.webrtc.transferring = Μεταφορά
bbb.micSettings.webrtc.endingecho = Συμμετοχή με ήχο
bbb.micSettings.webrtc.endedecho = Τέλος δοκιμής ηχού
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Δικαιώματα Μικροφώνου Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Δικαιώματα Μικροφώνου Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Προειδοποίηση ήχου
bbb.micWarning.joinBtn.label = Είσοδος
bbb.micWarning.testAgain.label = Έλεγχος ξανά
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Η δοκιμή ηχώ WebRTC
bbb.webrtcWarning.connection.dropped = Απέτυχε η σύνδεση WebRTC
bbb.webrtcWarning.connection.reconnecting = Προσπάθεια επανασύνδεσης
bbb.webrtcWarning.connection.reestablished = Αποκαταστάθηκε η σύνδεση WebRTC
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Βοήθεια
bbb.mainToolbar.logoutBtn = Αποσύνδεση
bbb.mainToolbar.logoutBtn.toolTip = Αποσύνδεση
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Επιλογή γλώσσας
bbb.mainToolbar.settingsBtn = Ρυθμίσεις
bbb.mainToolbar.settingsBtn.toolTip = Άνοιγμα ρυθμίσεων
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Έναρξη εγγραφής
bbb.mainToolbar.recordBtn.toolTip.stop = Διακοπή εγγραφής
bbb.mainToolbar.recordBtn.toolTip.recording = Η συνεδρία καταγράφεται
bbb.mainToolbar.recordBtn.toolTip.notRecording = Η συνεδρία δεν καταγράφεται
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Επιβεβαίωση εγγραφής
bbb.mainToolbar.recordBtn.confirm.message.start = Είστε σίγουρος/η οτι θέλετε να ξεκινήσει η εγγραφή της συνεδρίας;
bbb.mainToolbar.recordBtn.confirm.message.stop = Είστε σίγουρος/η οτι θέλετε να διακοπεί η εγγραφή της συνεδρίας;
-bbb.mainToolbar.recordBtn..notification.title = Ειδοποίηση καταγραφής
-bbb.mainToolbar.recordBtn..notification.message1 = Μπορείτε να καταγράψετε αυτό το συνέδριο
-bbb.mainToolbar.recordBtn..notification.message2 = Για την εκκίνηση της ηχογράφησης πρέπει να πατήσετε το κουμπί "Εκκίνηση/ Τερματισμός" ηχογράφησης στην μπάρα τίτλου
+bbb.mainToolbar.recordBtn.notification.title = Ειδοποίηση καταγραφής
+bbb.mainToolbar.recordBtn.notification.message1 = Μπορείτε να καταγράψετε αυτό το συνέδριο
+bbb.mainToolbar.recordBtn.notification.message2 = Για την εκκίνηση της ηχογράφησης πρέπει να πατήσετε το κουμπί "Εκκίνηση/ Τερματισμός" ηχογράφησης στην μπάρα τίτλου
bbb.mainToolbar.recordingLabel.recording = (Εγγραφή)
bbb.mainToolbar.recordingLabel.notRecording = Δεν γίνεται εγγραφή
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Ειδοποιήσεις ρυθμίσεων
bbb.clientstatus.notification = Αδιάβαστες ειδοποιήσεις
bbb.clientstatus.close = Κλείσιμο
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Ο περιηγητής σας ({0}) δεν
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Ο Flash Player σας ({0}) δεν είναι ενημερωμένος. Προτείνεται ενημέρωση στην τελευταία έκδοση.
bbb.clientstatus.webrtc.title = Ήχος
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Συνιστούμε τη χρήση είτε του Firefox ή του Chrome για καλύτερη ακουστική.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Ελαχιστοποίηση
bbb.window.maximizeRestoreBtn.toolTip = Μεγιστοποίηση
bbb.window.closeBtn.toolTip = Κλείσιμο
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Κατάσταση
bbb.users.usersGrid.statusItemRenderer.changePresenter = Κάνε την/τον παρουσιαστή
bbb.users.usersGrid.statusItemRenderer.presenter = Παρουσιαστής
bbb.users.usersGrid.statusItemRenderer.moderator = Διαχειριστής
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Καθαρισμός κατάστασης
bbb.users.usersGrid.statusItemRenderer.viewer = Ακροατής
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Η κάμερα διαμοιράζεται
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Κάντε κλικ για ν
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Κάντε κλικ για να απενεργοποιήσετε τον ήχο στον χρήστη
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Κλείδωμα του χρήστη {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Ξεκλείδωμα του χρήστη {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Διώξτε τον χρήστη
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Η κάμερα διαμοιράζεται
bbb.users.usersGrid.mediaItemRenderer.micOff = Μικρόφωνο κλειστό
bbb.users.usersGrid.mediaItemRenderer.micOn = Μικρόφωνο ανοικτό
bbb.users.usersGrid.mediaItemRenderer.noAudio = Δεν είστε σε συνδιάσκεψη ήχου
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Καθαρισμός
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Παρουσίαση
bbb.presentation.titleWithPres = Παρουσίαση: {0}
bbb.presentation.quickLink.label = Παράθυρο Παρουσίασης
bbb.presentation.fitToWidth.toolTip = Προσαρμογή παρουσίασης στο πλάτος
bbb.presentation.fitToPage.toolTip = Προσαρμογή παρουσίασης στη σελίδα
bbb.presentation.uploadPresBtn.toolTip = Ανέβασμα παρουσίασης
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Παράθυρο Παρουσίασης Προηγούμενη διαφάνεια
bbb.presentation.btnSlideNum.accessibilityName = Διαφάνεια {0} από {1}
bbb.presentation.btnSlideNum.toolTip = Επιλογή διαφάνειας
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Η μεταφόρτωση ολοκληρώθη
bbb.presentation.uploaded = μεταφορτώθηκε.
bbb.presentation.document.supported = Το μεταφορτωμένο έγγραφο υποστηρίζεται. Ξεκινάει η διαδικασία μετατροπής...
bbb.presentation.document.converted = Το έγγραφο του office μετατράπηκε επιτυχώς.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO (ERROR)Σφάλμα (Εισόδου-Εξόδου): Παρακαλούμε επικοινωνήστε με τον διαχειριστή.
bbb.presentation.error.security = Security Σφάλμα (Σφάλμα Ασφαλείας): Παρακαλούμε επικοινωνήστε με τον διαχειριστή.
bbb.presentation.error.convert.notsupported = Σφάλμα: Το μεταφορτωμένο έγγραφο δεν υποστηρίζεται. Παρακαλούμε μεταφορτώστε ένα συμβατό αρχείο.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Μεταφόρτωση
bbb.fileupload.uploadBtn.toolTip = Μεταφόρτωση αρχείου
bbb.fileupload.deleteBtn.toolTip = Διαγραφή παρουσίασης
bbb.fileupload.showBtn = Προβολή
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Προβολή παρουσίασης
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Δημιουργία μικρογραφιών...
bbb.fileupload.progBarLbl = Πρόοδος:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Συζήτηση
bbb.chat.quickLink.label = Παράθυρο συνομιλίας
bbb.chat.cmpColorPicker.toolTip = Παράθυρο συνομιλίας Χρώμα κειμένου
bbb.chat.input.accessibilityName = Πεδίο αλλαγής μηνύματος
bbb.chat.sendBtn.toolTip = Αποστολή μηνύματος
bbb.chat.sendBtn.accessibilityName = Αποστολή μηνύματος
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Αντιγραφή όλων
bbb.chat.publicChatUsername = Όλα
bbb.chat.optionsTabName = Επιλογές
@@ -331,13 +334,13 @@ bbb.chat.usersList.accessibilityName = Επιλέξτε το χρήστη για
bbb.chat.chatOptions = Παράθυρο συνομιλίας Επιλογές συνομιλίας
bbb.chat.fontSize = Παράθυρο συνομιλίας Μέγεθος γραμματοσειράς
bbb.chat.cmbFontSize.toolTip = Επιλογή Μεγέθους Γραμματοσειράς Παράθυρου Συνομιλίας
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Ελαχιστοποίηση του παραθύρου συνομιλίας
bbb.chat.maximizeRestoreBtn.accessibilityName = Μεγιστοποίηση του παραθύρου συνομιλίας
bbb.chat.closeBtn.accessibilityName = Κλείσιμο του παραθύρου συνομιλίας
bbb.chat.chatTabs.accessibleNotice = Νέα μηνύματα στε αυτή την καρτέλα.
bbb.chat.chatMessage.systemMessage = Σύστημα
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Το μήνυμα είναι {0} χαρακτήρα(ες) μεγαλύτερο
bbb.publishVideo.changeCameraBtn.labelText = Αλλαγή Κάμερας
bbb.publishVideo.changeCameraBtn.toolTip = Άνοιγμα του διαλόγου αλλαγής κάμερας
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Κοινή χρήση
bbb.publishVideo.startPublishBtn.toolTip = Εκκίνηση διαμοιρασμού κάμερας
bbb.publishVideo.startPublishBtn.errorName = Δεν είναι δυνατή η κοινή χρήση της κάμερας. Αιτιολογία: {0}
bbb.webcamPermissions.chrome.title = Δικαιώματα web κάμερας Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Κάμερες
bbb.videodock.quickLink.label = Παράθυρο Κάμερας
bbb.video.minimizeBtn.accessibilityName = Ελαχιστοποίηση του παραθύρου περιοχής κάμερας
@@ -367,89 +370,91 @@ bbb.video.publish.closeBtn.accessName = Κλείσιμο παραθύρου τη
bbb.video.publish.closeBtn.label = Ακύρωση
bbb.video.publish.titleBar = Δημοσίευση παραθύρου κάμερας
bbb.video.streamClose.toolTip = Κλείσιμο ροής για: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Διακοπή παρακολούθησης συνεδρίου
bbb.toolbar.phone.toolTip.unmute = Εκκίνηση παρακολούθησης συνεδρίου
bbb.toolbar.phone.toolTip.nomic = Δε βρέθηκε μικρόφωνο
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Διαμοιρασμός της κάμερας σας
bbb.toolbar.video.toolTip.stop = Κλείσιμο διαμοιρασμού της κάμεράς σου
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Προσθήκη της προσαρμοσμένης εμφάνισης στην λίστα
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Αλλαγή της τρέχουσας εμφάνισης
bbb.layout.loadButton.toolTip = Φόρτωση εμφάνισης από αρχείο
bbb.layout.saveButton.toolTip = Αποθήκευση εμφάνισης σε αρχείο
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Εφαρμογή μίας εμφάνισης
bbb.layout.combo.custom = * Προσαρμοσμένη εμφάνιση
bbb.layout.combo.customName = Προσαρμοσμένη εμφάνιση
bbb.layout.combo.remote = Απομακρυσμένο
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Οι εμφανίσεις αποθηκεύτηκαν επιτυχώς
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Οι εμφανίσεις φορτώθηκαν επιτυχώς
bbb.layout.load.failed = Δεν ήταν δυνατόν να φορτωθούν οι εμφανίσεις
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Προεπιλεγμένη Εμφάνιση
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Συνομιλία βίντεο
bbb.layout.name.webcamsfocus = Συνεδρίαση κάμερας
bbb.layout.name.presentfocus = Συνεδρίαση παρουσίασης
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Βοηθός Εισηγητή
bbb.layout.name.lecture = Εισηγητής
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Μολύβι
bbb.highlighter.toolbar.pencil.accessibilityName = Αλλαγή του κέρσορα της οθόνης σε μολύβι
bbb.highlighter.toolbar.ellipse = Κύκλος
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Επιλογή χρώματος
bbb.highlighter.toolbar.color.accessibilityName = Χρώμα μαρκαδόρου
bbb.highlighter.toolbar.thickness = Αλλαγή πάχους
bbb.highlighter.toolbar.thickness.accessibilityName = Πάχος μαρκαδόρου
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Αποσυνδεθήκατε
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Ο διακομιστής της εφαρμογής έχει κλείσει
bbb.logout.asyncerror = Συνέβη ένα σφάλμα συγχρονισμού
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Η σύνδεση με τον διακομιστή
bbb.logout.rejected = Η σύνδεση με τον διακομιστή έχει απορριφθεί
bbb.logout.invalidapp = Η εφαρμογή red5 δεν υπάρχει
bbb.logout.unknown = Έχετε χάσει τη σύνδεσή σας με τον διακομιστή
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Έχετε αποσυνδεθεί από τη τηλεδιάσκεψη
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Ένας συντονιστής σας έθεσε εκτός από τη συνεδρίαση.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Εάν αυτή η αποσύνδεση ήταν απρόσμενη, κάντε κλικ στο κουμπί παρακάτω για να επανασυνδεθείτε.
bbb.logout.refresh.label = Επανασύνδεση
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Επιβεβαίωση Αποσύνδεσης
bbb.logout.confirm.message = Είστε σίγουρος/η οτι θέλετε να αποσυνδεθείτε;
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Ναι
bbb.logout.confirm.no = Οχι
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Εντοπίστηκαν Προβλήματα Συνδεσιμότητας
bbb.connection.reconnecting=Επανασύνδεση
bbb.connection.reestablished=Αποκαταστάθηκε η σύνδεση
@@ -530,59 +539,60 @@ bbb.notes.title = Σημειώσεις
bbb.notes.cmpColorPicker.toolTip = Χρώμα κειμένου
bbb.notes.saveBtn = Αποθήκευση
bbb.notes.saveBtn.toolTip = Αποθήκευση σημείωσης
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Κάντε κλικ στο "Επιτρέπεται" στο παράθυρο που ανοίγει, για να ελέγξετε αν ο διαμοιρασμός της επιφάνειας εργασίας σας λειτουργεί κανονικά
bbb.settings.deskshare.start = Έλεγχος διαμοιρασμού επιφάνειας εργασίας
bbb.settings.voice.volume = Δραστηριότητα μικροφώνου
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Σφάλμα έκδοσης Flash
bbb.settings.flash.text = Έχετε εγκατεστημένη την έκδοση {0} του Flash, αλλά χρειάζεστε τουλάχιστον την έκδοση {1} για να λειτουργεί το BigBlueButton απρόσκοπτα. Κάντε κλικ στο πλήκτρο παρακάτω για να εγκαταστήσετε τη νεότερη έκδοση του προγράμματος Adobe Flash.
bbb.settings.flash.command = Εγκατάσταση νεότερης έκδοσης Flash
bbb.settings.isight.label = Σφάλμα κάμερας iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Εγκατάσταση Flash 10.2 RC2
bbb.settings.warning.label = Προειδοποίηση
bbb.settings.warning.close = Κλείσιμο της προειδοποίησης
bbb.settings.noissues = Δεν εντοπίστηκαν εκκρεμή ζητήματα
bbb.settings.instructions = Αποδεχτείτε το αίτημα του Flash που ζητά δικαιώματα πρόσβασης στην κάμερά σας. Εάν βλέπετε και ακούτε τον εαυτό σας σωστά, ο περιηγητής σας έχει ρυθμιστεί σωστά. Άλλα σημαντικά ζητήματα εμφανίζονται παρακάτω. Κάντε κλικ σε καθένα από αυτά για να βρείτε πιθανές λύσεις.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Τρίγωνο
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Αλλαγή του κέρσορα της οθόνης σε τρίγωνο
ltbcustom.bbb.highlighter.toolbar.line = Γραμμή
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Κείμενο
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Αλλαγή του κέρσορα της οθόνης σε κείμενο
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Χρώμα κειμένου
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Μέγεθος γραμματοσειράς
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Έτοιμο
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Πλοηγηθήκατε στο
bbb.accessibility.chat.chatBox.navigatedLatestRead = Πλοηγηθήκατε στο πιο πρόσφατα διαβασμένο μήνυμα.
bbb.accessibility.chat.chatwindow.input = Εισαγωγή συνομιλίας
bbb.accessibility.chat.chatwindow.audibleChatNotification = Ηχητική ειδοποίηση Συνομιλίας
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Χρησιμοποιήστε τα βελάκια για την πλοήγηση μεταξύ των μηνυμάτων
bbb.accessibility.notes.notesview.input = Εισαγωγή σημειώσεων
bbb.shortcuthelp.title = Πλήκτρα συντομεύσεων
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Ελαχιστοποίηση του παραθύρου συντομεύσεων
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Μεγιστοποίηση του παραθύρου συντομεύσεων
bbb.shortcuthelp.closeBtn.accessibilityName = Κλείσιμο του παραθύρου συντομεύσεων
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Καθολικές συντομεύσεις
bbb.shortcuthelp.dropdown.presentation = Συντομεύσεις παρουσίασης
bbb.shortcuthelp.dropdown.chat = Συντομεύσεις συνομιλίας
bbb.shortcuthelp.dropdown.users = Συντευμεύσεις χρηστών
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Συντόμευση
bbb.shortcuthelp.headers.function = Λειτουργία
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Ελαχιστοποίηση τρέ
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Μεγιστοποίηση τρέχοντος παραθύρου
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Επικέντρωση εκτός του flash παραθύρου
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Σίγαση και ενεργοποίηση του μικροφώνου σου
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Μετακίνηση της εστίασης στο παράθυρο της Παρουσίασης
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Μεταφορά της εστίασης στο παράθυρο συνομιλίας
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Άνοιγμα του παραθύρου διαμοιρασμού της επιφάνειας εργασίας
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Αποσύνδεση από αυτή την σ
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Ύψωσε το χέρι σου
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Ανέβασμα παρουσίασης
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Πήγαινε στην προηγούμενη διαφάνεια
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Πήγαινε στην επόμενη διαφάνεια
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Προσάρμοσε τις διαφάνειες στο πλάτος
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Προσάρμοσε τις διαφάνειες στη σελίδα
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Κάνε το επιλεγμένο άτομο παρουσιαστή
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Διώξε το επιλεγμένο άτομο από την συνεδρίαση
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Σίγαση ή ενεργοποίηση του ήχου στο επιλεγμένο άτομο
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Σίγαση ή ενεργοποίηση του ήχου σε όλους τους χρήστες
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Σίγαση σε όλους εκτός του παρουσιαστή
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Εστίασε στις καρτέλες συνομιλιών
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Εστίαση στην επιλογή χρώματος γραμματαοσειράς.
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Πλοήγηση στο πιο π
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Προσωρινό ενεργό κουμπί αποσφαλμάτωσης
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Έναρξη Ψηφοφορίας
bbb.polling.startButton.label = Έναρξη Ψηφοφορίας
bbb.polling.publishButton.label = Δημοσίευση
bbb.polling.closeButton.label = Κλείσιμο
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Ζωντανά αποτελέσματα ψηφοφορίας
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Εισάγετε επιλογές Ψηφοφορίας
bbb.polling.respondersLabel.novotes = Αναμονή για απαντήσεις
bbb.polling.respondersLabel.text = {0} Χρήστες Απάντησαν
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Κλείσιμο όλων των
bbb.users.settings.lockAll = Κλείδωμα όλων των χρηστών
bbb.users.settings.lockAllExcept = Κλείδωμα όλων εκτός του παρουσιαστή
bbb.users.settings.lockSettings = Κλείδωμα θεατών
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Ξεκλείδωμα όλων των θεατών
bbb.users.settings.roomIsLocked = Κλείδωμα εκ προεπιλογής
bbb.users.settings.roomIsMuted = Σίγαση εκ προεπιλογής
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = ΕΦαρμογή ρυθμίσεων κλειδώ
bbb.lockSettings.cancel = Ακύρωση
bbb.lockSettings.cancel.toolTip = Κλείσιμο του παραθύρου χωρίς αποθήκευση
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Κλείδωμα διαχειριστή
bbb.lockSettings.privateChat = Ιδιωτική συνομιλία
bbb.lockSettings.publicChat = Δημόσια συνομιλία
bbb.lockSettings.webcam = Κάμερα
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Μικρόφωνο
bbb.lockSettings.layout = Εμφάνιση
bbb.lockSettings.title=Κλείδωμα θεατών
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Δυνατότητα
bbb.lockSettings.locked=Κλειδωμένο
bbb.lockSettings.lockOnJoin=Κλείδωμα κατά την Είσοδο
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/en_AU/bbbResources.properties b/bigbluebutton-client/locale/en_AU/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/en_AU/bbbResources.properties
+++ b/bigbluebutton-client/locale/en_AU/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/en_US/bbbResources.properties b/bigbluebutton-client/locale/en_US/bbbResources.properties
index 8b4d45b71c28..d50afd5857bf 100755
--- a/bigbluebutton-client/locale/en_US/bbbResources.properties
+++ b/bigbluebutton-client/locale/en_US/bbbResources.properties
@@ -537,7 +537,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
bbb.highlighter.toolbar.thickness = Change Thickness
bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
bbb.logout.button.label = OK
bbb.logout.appshutdown = The server app has been shut down
bbb.logout.asyncerror = An Async Error occured
@@ -557,6 +556,8 @@ bbb.logout.refresh.message = If this logout was unexpected click the button belo
bbb.logout.refresh.label = Reconnect
bbb.guest.settings.ok = OK
bbb.guest.settings.cancel = Cancel
+bbb.logout.feedback.hint = How can we make BigBlueButton better?
+bbb.logout.feedback.label = We'd love to hear about your experience with BigBlueButton (optional)
bbb.logout.confirm.title = Confirm Logout
bbb.logout.confirm.message = Are you sure you want to log out?
bbb.logout.confirm.endMeeting = Yes and end the meeting
@@ -850,10 +851,12 @@ bbb.lockSettings.save.tooltip = Apply lock settings
bbb.lockSettings.cancel = Cancel
bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.hint = These options enable you to restrict certain features available to viewers, such as locking out their ability to use private chat. (These restrictions do not apply to moderators)
bbb.lockSettings.moderatorLocking = Moderator locking
bbb.lockSettings.privateChat = Private Chat
bbb.lockSettings.publicChat = Public Chat
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator = Hide other viewer's webcams
bbb.lockSettings.microphone = Microphone
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Lock Viewers
diff --git a/bigbluebutton-client/locale/es_419/bbbResources.properties b/bigbluebutton-client/locale/es_419/bbbResources.properties
new file mode 100644
index 000000000000..fe87e9ff650a
--- /dev/null
+++ b/bigbluebutton-client/locale/es_419/bbbResources.properties
@@ -0,0 +1,871 @@
+bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.statusProgress.connecting = Conectando al servidor
+bbb.mainshell.statusProgress.loading = Cargando
+bbb.mainshell.statusProgress.cannotConnectServer = Lo sentimos, no se puede conectar al servidor.
+bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (versión {0})
+bbb.mainshell.logBtn.toolTip = Abrir la ventana de Registro (Log)
+bbb.mainshell.meetingNotFound = Sesión no encontrada
+bbb.mainshell.invalidAuthToken = Token de autenticación inválido
+bbb.mainshell.resetLayoutBtn.toolTip = Restaurar Diseño
+bbb.mainshell.notification.tunnelling = Tunelización
+bbb.mainshell.notification.webrtc = Audio WebRTC
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 = Usted tiene una versión no actualizada de la traducción para Bigbluebutton
+bbb.oldlocalewindow.reminder2 = Por favor limpie el cache de su explorador y pruebe de nuevo.
+bbb.oldlocalewindow.windowTitle = Advertencia: Traducciones de lenguaje no actualizadas
+bbb.audioSelection.title = Como quiere unirse a la sesión de audio?
+bbb.audioSelection.btnMicrophone.label = Micrófono
+bbb.audioSelection.btnMicrophone.toolTip = Ingresar a la conferencia de audio con micrófono
+bbb.audioSelection.btnListenOnly.label = Solo escuchar
+bbb.audioSelection.btnListenOnly.toolTip = Ingresar a la conferencia de audio como oyente
+bbb.audioSelection.txtPhone.text = Para unirse a esta sesión utilizando un teléfono, marque: {0} e introduzca {1} como número de conferencia.
+bbb.micSettings.title = Prueba de audio
+bbb.micSettings.speakers.header = Prueba de parlantes
+bbb.micSettings.microphone.header = Probar Micrófono
+bbb.micSettings.playSound = Prueba de parlantes
+bbb.micSettings.playSound.toolTip = Escuchar música para probar los parlantes.
+bbb.micSettings.hearFromHeadset = Usted debe escuchar audio en su auricular, no en los parlantes de su computadora
+bbb.micSettings.speakIntoMic = Si usted esta utilizando auriculares (o audifonos) debe escuchar el audio a través de ellos y no a través de los parlantes de la computadora.
+bbb.micSettings.echoTestMicPrompt = Esta es una prueba privada de eco. Diga algunas palabras. Escucho sus palabras en el audio?
+bbb.micSettings.echoTestAudioYes = Si
+bbb.micSettings.echoTestAudioNo = No
+bbb.micSettings.speakIntoMicTestLevel = Hable en su micrófono. Debe ver movimiento en la barra, sí no es asi seleccione otro micrófono.
+bbb.micSettings.recommendHeadset = Utilice un auricular con micrófono para una mejor experiencia de audio.
+bbb.micSettings.changeMic = Probar o Cambiar micrófono
+bbb.micSettings.changeMic.toolTip = Abrir la ventana de configuraciones del micrófono de Flash Player
+bbb.micSettings.comboMicList.toolTip = Seleccionar micrófono
+bbb.micSettings.micRecordVolume.label = Ganancia
+bbb.micSettings.micRecordVolume.toolTip = Ajustar ganancia de su micrófono
+bbb.micSettings.nextButton = Siguiente
+bbb.micSettings.nextButton.toolTip = Iniciar la prueba de eco
+bbb.micSettings.join = Conectar audio
+bbb.micSettings.join.toolTip = Unirse a la conferencia de audio
+bbb.micSettings.cancel = Cancelar
+bbb.micSettings.connectingtoecho = Conectando
+bbb.micSettings.connectingtoecho.error = Error en prueba de eco: Por favor contacte al administrador.
+bbb.micSettings.cancel.toolTip = Cancelar la union a la conferencia de audio
+bbb.micSettings.access.helpButton = Ayuda (abra videos tutoriales en una nueva página)
+bbb.micSettings.access.title = Configuraciones de Audio. Esta ventana permanecerá enfocada hasta que se cierre la misma.
+bbb.micSettings.webrtc.title = Soporte para WebRTC
+bbb.micSettings.webrtc.capableBrowser = Su navegador soporta WebRTC
+bbb.micSettings.webrtc.capableBrowser.dontuseit = Click para no usar WebRTC
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click aquí si no desea usar tecnología WebRTC (recomendado si tiene problemas usándola)
+bbb.micSettings.webrtc.notCapableBrowser = WebRTC no es soportado en su navegador. Por favor use Google Chrome (versión 32 o mayor); o Mozilla Firefox (versión 26 o mayor). Podrá unirse a la conferencia de audio usando Adobe Flash Platform.
+bbb.micSettings.webrtc.connecting = Llamando
+bbb.micSettings.webrtc.waitingforice = Conectando
+bbb.micSettings.webrtc.transferring = transfiriendo
+bbb.micSettings.webrtc.endingecho = Conectandose a audio
+bbb.micSettings.webrtc.endedecho = La prueba de eco terminada.
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title = Permisos de micrófono en Firefox
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title = Permisos de micrófono en Chrome
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title = Alerta de audio
+bbb.micWarning.joinBtn.label = Unirse de todas formas
+bbb.micWarning.testAgain.label = Probar de nuevo
+bbb.micWarning.message = Su micrófono no mostró actividad alguna, otros probablemente no podrán escucharlo durante la sesión.
+bbb.webrtcWarning.message = La conección WebRTC no pudo completarse debido a: {0}. Quiere intentar utilizar Flash?
+bbb.webrtcWarning.title = Falló la conección WebRTC
+bbb.webrtcWarning.failedError.1001 = Error 1001: Socket Web desconectado
+bbb.webrtcWarning.failedError.1002 = Error 1002: No se pudo establecer una conexión de Socket Web
+bbb.webrtcWarning.failedError.1003 = Error 1003: Versión de navegador no soportada
+bbb.webrtcWarning.failedError.1004 = Error 1004 fallo en la llamada (reason={0})
+bbb.webrtcWarning.failedError.1005 = Error 1005: Llamada finalizada de forma inesperada
+bbb.webrtcWarning.failedError.1006 = Error 1006: La llamada agotó el tiempo de espera
+bbb.webrtcWarning.failedError.1007 = Error 1007: Falló la negociación ICE
+bbb.webrtcWarning.failedError.1008 = Error 1008: transferencia fallida
+bbb.webrtcWarning.failedError.1009 = Error 1009: No se pudo obtener información del servidor
+bbb.webrtcWarning.failedError.1010 = Error 1010: La negociación ICE agotó el tiempo de espera
+bbb.webrtcWarning.failedError.1011 = Error 1011: Conferencia ICE agotó el tiempo de espera
+bbb.webrtcWarning.failedError.unknown = Error {0}: Código de error desconocido
+bbb.webrtcWarning.failedError.mediamissing = Su micrófono no pudo ser utilizarse para una llamada mediante WebRTC.
+bbb.webrtcWarning.failedError.endedunexpectedly = El test de eco WebRTC finalizó de forma inesperada.
+bbb.webrtcWarning.connection.dropped = Conexión WebRTC terminada
+bbb.webrtcWarning.connection.reconnecting = Intentando reconectar
+bbb.webrtcWarning.connection.reestablished = Conexión WebRTC reestablecida
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel = Cancelar
+bbb.mainToolbar.helpBtn = Ayuda
+bbb.mainToolbar.logoutBtn = Cerrar sesión
+bbb.mainToolbar.logoutBtn.toolTip = Cerrar sesión
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector = Seleccionar Idioma
+bbb.mainToolbar.settingsBtn = Configuraciones
+bbb.mainToolbar.settingsBtn.toolTip = Abrir Configuraciones
+bbb.mainToolbar.shortcutBtn = Teclas de acceso directo
+bbb.mainToolbar.shortcutBtn.toolTip = Abrir ventana de teclas de acceso directo
+bbb.mainToolbar.recordBtn.toolTip.start = Iniciar grabación
+bbb.mainToolbar.recordBtn.toolTip.stop = Detener grabación
+bbb.mainToolbar.recordBtn.toolTip.recording = La sesión está siendo grabada
+bbb.mainToolbar.recordBtn.toolTip.notRecording = La sesión no está siendo grabada
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title = Confirmar grabación
+bbb.mainToolbar.recordBtn.confirm.message.start = ¿Está seguro que desea iniciar la grabación de la sesión?
+bbb.mainToolbar.recordBtn.confirm.message.stop = ¿Está seguro que desea detener la grabación de la sesión?
+bbb.mainToolbar.recordBtn.notification.title = Notificación de grabación
+bbb.mainToolbar.recordBtn.notification.message1 = Usted puede grabar esta sesión.
+bbb.mainToolbar.recordBtn.notification.message2 = Debe hacer click en el botón Iniciar/Detener Grabación en la barra de título para empezar o dejar de grabar.
+bbb.mainToolbar.recordingLabel.recording = (Grabación)
+bbb.mainToolbar.recordingLabel.notRecording = No grabando
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title = Notificaciones de configuración
+bbb.clientstatus.notification = Notificaciones sin leer
+bbb.clientstatus.close = Cerrar
+bbb.clientstatus.tunneling.title = Contrafuegos
+bbb.clientstatus.tunneling.message = Un cortafuegos está evitando que el cliente se conecte directamente al servidor remoto por el puerto 1935. Se recomienda utilizar una red menos restringida para obtener una conexión más estable
+bbb.clientstatus.browser.title = Versión de navegador
+bbb.clientstatus.browser.message = El navegador ({0}) no se encuentra actualizado. Se recomienda actualizarlo a la última versión.
+bbb.clientstatus.flash.title = Reproductor Flash
+bbb.clientstatus.flash.message = El reproductor Flash ({0}) no se encuentra actualizado. Se recomienda actualizarlo a la última versión.
+bbb.clientstatus.webrtc.title = Audio
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message = Se recomienda utilizar Firefox o Chrome para obtener mejor calidad de audio.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip = Minimizar
+bbb.window.maximizeRestoreBtn.toolTip = Maximizar
+bbb.window.closeBtn.toolTip = Cerrar
+bbb.videoDock.titleBar = Barra de Título de la Ventana de Bloque de cámara Web
+bbb.presentation.titleBar = Barra de Titulo de la Ventana de Presentación
+bbb.chat.titleBar = Barra de Título de la Ventana de Chat. Para navegar entre los mensajes, seleccione la lista de mensajes.
+bbb.users.title = Asistentes{0} {1}
+bbb.users.titleBar = Barra de título de la Ventana de Asistentes, doble click para maximizar
+bbb.users.quickLink.label = Ventana de Usuarios
+bbb.users.minimizeBtn.accessibilityName = Minimizar la Ventana de Asistentes
+bbb.users.maximizeRestoreBtn.accessibilityName = Maximizar la Ventana de Asistentes
+bbb.users.settings.buttonTooltip = Configuraciones
+bbb.users.settings.audioSettings = Prueba de audio
+bbb.users.settings.webcamSettings = Configuración de la cámara Web
+bbb.users.settings.muteAll = Desactivar audio a todos
+bbb.users.settings.muteAllExcept = Desactivar audio a todos excepto al Presentador
+bbb.users.settings.unmuteAll = Activar audio a todos
+bbb.users.settings.clearAllStatus = Reiniciar el estado de todos los participantes
+bbb.users.emojiStatusBtn.toolTip = Actualizar mi propio icono de estado
+bbb.users.roomMuted.text = Espectadores silenciados
+bbb.users.roomLocked.text = Espectadores bloqueados
+bbb.users.pushToTalk.toolTip = Click para hablar
+bbb.users.pushToMute.toolTip = Click para desactivarse el audio
+bbb.users.muteMeBtnTxt.talk = Activar audio
+bbb.users.muteMeBtnTxt.mute = Desactivar audio
+bbb.users.muteMeBtnTxt.muted = Audio desactivado
+bbb.users.usersGrid.contextmenu.exportusers = Copiar nombres de usuario
+bbb.users.usersGrid.accessibilityName = Lista de Asistentes. Usar las teclas de dirección para navegar.
+bbb.users.usersGrid.nameItemRenderer = Nombre
+bbb.users.usersGrid.nameItemRenderer.youIdentifier = usted
+bbb.users.usersGrid.statusItemRenderer = Estado
+bbb.users.usersGrid.statusItemRenderer.changePresenter = Haga click para cambiar a presentador
+bbb.users.usersGrid.statusItemRenderer.presenter = Presentador
+bbb.users.usersGrid.statusItemRenderer.moderator = Moderador
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause = Aplauso
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away = Ausente
+bbb.users.usersGrid.statusItemRenderer.confused = Confundido
+bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
+bbb.users.usersGrid.statusItemRenderer.happy = Contento
+bbb.users.usersGrid.statusItemRenderer.sad = Triste
+bbb.users.usersGrid.statusItemRenderer.clearStatus = Reiniciar el estado de todos los participantes
+bbb.users.usersGrid.statusItemRenderer.viewer = Espectador
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Compartiendo cámara web
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Es presentador
+bbb.users.usersGrid.mediaItemRenderer = Media
+bbb.users.usersGrid.mediaItemRenderer.talking = Hablando
+bbb.users.usersGrid.mediaItemRenderer.webcam = Compartiendo cámara Web
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Click para ver la cámara Web
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Activar audio a {0}
+bbb.users.usersGrid.mediaItemRenderer.pushToMute = Desactivar audio a {0}
+bbb.users.usersGrid.mediaItemRenderer.pushToLock = Bloquear {0}
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Desbloquear {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam = Compartiendo cámara Web
+bbb.users.usersGrid.mediaItemRenderer.micOff = Micrófono apagado
+bbb.users.usersGrid.mediaItemRenderer.micOn = Micrófono encendido
+bbb.users.usersGrid.mediaItemRenderer.noAudio = No está en la Conferencia de Voz
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear = Limpiar
+bbb.users.emojiStatus.raiseHand = Levantar la mano
+bbb.users.emojiStatus.happy = Contento
+bbb.users.emojiStatus.neutral = Neutral
+bbb.users.emojiStatus.sad = Triste
+bbb.users.emojiStatus.confused = Confundido
+bbb.users.emojiStatus.away = Ausente
+bbb.users.emojiStatus.thumbsUp = Señal de aprobación
+bbb.users.emojiStatus.thumbsDown = Señal de desaprobación
+bbb.users.emojiStatus.applause = Aplauso
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title = Presentación
+bbb.presentation.titleWithPres = Presentación: {0}
+bbb.presentation.quickLink.label = Ventana de Presentación
+bbb.presentation.fitToWidth.toolTip = Ajustar presentación a lo ancho
+bbb.presentation.fitToPage.toolTip = Ajustar presentación a la página
+bbb.presentation.uploadPresBtn.toolTip = Cargar presentación
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip = Diapositiva anterior.
+bbb.presentation.btnSlideNum.accessibilityName = Diapositiva {0} de {1}
+bbb.presentation.btnSlideNum.toolTip = Seleccionar una diapositiva
+bbb.presentation.forwardBtn.toolTip = Siguiente diapositiva
+bbb.presentation.maxUploadFileExceededAlert = Error: El archivo es más grande de lo permitido.
+bbb.presentation.uploadcomplete = Carga completa. Por favor espere mientras se convierte el documento.
+bbb.presentation.uploaded = cargado.
+bbb.presentation.document.supported = El documento cargado es soportado. Iniciando la conversión...
+bbb.presentation.document.converted = La conversión del documento de Office fué exitosa.
+bbb.presentation.error.document.convert.failed = Intenta convertir el archivo a PDF y reintenta subirlo
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io = Error de comunicación: Por favor contacte al administrador.
+bbb.presentation.error.security = Error de seguridad: Por favor contacte al administrador.
+bbb.presentation.error.convert.notsupported = Error: El documento cargado no esta soportado. Por favor, carge un tipo de documento soportado.
+bbb.presentation.error.convert.nbpage = Error: No se pudo determinar el número de páginas del documento cargado.
+bbb.presentation.error.convert.maxnbpagereach = Error: El documento cargado tiene demasiadas páginas.
+bbb.presentation.converted = Convertidas {0} de {1} diapositivas.
+bbb.presentation.slider = Nivel de zoom en la presentación
+bbb.presentation.slideloader.starttext = Texto inicial de la diapositiva
+bbb.presentation.slideloader.endtext = Texto inicial de la diapositiva
+bbb.presentation.uploadwindow.presentationfile = Archivo de presentación
+bbb.presentation.uploadwindow.pdf = PDF
+bbb.presentation.uploadwindow.word = WORD
+bbb.presentation.uploadwindow.excel = EXCEL
+bbb.presentation.uploadwindow.powerpoint = POWERPOINT
+bbb.presentation.uploadwindow.image = IMAGEN
+bbb.presentation.minimizeBtn.accessibilityName = Minimizar la ventana de presentación
+bbb.presentation.maximizeRestoreBtn.accessibilityName = Mazimizar la ventana de presentación
+bbb.presentation.closeBtn.accessibilityName = Cerrar la ventana de presentación
+bbb.fileupload.title = Añadir archivos a tu presentación
+bbb.fileupload.lblFileName.defaultText = No se ha seleccionado archivo
+bbb.fileupload.selectBtn.label = Seleccionar archivo
+bbb.fileupload.selectBtn.toolTip = Abrir venta para seleccionar un archivo
+bbb.fileupload.uploadBtn = Cargar
+bbb.fileupload.uploadBtn.toolTip = Cargar el archivo seleccionado
+bbb.fileupload.deleteBtn.toolTip = Borrar presentación
+bbb.fileupload.showBtn = Mostrar
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip = Mostrar Presentación
+bbb.fileupload.close.tooltip = Cerrar
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText = Generando vistas en miniatura..
+bbb.fileupload.progBarLbl = Progreso:
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip = Cerrar
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title = Chat
+bbb.chat.quickLink.label = Ventana del Chat
+bbb.chat.cmpColorPicker.toolTip = Color del texto
+bbb.chat.input.accessibilityName = Campo para editar el mensaje del chat.
+bbb.chat.sendBtn.toolTip = Enviar Mensaje
+bbb.chat.sendBtn.accessibilityName = Enviar mensaje del chat
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext = Copiar todo el texto
+bbb.chat.publicChatUsername = Todos
+bbb.chat.optionsTabName = Opciones
+bbb.chat.privateChatSelect = Seleccionar a una persona para iniciar un chat privado
+bbb.chat.private.userLeft = El usuario ha salido.
+bbb.chat.private.userJoined = El usuario ha ingresado
+bbb.chat.private.closeMessage = Puede cerrar esta pestaña haciendo uso de la combinación de teclas {0}
+bbb.chat.usersList.toolTip = Seleccione un participante para habrir un chat privado
+bbb.chat.usersList.accessibilityName = Selecciona un usuario para chatear en privado. Usa las flechas de dirección para moverte.
+bbb.chat.chatOptions = Opciones de chat
+bbb.chat.fontSize = Tamaño de la letra del chat
+bbb.chat.cmbFontSize.toolTip = Seleccione el tamaño de letra para mensaje de Chat
+bbb.chat.messageList = Mensajes de chat
+bbb.chat.minimizeBtn.accessibilityName = Minimizar la ventana del chat
+bbb.chat.maximizeRestoreBtn.accessibilityName = Maximizar la ventana del chat
+bbb.chat.closeBtn.accessibilityName = Cerrar a ventana del chat
+bbb.chat.chatTabs.accessibleNotice = Nuevos mensajes en esta pestaña.
+bbb.chat.chatMessage.systemMessage = Sistema
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong = El mensaje demasiado largo por {0} carácter(es)
+bbb.publishVideo.changeCameraBtn.labelText = Cambiar la configuración de la camara
+bbb.publishVideo.changeCameraBtn.toolTip = Abrir la ventana de configuración de la cámara
+bbb.publishVideo.cmbResolution.tooltip = Seleccionar la resolución de la cámara
+bbb.publishVideo.startPublishBtn.labelText = Empezar a compartir
+bbb.publishVideo.startPublishBtn.toolTip = Empezar a compartir cámara
+bbb.publishVideo.startPublishBtn.errorName = No se puede compartir la cámara. Motivo: {0}
+bbb.webcamPermissions.chrome.title = Permisos de Cámara Web en Chrome
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title = Area de video
+bbb.videodock.quickLink.label = Ventana de Cámaras Web
+bbb.video.minimizeBtn.accessibilityName = Minimizar la ventana de área de videos
+bbb.video.maximizeRestoreBtn.accessibilityName = Mazimizar la ventana de área de videos
+bbb.video.controls.muteButton.toolTip = Detener o Activar audio para {0}
+bbb.video.controls.switchPresenter.toolTip = Hacer {0} presentador
+bbb.video.controls.ejectUserBtn.toolTip = Expulsar {0} de la sesión
+bbb.video.controls.privateChatBtn.toolTip = Conversando con {0}
+bbb.video.publish.hint.noCamera = Cámara no disponible
+bbb.video.publish.hint.cantOpenCamera = No se puede abrir la camara
+bbb.video.publish.hint.waitingApproval = Pendiente por aprovación
+bbb.video.publish.hint.videoPreview = Vista previa video
+bbb.video.publish.hint.openingCamera = Abriendo Camara...
+bbb.video.publish.hint.cameraDenied = Acceso denegado a camara
+bbb.video.publish.hint.cameraIsBeingUsed = No se ha podido abrir la cámara web. Puede estar siendo siendo utilizada por otra aplicación.
+bbb.video.publish.hint.publishing = Publicando...
+bbb.video.publish.closeBtn.accessName = Cerrar la ventana de configuraciones de la cámara web
+bbb.video.publish.closeBtn.label = Cancelar
+bbb.video.publish.titleBar = Ventana de iniciación de la cámara web
+bbb.video.streamClose.toolTip = Terminar transmisión para: {0}
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title = Compartir Pantalla: Previsualización del Presentador
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label = Pausa
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip = No puedes maximizar esta ventana.
+bbb.screensharePublish.closeBtn.toolTip = Dejar de compartir y cerrar
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip = Minimizar
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip = Ayuda
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
+bbb.screensharePublish.helpText.PCIE3 =
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
+bbb.screensharePublish.helpText.PCFirefox3 =
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
+bbb.screensharePublish.helpText.LinuxFirefox3 =
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label = Cancelar
+bbb.screensharePublish.startButton.label = Iniciar
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title = Compartir escritorio
+bbb.screenshareView.fitToWindow = Ajustarse a la pantalla
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start = Habilitar el audio (Micrófono o solo escuchar)
+bbb.toolbar.phone.toolTip.stop = Dejar de compartir micrófono
+bbb.toolbar.phone.toolTip.mute = Dejar de escuchar la conferencia
+bbb.toolbar.phone.toolTip.unmute = Empezar a escuchar la conferencia
+bbb.toolbar.phone.toolTip.nomic = No se ha detectado micrófono
+bbb.toolbar.deskshare.toolTip.start = Compartir escritorio
+bbb.toolbar.deskshare.toolTip.stop = Dejar de compartir escritorio
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start = Compartir su cámara Web
+bbb.toolbar.video.toolTip.stop = Dejar de compartir su cámara Web
+bbb.layout.addButton.label = Agregar
+bbb.layout.addButton.toolTip = Añadir el diseño personalizado a la lista
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip = Aplicar diseño actual a todos los espectadores
+bbb.layout.combo.toolTip = Cambiar la alineación de ventanas actual
+bbb.layout.loadButton.toolTip = Cargar diseños de un archivo
+bbb.layout.saveButton.toolTip = Guardar diseños en un archivo
+bbb.layout.lockButton.toolTip = Bloquear diseño
+bbb.layout.combo.prompt = Aplicar diseño
+bbb.layout.combo.custom = *Diseño personalizado
+bbb.layout.combo.customName = Diseño personalizado
+bbb.layout.combo.remote = Remoto
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip = Cerrar
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete = Los diseños fueron guardados exitosamente
+bbb.layout.save.ioerror =
+bbb.layout.load.complete = Los diseños fueron cargados
+bbb.layout.load.failed = Error al cargar diseños
+bbb.layout.sync =
+bbb.layout.name.defaultlayout = Alineación de ventanas por defecto
+bbb.layout.name.closedcaption = Subtitulos
+bbb.layout.name.videochat = Chat de Video
+bbb.layout.name.webcamsfocus = Cámara web
+bbb.layout.name.presentfocus = Presentación
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant = Asistente de conferencia
+bbb.layout.name.lecture = Conferencia
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil = Lápiz
+bbb.highlighter.toolbar.pencil.accessibilityName = Cambiar el cursor a lápiz
+bbb.highlighter.toolbar.ellipse = Círculo
+bbb.highlighter.toolbar.ellipse.accessibilityName = Cambiar cursos a círculo
+bbb.highlighter.toolbar.rectangle = Rectángulo
+bbb.highlighter.toolbar.rectangle.accessibilityName = Cambiar cursos a rectángulo
+bbb.highlighter.toolbar.panzoom = Panorámico y Zoom
+bbb.highlighter.toolbar.panzoom.accessibilityName = Cambiar el cursor a panómarico y zoom
+bbb.highlighter.toolbar.clear = Borrar todas las anotaciones
+bbb.highlighter.toolbar.clear.accessibilityName = Limpiar la página del pizarrón
+bbb.highlighter.toolbar.undo = Deshacer anotación
+bbb.highlighter.toolbar.undo.accessibilityName = Deshacer la última figura de la pizarra
+bbb.highlighter.toolbar.color = Selecccionar Color
+bbb.highlighter.toolbar.color.accessibilityName = Dibujar un color en la pizarra
+bbb.highlighter.toolbar.thickness = Cambiar Grosor
+bbb.highlighter.toolbar.thickness.accessibilityName = Dibujar grosor en la pizarra
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label = OK
+bbb.logout.appshutdown = El servidor de aplicaciones ha sido apagado
+bbb.logout.asyncerror = Un Error de Asincronismo ha ocurrido
+bbb.logout.connectionclosed = La conexión al servidor ha sido cerrada
+bbb.logout.connectionfailed = La conexión al servidor ha terminado
+bbb.logout.rejected = La conexión al servidor ha sido rechazada
+bbb.logout.invalidapp = La aplicación red5 no existe
+bbb.logout.unknown = Su cliente ha perdido conexión con el servidor
+bbb.logout.guestkickedout =
+bbb.logout.usercommand = Usted ha salido de la conferencia
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message = Si esta desconexión no estaba planificada, pulse el botón para reconectar.
+bbb.logout.refresh.label = Reconectar
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok = Correcto
+bbb.settings.cancel = Cancelar
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title = Confirmar Cerrar Sesión
+bbb.logout.confirm.message = ¿Esta seguro que desea cerrar sesión?
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes = Si
+bbb.logout.confirm.no = No
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=Detectando problemas de conectividad
+bbb.connection.reconnecting=Reconectando
+bbb.connection.reestablished=Conexión restablecida
+bbb.connection.bigbluebutton=BigBlueButton
+bbb.connection.sip=SIP
+bbb.connection.video=Video
+bbb.connection.deskshare=Compartir Escritorio
+bbb.notes.title = Notas
+bbb.notes.cmpColorPicker.toolTip = Color de Texto
+bbb.notes.saveBtn = Guardar
+bbb.notes.saveBtn.toolTip = Guardar Nota
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip = Cerrar
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions = Presione Permitir en la ventana emergente para verificar que la compartición del escritorio está funcionando adecuadamente para usted
+bbb.settings.deskshare.start = Revisar Escritorio Compartido
+bbb.settings.voice.volume = Actividad del Micrófono
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label = Error de versión de Flash
+bbb.settings.flash.text = Usted tiene Flash {0} instalado, pero necesita por lo menos la versión {1} para ejecutar BigBlueButton adecuadamente. Haga clic en el botón de abajo para instalar la última versión de Adobe Flash.
+bbb.settings.flash.command = Instalar la versión más reciente de Java
+bbb.settings.isight.label = Error en cámara iSight
+bbb.settings.isight.text =
+bbb.settings.isight.command = Instalar Flash 10.2 RC2
+bbb.settings.warning.label = Advertencia
+bbb.settings.warning.close = Alerta
+bbb.settings.noissues = Ninguna edicion excepcional se ha detectado
+bbb.settings.instructions = Acepte el mensaje de Flash que le pide permisos de cámara. Si usted puede verse y oírse, su navegador se ha configurado correctamente. Otros problemas potenciales se muestran a continuación. Haga clic en cada uno para encontrar una posible solución.
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle = Triángulo
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Cambiar Cursor de Pizarra a Triángulo
+ltbcustom.bbb.highlighter.toolbar.line = Línea
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Cambiar Cursor de pizarra a Línea
+ltbcustom.bbb.highlighter.toolbar.text = Texto
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Cambiar Cursos de pizarra a texto
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Color de texto
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Támaño de fuente
+bbb.caption.window.title = Subtitulos
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner = Ninguno
+bbb.caption.transcript.youowner = Usted
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label = Opciones
+bbb.caption.option.language = Idioma:
+bbb.caption.option.language.tooltip = Seleccionar idioma de subtitulos
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner = Apropiarse
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily = Tipo de letra:
+bbb.caption.option.fontfamily.tooltip = Tipo de letra
+bbb.caption.option.fontsize = Tamaño de letra:
+bbb.caption.option.fontsize.tooltip = Tamaño de letra
+bbb.caption.option.backcolor = Color de fondo:
+bbb.caption.option.backcolor.tooltip = Color de fondo
+bbb.caption.option.textcolor = Color de texto:
+bbb.caption.option.textcolor.tooltip = Color de texto
+
+
+bbb.accessibility.clientReady = Listo
+
+bbb.accessibility.chat.chatBox.reachedFirst = Tu haz llegado al primer mensaje
+bbb.accessibility.chat.chatBox.reachedLatest = Tu haz llegado al último mensaje
+bbb.accessibility.chat.chatBox.navigatedFirst = Tu haz navegado al primer mensaje
+bbb.accessibility.chat.chatBox.navigatedLatest = Tu haz navegado al último mensaje
+bbb.accessibility.chat.chatBox.navigatedLatestRead = Tu haz navegado al mensaje leído más reciente
+bbb.accessibility.chat.chatwindow.input = Entrada del chat
+bbb.accessibility.chat.chatwindow.audibleChatNotification = Sonido de Notificaciones de Chat
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription = Por favor usar las teclas direccionales para navegar a traves de los mensajes del chat.
+
+bbb.accessibility.notes.notesview.input = Entradas de las notas
+
+bbb.shortcuthelp.title = Teclas de acceso directo
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimizar la ventana de accesos rápidos
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Mazimizar la ventana de accesos rápidos
+bbb.shortcuthelp.closeBtn.accessibilityName = Cerrar la ventana de accesos rápidos
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general = Accesos rápidos globales
+bbb.shortcuthelp.dropdown.presentation = Accesos rápidos a la presentación
+bbb.shortcuthelp.dropdown.chat = Acceso rápido al chat
+bbb.shortcuthelp.dropdown.users = Acceso rápido a los usuarios
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut = Acceso Rápido
+bbb.shortcuthelp.headers.function = Función
+
+bbb.shortcutkey.general.minimize = 189
+bbb.shortcutkey.general.minimize.function = Minimizar ventana actual
+bbb.shortcutkey.general.maximize = 187
+bbb.shortcutkey.general.maximize.function = Mazimizar ventana actual
+
+bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit.function = Desenfocar de la ventana de flash
+bbb.shortcutkey.users.muteme = 77
+bbb.shortcutkey.users.muteme.function = Acticar o Desactivar el sonido de tu micrófono
+bbb.shortcutkey.chat.chatinput = 73
+bbb.shortcutkey.chat.chatinput.function = Enfocar el campo de entrada del chat
+bbb.shortcutkey.present.focusslide = 67
+bbb.shortcutkey.present.focusslide.function = Enfocar en la diapositiva de la presentación
+bbb.shortcutkey.whiteboard.undo = 90
+bbb.shortcutkey.whiteboard.undo.function = Deshacer la última marca del pizarrón
+
+bbb.shortcutkey.focus.users = 49
+bbb.shortcutkey.focus.users.function = Mover enfoque a la venta de usuarios
+bbb.shortcutkey.focus.video = 50
+bbb.shortcutkey.focus.video.function = Mover enfoque a la venta de videos
+bbb.shortcutkey.focus.presentation = 51
+bbb.shortcutkey.focus.presentation.function = Mover enfoque a la ventana de presentación
+bbb.shortcutkey.focus.chat = 52
+bbb.shortcutkey.focus.chat.function = Mover enfoque a la venta de chat
+bbb.shortcutkey.focus.caption = 53
+bbb.shortcutkey.focus.caption.function =
+
+bbb.shortcutkey.share.desktop = 68
+bbb.shortcutkey.share.desktop.function = Abrir la ventana de compartir escritorio
+bbb.shortcutkey.share.webcam = 66
+bbb.shortcutkey.share.webcam.function = Abrir ventana para compartir cámara
+
+bbb.shortcutkey.shortcutWindow = 72
+bbb.shortcutkey.shortcutWindow.function = Abrir/Enfocar a la venta de ayuda de accesos rápidos
+bbb.shortcutkey.logout = 76
+bbb.shortcutkey.logout.function = Salir de esta sesión
+bbb.shortcutkey.raiseHand = 82
+bbb.shortcutkey.raiseHand.function = Levantar la mano
+
+bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload.function = Subir presentación
+bbb.shortcutkey.present.previous = 65
+bbb.shortcutkey.present.previous.function = Ir a la diapositiva anterior
+bbb.shortcutkey.present.select = 83
+bbb.shortcutkey.present.select.function = Ver todas las diapositivas
+bbb.shortcutkey.present.next = 69
+bbb.shortcutkey.present.next.function = Ir a la siguiente diapositiva
+bbb.shortcutkey.present.fitWidth = 70
+bbb.shortcutkey.present.fitWidth.function = Ajustar diapositivas a lo ancho
+bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage.function = Ajustar diapositivas en la página
+
+bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter.function = Hacer presentador a la persona seleccionada
+bbb.shortcutkey.users.kick = 69
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute = 83
+bbb.shortcutkey.users.mute.function = Activar o Desactivar sonido de la persona seleccionada
+bbb.shortcutkey.users.muteall = 65
+bbb.shortcutkey.users.muteall.function = Activar o Desactivar sonido a todos los usuarios
+bbb.shortcutkey.users.muteAllButPres = 65
+bbb.shortcutkey.users.muteAllButPres.function = Silenciar a todos excepto al presentador
+bbb.shortcutkey.users.breakoutRooms = 75
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms = 82
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom = 76
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom = 79
+bbb.shortcutkey.users.joinBreakoutRoom.function =
+
+bbb.shortcutkey.chat.focusTabs = 89
+bbb.shortcutkey.chat.focusTabs.function = Enfocar a las pestañas del chat
+bbb.shortcutkey.chat.focusBox = 82
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour = 67
+bbb.shortcutkey.chat.changeColour.function = Enfocar en el seleccionador de color de la fuente
+bbb.shortcutkey.chat.sendMessage = 83
+bbb.shortcutkey.chat.sendMessage.function = Enviar mensaje del chat
+bbb.shortcutkey.chat.closePrivate = 69
+bbb.shortcutkey.chat.closePrivate.function = Cerrar pestaña de chat privado
+bbb.shortcutkey.chat.explanation = ----
+bbb.shortcutkey.chat.explanation.function = Para navegar en el mensaje, tu debes enfocar en la ventana del chat
+
+bbb.shortcutkey.chat.chatbox.advance = 40
+bbb.shortcutkey.chat.chatbox.advance.function = Navegar al siguiente mensaje
+bbb.shortcutkey.chat.chatbox.goback = 38
+bbb.shortcutkey.chat.chatbox.goback.function = Navegar al mensaje anterior
+bbb.shortcutkey.chat.chatbox.repeat = 32
+bbb.shortcutkey.chat.chatbox.repeat.function = Repetir el mensaje actual
+bbb.shortcutkey.chat.chatbox.golatest = 39
+bbb.shortcutkey.chat.chatbox.golatest.function = Navegar al último mensaje
+bbb.shortcutkey.chat.chatbox.gofirst = 37
+bbb.shortcutkey.chat.chatbox.gofirst.function = Navegar al primer mensaje
+bbb.shortcutkey.chat.chatbox.goread = 75
+bbb.shortcutkey.chat.chatbox.goread.function = Navegar al mensaje leído mas reciente
+bbb.shortcutkey.chat.chatbox.debug = 71
+bbb.shortcutkey.chat.chatbox.debug.function = Tecla de acceso rápido para depurar temporalmente
+
+bbb.shortcutkey.caption.takeOwnership = 79
+bbb.shortcutkey.caption.takeOwnership.function =
+
+bbb.polling.startButton.tooltip = Iniciar una encuesta
+bbb.polling.startButton.label = Iniciar encuesta
+bbb.polling.publishButton.label = Publicar
+bbb.polling.closeButton.label = Cerrar
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title = Resultados de la encuesta en tiempo real
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title = Agregar opciones para la encuesta
+bbb.polling.respondersLabel.novotes = Esperando las respuestas
+bbb.polling.respondersLabel.text = {0} Usuarios han respondido
+bbb.polling.respondersLabel.finished = Terminado
+bbb.polling.answer.Yes = Si
+bbb.polling.answer.No = No
+bbb.polling.answer.True = Verdadero
+bbb.polling.answer.False = Falso
+bbb.polling.answer.A = A
+bbb.polling.answer.B = B
+bbb.polling.answer.C = C
+bbb.polling.answer.D = D
+bbb.polling.answer.E = E
+bbb.polling.answer.F = F
+bbb.polling.answer.G = G
+bbb.polling.results.accessible.header = Resultados de la encuesta
+bbb.polling.results.accessible.answer = Respuesta {0} tenía {1} votos.
+
+bbb.publishVideo.startPublishBtn.labelText = Empezar a compartir
+bbb.publishVideo.changeCameraBtn.labelText = Cambiar la configuración de la camara
+
+bbb.accessibility.alerts.madePresenter = Tu eres ahora el presentador.
+bbb.accessibility.alerts.madeViewer = Tu eres ahora un espectador.
+
+bbb.shortcutkey.specialKeys.space = Barra espaciadora
+bbb.shortcutkey.specialKeys.left = Flecha direccional izquierda
+bbb.shortcutkey.specialKeys.right = Flecha direccional derecha
+bbb.shortcutkey.specialKeys.up = Flecha direccional arriba
+bbb.shortcutkey.specialKeys.down = Flecha direccional abajo
+bbb.shortcutkey.specialKeys.plus = Mas
+bbb.shortcutkey.specialKeys.minus = Menos
+
+bbb.toolbar.videodock.toolTip.closeAllVideos = Cerrar todos los videos
+bbb.users.settings.lockAll = Bloquear a todos
+bbb.users.settings.lockAllExcept = Bloquear todos menos presentador
+bbb.users.settings.lockSettings = Bloquear espectadores ...
+bbb.users.settings.breakoutRooms = Sesión de pequeños gupos...
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll = Desbloquear a todos los espectadores
+bbb.users.settings.roomIsLocked = Bloqueado por defecto
+bbb.users.settings.roomIsMuted = Silenciado por defecto
+
+bbb.lockSettings.save = Aplicar
+bbb.lockSettings.save.tooltip = Aplicar configuración de bloqueo
+bbb.lockSettings.cancel = Cancelar
+bbb.lockSettings.cancel.toolTip = Cerrar sin guardar
+
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking = Bloqueo moderador
+bbb.lockSettings.privateChat = Chat privado
+bbb.lockSettings.publicChat = Chat público
+bbb.lockSettings.webcam = Cámara web
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone = Micrófono
+bbb.lockSettings.layout = Alineación de ventanas
+bbb.lockSettings.title=Bloquear espectadores
+bbb.lockSettings.feature=Característica
+bbb.lockSettings.locked=Bloqueado
+bbb.lockSettings.lockOnJoin=Unirse
+
+bbb.users.breakout.breakoutRooms = Sesión de pequeños gupos
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime = Calculando tiempo restante ....
+bbb.users.breakout.closing = Cerrando
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms = Sesiones
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room = Sesión
+bbb.users.breakout.timeLimit = Límite de tiempo
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes = Minutos
+bbb.users.breakout.record = Grabar
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned = No asignado
+bbb.users.breakout.dragAndDropToolTip = Consejo: Puedes arrastarr y soltar usuarios entre los cuartos
+bbb.users.breakout.start = Iniciar
+bbb.users.breakout.invite =
+bbb.users.breakout.close = Cerrar
+bbb.users.breakout.closeAllRooms = Cerrar todas las sesiones de pequeños grupos
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip = Cerrar
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room = Sesión
+bbb.users.roomsGrid.users = Usuarios
+bbb.users.roomsGrid.action = Acción
+bbb.users.roomsGrid.transfer = Transferir audio
+bbb.users.roomsGrid.join = Ingresar
+bbb.users.roomsGrid.noUsers = No hay usuarios en esta sesión
+
+bbb.langSelector.default=
+
+bbb.alert.cancel = Cancelar
+bbb.alert.ok = Correcto
+bbb.alert.no = No
+bbb.alert.yes = Si
diff --git a/bigbluebutton-client/locale/es_CL/bbbResources.properties b/bigbluebutton-client/locale/es_CL/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/es_CL/bbbResources.properties
+++ b/bigbluebutton-client/locale/es_CL/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/es_ES/bbbResources.properties b/bigbluebutton-client/locale/es_ES/bbbResources.properties
index d8c01676c712..b75e0c7b4606 100644
--- a/bigbluebutton-client/locale/es_ES/bbbResources.properties
+++ b/bigbluebutton-client/locale/es_ES/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Conectando con el servidor
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = Cargando
bbb.mainshell.statusProgress.cannotConnectServer = Lo sentimos, no es posible conectar con el servidor.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Abrir ventana de histórico
@@ -10,17 +10,17 @@ bbb.mainshell.resetLayoutBtn.toolTip = Reiniciar diseño de ventanas
bbb.mainshell.notification.tunnelling = Túnel
bbb.mainshell.notification.webrtc = Audio WebRTC
bbb.mainshell.fullscreenBtn.toolTip = Alternar pantalla completa
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
+bbb.mainshell.quote.sentence.1 = No hay secretos para el éxito. Es el resultado de prepararse, trabajar duro y aprender del fracaso.
bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
+bbb.mainshell.quote.sentence.2 = Dime y lo olvido. Enséñame y lo recuerdo. Involucrarme y aprendo.
bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
+bbb.mainshell.quote.sentence.3 = Aprendí el valor del trabajo duro trabajando duro.
bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
+bbb.mainshell.quote.sentence.4 = Desarrolla una pasión por aprender. Si lo haces, nunca dejarás de crecer.
bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
+bbb.mainshell.quote.sentence.5 = Investigar es crear conocimiento nuevo.
bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = Puede que tenga una traducción obsoleta de BigBlueButton.
+bbb.oldlocalewindow.reminder1 = Puede ser que tenga una traducción obsoleta de BigBlueButton.
bbb.oldlocalewindow.reminder2 = Por favor, vacíe el caché de su navegador, e inténtelo de nuevo.
bbb.oldlocalewindow.windowTitle = Aviso: traducción de idioma obsoleta
bbb.audioSelection.title = ¿Cómo quiere conectarse al audio?
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = Conectando
bbb.micSettings.webrtc.transferring = Transfiriendo
bbb.micSettings.webrtc.endingecho = Uniéndose al audio
bbb.micSettings.webrtc.endedecho = Test de Eco finalizado.
+bbb.micPermissions.message.browserhttp = Este servidor no está configurado con SSL. Por ello, {0} inhabilita la compartición de tu micrófono.
bbb.micPermissions.firefox.title = Permisos de Micrófono de Firefox
bbb.micPermissions.firefox.message = Click permite a Firefox utilizar el micrófono.
bbb.micPermissions.chrome.title = Permisos de Micrófono de Chrome
@@ -100,7 +101,7 @@ bbb.inactivityWarning.cancel = Cancelar
bbb.mainToolbar.helpBtn = Ayuda
bbb.mainToolbar.logoutBtn = Desconectar
bbb.mainToolbar.logoutBtn.toolTip = Salir
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn = {0} | Reinicie el reloj para forzar la salida
bbb.mainToolbar.langSelector = Seleccione idioma
bbb.mainToolbar.settingsBtn = Configuración
bbb.mainToolbar.settingsBtn.toolTip = Abrir configuración
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Esta sesión no puede ser grabada
bbb.mainToolbar.recordBtn.confirm.title = Confirme grabación
bbb.mainToolbar.recordBtn.confirm.message.start = ¿Está seguro de querer empezar a grabar la sesión?
bbb.mainToolbar.recordBtn.confirm.message.stop = ¿Está seguro de querer detener la grabación de la sesión?
-bbb.mainToolbar.recordBtn..notification.title = Notificación de grabación
-bbb.mainToolbar.recordBtn..notification.message1 = Puede grabar esta reunión.
-bbb.mainToolbar.recordBtn..notification.message2 = Debe pulsar el botón Iniciar/Detener Grabación de la barra de título para iniciar/detener la grabación.
+bbb.mainToolbar.recordBtn.notification.title = Notificación de grabación
+bbb.mainToolbar.recordBtn.notification.message1 = Puede grabar esta reunión.
+bbb.mainToolbar.recordBtn.notification.message2 = Debe pulsar el botón Iniciar/Detener Grabación de la barra de título para iniciar/detener la grabación.
bbb.mainToolbar.recordingLabel.recording = (Grabando)
bbb.mainToolbar.recordingLabel.notRecording = No se está grabando
bbb.waitWindow.waitMessage.message = Eres un invitado. Porfavor espera que un moderador te apruebe
@@ -183,7 +184,7 @@ bbb.users.muteMeBtnTxt.muted = Silenciado
bbb.users.usersGrid.contextmenu.exportusers = Copiar nombres de usuario
bbb.users.usersGrid.accessibilityName = Lista de asistentes. Usar las teclas de dirección para navegar.
bbb.users.usersGrid.nameItemRenderer = Nombre
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = tu
+bbb.users.usersGrid.nameItemRenderer.youIdentifier = usted
bbb.users.usersGrid.statusItemRenderer = Estado
bbb.users.usersGrid.statusItemRenderer.changePresenter = Haga click para cambiar a presentador
bbb.users.usersGrid.statusItemRenderer.presenter = Presentador
@@ -212,9 +213,9 @@ bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam compartida
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Hacer click para ver la cámara
bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Hacer click para activar el audio al asistente
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Hacer click para desactivar el audio al asistente
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Bloqueado {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Desbloqueado {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Expulsar al asistente
+bbb.users.usersGrid.mediaItemRenderer.pushToLock = Bloquear {0}
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Desbloquear {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser = Expulsar {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam compartida
bbb.users.usersGrid.mediaItemRenderer.micOff = Micrófono inactivo
bbb.users.usersGrid.mediaItemRenderer.micOn = Micrófono activo
@@ -246,6 +247,7 @@ bbb.presentation.fitToWidth.toolTip = Ajustar presentación a lo ancho
bbb.presentation.fitToPage.toolTip = Ajustar presentación a la página
bbb.presentation.uploadPresBtn.toolTip = Cargar documento para la presentación.
bbb.presentation.downloadPresBtn.toolTip = Descargar presentaciones
+bbb.presentation.poll.response = Responder a la encuesta
bbb.presentation.backBtn.toolTip = Diapositiva anterior.
bbb.presentation.btnSlideNum.accessibilityName = Diapositiva {0} de {1}
bbb.presentation.btnSlideNum.toolTip = Hacer click para seleccionar una diapositiva
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Carga completa. Por favor espere mientras conv
bbb.presentation.uploaded = cargado.
bbb.presentation.document.supported = El documento cargado está soportado. Comenzando la conversión...
bbb.presentation.document.converted = Documento convertido con éxito.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed = Intente convertir el documento a PDF y cargarlo de nuevo
bbb.presentation.error.document.convert.invalid = Por favor convierta este documento a PDF primero.
bbb.presentation.error.io = Error E/S: contacte con el Administrador.
bbb.presentation.error.security = Error de seguridad: por favor, contacte con el Administrador.
@@ -283,18 +285,18 @@ bbb.fileupload.uploadBtn = Cargar
bbb.fileupload.uploadBtn.toolTip = Cargar archivo
bbb.fileupload.deleteBtn.toolTip = Eliminar presentación
bbb.fileupload.showBtn = Mostrar
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = Intenta con otro archivo
bbb.fileupload.showBtn.toolTip = Mostrar presentación
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = Cerrar
+bbb.fileupload.close.accessibilityName = Cerrar la ventana para cargar archivo
bbb.fileupload.genThumbText = Generando miniaturas...
bbb.fileupload.progBarLbl = Progreso:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
+bbb.fileupload.fileFormatHint = Puede cargar cualquier documento de Office o Portable Document Format (PDF). Obtendrá mejores resultados con PDF.
bbb.fileupload.letUserDownload = Habilitar descarga de presentación
bbb.fileupload.letUserDownload.tooltip = Haga click aqui si quiere que los otros usuarios puedan descargar su presentación
bbb.filedownload.title = Descargar las presentaciones
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
+bbb.filedownload.close.tooltip = Cerrar
+bbb.filedownload.close.accessibilityName = Cerrar ventana para descargar archivo
bbb.filedownload.fileLbl = Selecciona el fichero a descargar
bbb.filedownload.downloadBtn = Descargar
bbb.filedownload.downloadBtn.toolTip = Descargar presentación
@@ -309,6 +311,7 @@ bbb.chat.saveBtn.toolTip = Guardar chat
bbb.chat.saveBtn.accessibilityName = Guardar el chat en un fichero
bbb.chat.saveBtn.label = Guardar
bbb.chat.save.complete = Chat fue guardado con éxito
+bbb.chat.save.ioerror = Chat no guardado. Inténtalo de nuevo.
bbb.chat.save.filename = Chat público
bbb.chat.copyBtn.toolTip = Copiar chat
bbb.chat.copyBtn.accessibilityName = Copiar el chat al portapapeles
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Cerrar la ventana de configuraciones de
bbb.video.publish.closeBtn.label = Cancelar
bbb.video.publish.titleBar = Ventana de iniciación de la cámara web
bbb.video.streamClose.toolTip = Cerrar emisión de: {0}
+bbb.video.message.browserhttp = Este servidor no está configurado con SSL. Por ello, {0} impide que compartas tu webcam.
bbb.screensharePublish.title = Compartir Pantalla: Previsualización del Presentador
bbb.screensharePublish.pause.tooltip = Pausar la compartición de pantalla
bbb.screensharePublish.pause.label = Pausa
@@ -446,6 +450,7 @@ bbb.toolbar.deskshare.toolTip.stop = Parar de Compartir tu Pantalla
bbb.toolbar.sharednotes.toolTip = Abrir notas compartidas
bbb.toolbar.video.toolTip.start = Compartir su Cámara
bbb.toolbar.video.toolTip.stop = Dejar de compartir su Cámara
+bbb.layout.addButton.label = Añadir
bbb.layout.addButton.toolTip = Añadir el diseño personalizado a la lista
bbb.layout.overwriteLayoutName.title = Sobrescribir el diseño
bbb.layout.overwriteLayoutName.text = Nombre se encuentra en uso. ¿Quiere sobrescribirlo?
@@ -459,7 +464,10 @@ bbb.layout.combo.custom = * Diseño a medida
bbb.layout.combo.customName = Diseño a medida
bbb.layout.combo.remote = Remota
bbb.layout.window.name = Nombre del diseño
+bbb.layout.window.close.tooltip = Cerrar
+bbb.layout.window.close.accessibilityName = Cerrar la ventana de añadir disposición
bbb.layout.save.complete = Disposiciones guardadas con éxito
+bbb.layout.save.ioerror = Disposición no guardada. Inténtalo de nuevo.
bbb.layout.load.complete = Disposiciones cargadas con éxito
bbb.layout.load.failed = No se pudieron cargar los diseños
bbb.layout.sync = Has sido enviado a "todos los participantes"
@@ -468,7 +476,7 @@ bbb.layout.name.closedcaption = Subtítulos
bbb.layout.name.videochat = Chat de Video
bbb.layout.name.webcamsfocus = Reunión por Webcam
bbb.layout.name.presentfocus = Reunión de Presentación
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers = Presentación + Usuarios
bbb.layout.name.lectureassistant = Asistente de Conferencia
bbb.layout.name.lecture = Conferencia
bbb.layout.name.sharednotes = Notas compartidas
@@ -493,7 +501,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Dibujar un color en la pizarra
bbb.highlighter.toolbar.thickness = Modificar el grosor de línea
bbb.highlighter.toolbar.thickness.accessibilityName = Dibujar grosor en la pizarra
bbb.highlighter.toolbar.multiuser = Dibujo multiusuarios
-bbb.logout.title = Desconectado
bbb.logout.button.label = OK
bbb.logout.appshutdown = La aplicación de servidor ha sido detenida
bbb.logout.asyncerror = Ha ocurrido un error asíncrono
@@ -505,9 +512,11 @@ bbb.logout.unknown = Se ha perdido la conexión con el servidor
bbb.logout.guestkickedout = El moderador no te permitió ingresar a esta sesión
bbb.logout.usercommand = Ha desconectado de la conferencia
bbb.logour.breakoutRoomClose = La ventana de tu navegador se cerrará
-bbb.logout.ejectedFromMeeting = Un moderador te ha expulsado de la reunión.
+bbb.logout.ejectedFromMeeting = Has sido expulsado de la reunión
bbb.logout.refresh.message = Si esta desconexión no estaba planificada, pulse el botón para reconectar.
bbb.logout.refresh.label = Reconectar
+bbb.logout.feedback.hint = ¿Cómo podemos mejorar BigBlueButton?
+bbb.logout.feedback.label = Nos encantaría escuchar tu opinión sobre BigBlueButton (opcional)
bbb.settings.title = Configuración
bbb.settings.ok = OK
bbb.settings.cancel = Cancelar
@@ -532,32 +541,33 @@ bbb.notes.saveBtn = Guardar
bbb.notes.saveBtn.toolTip = Guardar Nota
bbb.sharedNotes.title = Notas compartidas
bbb.sharedNotes.quickLink.label = Ventana de notas compartidas
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
+bbb.sharedNotes.createNoteWindow.label = Nombre de nota compartida
+bbb.sharedNotes.createNoteWindow.close.tooltip = Cerrar
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Cerrar creación de nueva nota compartida
bbb.sharedNotes.typing.single = {0} está tecleando...
bbb.sharedNotes.typing.double = {0} y {1} estan tecleando...
bbb.sharedNotes.typing.multiple = Varias personas están tecleando ...
bbb.sharedNotes.save.toolTip = Guardar notas en un fichero
bbb.sharedNotes.save.complete = Notas guardadas con éxito
+bbb.sharedNotes.save.ioerror = Notas no guardadas. Inténtalo de nuevo.
bbb.sharedNotes.save.htmlLabel = Dar formato al texto (.html)
bbb.sharedNotes.save.txtLabel = Texto (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
+bbb.sharedNotes.new.label = Crear
+bbb.sharedNotes.new.toolTip = Crear un bloque adicional de notas compartidas
+bbb.sharedNotes.limit.label = El límite para notas compartidas ha sido alcanzado
+bbb.sharedNotes.clear.label = Limpiar esta nota compartida
bbb.sharedNotes.undo.toolTip = Deshacer modificación
bbb.sharedNotes.redo.toolTip = Rehacer modificación
bbb.sharedNotes.toolbar.toolTip = Barra de herramientas para formato de texto
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
+bbb.sharedNotes.settings.toolTip = Configuración de notas compartidas
+bbb.sharedNotes.clearWarning.title = Limpiar notas compartidas
+bbb.sharedNotes.clearWarning.message = Esta acción limpiara las notas compartidas en esta ventana para todos los usuarios y no hay forma de deshacer la operación. Esta seguro de querer limpiar estas notas compartidas?
bbb.sharedNotes.additionalNotes.closeWarning.title = Cerrando notas compartidas
bbb.sharedNotes.additionalNotes.closeWarning.message = Esta acción destruirá las notas en la ventana afectando a todos los usuarios y no hay forma de recuperarlas. ¿Esta seguro de cerrar estas notas?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.messageLengthWarning.title = El límite para cambio de caracteres se ha exedido
+bbb.sharedNotes.messageLengthWarning.text = El cambio excede el límite por {0}. Intente haciendo un cambio más pequelo.
+bbb.sharedNotes.remaining.tooltip = Espacio disponible restante en notas compartidas
+bbb.sharedNotes.full.tooltip = El límite se a alcanzado (intente eliminando parte del texto)
bbb.settings.deskshare.instructions = Presione Permitir en el aviso para verificar que la compartición del escritorio está funcionando correctamente para usted
bbb.settings.deskshare.start = Comprobar Compartición de Escritorio
bbb.settings.voice.volume = Actividad del micrófono
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Ajustar diapositivas en la página
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Hacer presentador a la persona seleccionada
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Expulsar a la persona seleccionada de la reunión
+bbb.shortcutkey.users.kick.function = Expulsar a la persona seleccionada de la reunión
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Activar o Desactivar sonido de la persona seleccionada
bbb.shortcutkey.users.muteall = 65
@@ -710,13 +720,13 @@ bbb.shortcutkey.users.muteall.function = Activar o Desactivar sonido a todos los
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Silenciar a todos excepto al presentador
bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Ventana de Salas de Espera
+bbb.shortcutkey.users.breakoutRooms.function = Ventana de salas de grupo
bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Poner el foco en la lista de salas de espera
+bbb.shortcutkey.users.focusBreakoutRooms.function = Poner el foco en la lista de salas de grupo
bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Escuchar la sala de espera seleccionada
+bbb.shortcutkey.users.listenToBreakoutRoom.function = Escuchar la sala de grupo seleccionada
bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Unirse a la sala de espera seleccionada
+bbb.shortcutkey.users.joinBreakoutRoom.function = Unirse a la sala de grupo seleccionada
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Enfocar a las pestañas del chat
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Publicar
bbb.polling.closeButton.label = Cerrar
bbb.polling.customPollOption.label = Encuesta a Medida...
bbb.polling.pollModal.title = Resultados en vivo
+bbb.polling.pollModal.hint = Deja esta ventana abierta para permitir que los estudiantes puedan contestar a la encuesta. Pulsar el botón Publicar o Cerrar finalizará la encuesta.
bbb.polling.customChoices.title = Opciones de la encuesta
bbb.polling.respondersLabel.novotes = Esperando respuestas
bbb.polling.respondersLabel.text = {0} Usuarios han respondido
@@ -792,7 +803,7 @@ bbb.users.settings.lockAll = Bloquear a todos los usuarios
bbb.users.settings.lockAllExcept = Bloquear usuarios salvo el presentador
bbb.users.settings.lockSettings = Bloquear Audiencia ...
bbb.users.settings.breakoutRooms = Sala de grupo ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Enviar Invitaciones a salas de espera ...
+bbb.users.settings.sendBreakoutRoomsInvitations = Enviar invitaciones a salas de grupo ...
bbb.users.settings.unlockAll = Desbloquear toda la audiencia
bbb.users.settings.roomIsLocked = Bloqueado por defecto
bbb.users.settings.roomIsMuted = Silenciado por defecto
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Aplicar ajustes de bloqueo
bbb.lockSettings.cancel = Cancelar
bbb.lockSettings.cancel.toolTip = Cerrar ventana sin guardar
+bbb.lockSettings.hint = Estas opciones te permiten restringir ciertas opciones disponibles a los visitantes, como bloquear su capacidad parta abrir chats privados. (Los moderadores no se ven afectados por estas restricciones)
bbb.lockSettings.moderatorLocking = Bloqueo de moderador
bbb.lockSettings.privateChat = Chat privado
bbb.lockSettings.publicChat = Chat público
bbb.lockSettings.webcam = Cámara
+bbb.lockSettings.webcamsOnlyForModerator = Ocultar las webcam de otros asistentes
bbb.lockSettings.microphone = Micrófono
bbb.lockSettings.layout = Diseño
bbb.lockSettings.title=Bloquear audiencia
@@ -814,19 +827,20 @@ bbb.lockSettings.locked=Bloqueado
bbb.lockSettings.lockOnJoin=Bloquear al unirse
bbb.users.breakout.breakoutRooms = Salas de grupo
-bbb.users.breakout.updateBreakoutRooms = Actualizar salas de espera
-bbb.users.breakout.timer.toolTip = Tiempo restante para las salas de espera
+bbb.users.breakout.updateBreakoutRooms = Actualizar salas de grupo
+bbb.users.breakout.timerForRoom.toolTip = Tiempo restante en esta sala de espera
+bbb.users.breakout.timer.toolTip = Tiempo restante para las salas de grupo
bbb.users.breakout.calculatingRemainingTime = Calculando tiempo restante...
bbb.users.breakout.closing = Cerrando
+bbb.users.breakout.closewarning.text = Las salas de espera se cerrarán en un minuto.
bbb.users.breakout.rooms = Salas
bbb.users.breakout.roomsCombo.accessibilityName = Número de salas a crear
bbb.users.breakout.room = Sala
-bbb.users.breakout.randomAssign = Asignar usuarios de forma aleatoria
bbb.users.breakout.timeLimit = Límite de tiempo
bbb.users.breakout.durationStepper.accessibilityName = Límite de tiempo en minutos
bbb.users.breakout.minutes = Minutos
bbb.users.breakout.record = Grabar
-bbb.users.breakout.recordCheckbox.accessibilityName = Grabar salas de espera
+bbb.users.breakout.recordCheckbox.accessibilityName = Grabar salas de grupo
bbb.users.breakout.notAssigned = No asignado
bbb.users.breakout.dragAndDropToolTip = Truco: puedes arrastrar y soltar usuarios entre salas
bbb.users.breakout.start = Iniciar
@@ -834,13 +848,13 @@ bbb.users.breakout.invite = Invitar
bbb.users.breakout.close = Cerrar
bbb.users.breakout.closeAllRooms = Cerrar todas las salas de grupo
bbb.users.breakout.insufficientUsers = Usuarios insuficientes. Debes situar al menos a un usuario en una sala de grupo
-bbb.users.breakout.confirm = Ingresar a una sesión de pequeños grupos
-bbb.users.breakout.invited = Usted ha sido invitado a ingresar a una sesión de pequeños grupos
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
+bbb.users.breakout.confirm = Ingresar a una sala de grupo
+bbb.users.breakout.invited = Usted ha sido invitado a ingresar a una sala de grupo
+bbb.users.breakout.accept = Al aceptarse, abandonará automáticamente el audio y video.
bbb.users.breakout.joinSession = Ingresar a la sesión
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
+bbb.users.breakout.joinSession.accessibilityName = Ingresar a la sala de grupos
+bbb.users.breakout.joinSession.close.tooltip = Cerrar
+bbb.users.breakout.joinSession.close.accessibilityName = Cerrar ingreso a la sala de grupo
bbb.users.breakout.youareinroom = Se encuentra en sesión de pequeños grupos {0}
bbb.users.roomsGrid.room = Sala
bbb.users.roomsGrid.users = Usuarios
@@ -850,54 +864,8 @@ bbb.users.roomsGrid.join = Unirse
bbb.users.roomsGrid.noUsers = Sin usuarios en esta sala
bbb.langSelector.default=Idioma por defecto
-bbb.langSelector.ar=Arabe
-bbb.langSelector.az_AZ=Azerbaiyano
-bbb.langSelector.eu_EU=Basco
-bbb.langSelector.bn_BN=Bengalí
-bbb.langSelector.bg_BG=Bulgaro
-bbb.langSelector.ca_ES=Catalán
-bbb.langSelector.zh_CN=Chino (Simplificado)
-bbb.langSelector.zh_TW=Chino (Tradicional)
-bbb.langSelector.hr_HR=Croata
-bbb.langSelector.cs_CZ=Checo
-bbb.langSelector.da_DK=Danés
-bbb.langSelector.nl_NL=Holandés
-bbb.langSelector.en_US=Inglés
-bbb.langSelector.et_EE=Estonio
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finlandés
-bbb.langSelector.fr_FR=Francés
-bbb.langSelector.fr_CA=Francés (Canadiense)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=Alemán
-bbb.langSelector.el_GR=Griego
-bbb.langSelector.he_IL=Hebreo
-bbb.langSelector.hu_HU=Hungaro
-bbb.langSelector.id_ID=Indonesio
-bbb.langSelector.it_IT=Italiano
-bbb.langSelector.ja_JP=Japonés
-bbb.langSelector.ko_KR=Coreano
-bbb.langSelector.lv_LV=Letón
-bbb.langSelector.lt_LT=Lituano
-bbb.langSelector.mn_MN=Mongol
-bbb.langSelector.ne_NE=Nepalí
-bbb.langSelector.no_NO=Noruego
-bbb.langSelector.pl_PL=Polaco
-bbb.langSelector.pt_BR=Portugues (Brasileño)
-bbb.langSelector.pt_PT=Portugues
-bbb.langSelector.ro_RO=Rumano
-bbb.langSelector.ru_RU=Ruso
-bbb.langSelector.sr_SR=Serbio (cirílico)
-bbb.langSelector.sr_RS=Serbio (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Eslovaco
-bbb.langSelector.sl_SL=Esloveno
-bbb.langSelector.es_ES=Español
-bbb.langSelector.es_LA=Español (América Latina)
-bbb.langSelector.sv_SE=Sueco
-bbb.langSelector.th_TH=Tailandés
-bbb.langSelector.tr_TR=Turco
-bbb.langSelector.uk_UA=Ucraniano
-bbb.langSelector.vi_VN=Vietnamita
-bbb.langSelector.cy_GB=Galés
-bbb.langSelector.oc=Occitano
+
+bbb.alert.cancel = Cancelar
+bbb.alert.ok = OK
+bbb.alert.no = No
+bbb.alert.yes = Si
diff --git a/bigbluebutton-client/locale/es_LA/bbbResources.properties b/bigbluebutton-client/locale/es_LA/bbbResources.properties
index c34243f82b5f..fe87e9ff650a 100644
--- a/bigbluebutton-client/locale/es_LA/bbbResources.properties
+++ b/bigbluebutton-client/locale/es_LA/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Conectando al servidor
-bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.loading = Cargando
bbb.mainshell.statusProgress.cannotConnectServer = Lo sentimos, no se puede conectar al servidor.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (versión {0})
bbb.mainshell.logBtn.toolTip = Abrir la ventana de Registro (Log)
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = Conectando
bbb.micSettings.webrtc.transferring = transfiriendo
bbb.micSettings.webrtc.endingecho = Conectandose a audio
bbb.micSettings.webrtc.endedecho = La prueba de eco terminada.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Permisos de micrófono en Firefox
bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Permisos de micrófono en Chrome
@@ -96,7 +97,7 @@ bbb.webrtcWarning.connection.reestablished = Conexión WebRTC reestablecida
bbb.inactivityWarning.title =
bbb.inactivityWarning.message =
bbb.shuttingDown.message =
-bbb.inactivityWarning.cancel =
+bbb.inactivityWarning.cancel = Cancelar
bbb.mainToolbar.helpBtn = Ayuda
bbb.mainToolbar.logoutBtn = Cerrar sesión
bbb.mainToolbar.logoutBtn.toolTip = Cerrar sesión
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Confirmar grabación
bbb.mainToolbar.recordBtn.confirm.message.start = ¿Está seguro que desea iniciar la grabación de la sesión?
bbb.mainToolbar.recordBtn.confirm.message.stop = ¿Está seguro que desea detener la grabación de la sesión?
-bbb.mainToolbar.recordBtn..notification.title = Notificación de grabación
-bbb.mainToolbar.recordBtn..notification.message1 = Usted puede grabar esta sesión.
-bbb.mainToolbar.recordBtn..notification.message2 = Debe hacer click en el botón Iniciar/Detener Grabación en la barra de título para empezar o dejar de grabar.
+bbb.mainToolbar.recordBtn.notification.title = Notificación de grabación
+bbb.mainToolbar.recordBtn.notification.message1 = Usted puede grabar esta sesión.
+bbb.mainToolbar.recordBtn.notification.message2 = Debe hacer click en el botón Iniciar/Detener Grabación en la barra de título para empezar o dejar de grabar.
bbb.mainToolbar.recordingLabel.recording = (Grabación)
bbb.mainToolbar.recordingLabel.notRecording = No grabando
bbb.waitWindow.waitMessage.message =
@@ -214,7 +215,7 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Activar audio a {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Desactivar audio a {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Bloquear {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Desbloquear {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Expulsar {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Compartiendo cámara Web
bbb.users.usersGrid.mediaItemRenderer.micOff = Micrófono apagado
bbb.users.usersGrid.mediaItemRenderer.micOn = Micrófono encendido
@@ -256,7 +257,7 @@ bbb.presentation.uploadcomplete = Carga completa. Por favor espere mientras se c
bbb.presentation.uploaded = cargado.
bbb.presentation.document.supported = El documento cargado es soportado. Iniciando la conversión...
bbb.presentation.document.converted = La conversión del documento de Office fué exitosa.
-bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.failed = Intenta convertir el archivo a PDF y reintenta subirlo
bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Error de comunicación: Por favor contacte al administrador.
bbb.presentation.error.security = Error de seguridad: Por favor contacte al administrador.
@@ -286,7 +287,7 @@ bbb.fileupload.deleteBtn.toolTip = Borrar presentación
bbb.fileupload.showBtn = Mostrar
bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Mostrar Presentación
-bbb.fileupload.close.tooltip =
+bbb.fileupload.close.tooltip = Cerrar
bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Generando vistas en miniatura..
bbb.fileupload.progBarLbl = Progreso:
@@ -294,7 +295,7 @@ bbb.fileupload.fileFormatHint =
bbb.fileupload.letUserDownload =
bbb.fileupload.letUserDownload.tooltip =
bbb.filedownload.title =
-bbb.filedownload.close.tooltip =
+bbb.filedownload.close.tooltip = Cerrar
bbb.filedownload.close.accessibilityName =
bbb.filedownload.fileLbl =
bbb.filedownload.downloadBtn =
@@ -378,7 +379,7 @@ bbb.screensharePublish.restart.label =
bbb.screensharePublish.maximizeRestoreBtn.toolTip = No puedes maximizar esta ventana.
bbb.screensharePublish.closeBtn.toolTip = Dejar de compartir y cerrar
bbb.screensharePublish.closeBtn.accessibilityName =
-bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.toolTip = Minimizar
bbb.screensharePublish.minimizeBtn.accessibilityName =
bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
bbb.screensharePublish.commonHelpText.text =
@@ -421,7 +422,7 @@ bbb.screensharePublish.jwsCrashed.label =
bbb.screensharePublish.commonErrorMessage.label =
bbb.screensharePublish.tunnelingErrorMessage.one =
bbb.screensharePublish.tunnelingErrorMessage.two =
-bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.cancelButton.label = Cancelar
bbb.screensharePublish.startButton.label = Iniciar
bbb.screensharePublish.stopButton.label =
bbb.screensharePublish.stopButton.toolTip =
@@ -434,12 +435,12 @@ bbb.screensharePublish.WebRTCUseJavaButton.label =
bbb.screensharePublish.WebRTCVideoLoading.label =
bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Compartir escritorio
-bbb.screenshareView.fitToWindow =
+bbb.screenshareView.fitToWindow = Ajustarse a la pantalla
bbb.screenshareView.actualSize =
bbb.screenshareView.minimizeBtn.accessibilityName =
bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
bbb.screenshareView.closeBtn.accessibilityName =
-bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.start = Habilitar el audio (Micrófono o solo escuchar)
bbb.toolbar.phone.toolTip.stop = Dejar de compartir micrófono
bbb.toolbar.phone.toolTip.mute = Dejar de escuchar la conferencia
bbb.toolbar.phone.toolTip.unmute = Empezar a escuchar la conferencia
@@ -449,7 +450,7 @@ bbb.toolbar.deskshare.toolTip.stop = Dejar de compartir escritorio
bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Compartir su cámara Web
bbb.toolbar.video.toolTip.stop = Dejar de compartir su cámara Web
-bbb.layout.addButton.label =
+bbb.layout.addButton.label = Agregar
bbb.layout.addButton.toolTip = Añadir el diseño personalizado a la lista
bbb.layout.overwriteLayoutName.title =
bbb.layout.overwriteLayoutName.text =
@@ -463,7 +464,7 @@ bbb.layout.combo.custom = *Diseño personalizado
bbb.layout.combo.customName = Diseño personalizado
bbb.layout.combo.remote = Remoto
bbb.layout.window.name =
-bbb.layout.window.close.tooltip =
+bbb.layout.window.close.tooltip = Cerrar
bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Los diseños fueron guardados exitosamente
bbb.layout.save.ioerror =
@@ -500,7 +501,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Dibujar un color en la pizarra
bbb.highlighter.toolbar.thickness = Cambiar Grosor
bbb.highlighter.toolbar.thickness.accessibilityName = Dibujar grosor en la pizarra
bbb.highlighter.toolbar.multiuser =
-bbb.logout.title = Sesión terminada
bbb.logout.button.label = OK
bbb.logout.appshutdown = El servidor de aplicaciones ha sido apagado
bbb.logout.asyncerror = Un Error de Asincronismo ha ocurrido
@@ -512,12 +512,14 @@ bbb.logout.unknown = Su cliente ha perdido conexión con el servidor
bbb.logout.guestkickedout =
bbb.logout.usercommand = Usted ha salido de la conferencia
bbb.logour.breakoutRoomClose =
-bbb.logout.ejectedFromMeeting = Un moderador te ha sacado de la conferencia
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Si esta desconexión no estaba planificada, pulse el botón para reconectar.
bbb.logout.refresh.label = Reconectar
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
bbb.settings.title =
-bbb.settings.ok =
-bbb.settings.cancel =
+bbb.settings.ok = Correcto
+bbb.settings.cancel = Cancelar
bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Confirmar Cerrar Sesión
bbb.logout.confirm.message = ¿Esta seguro que desea cerrar sesión?
@@ -540,7 +542,7 @@ bbb.notes.saveBtn.toolTip = Guardar Nota
bbb.sharedNotes.title =
bbb.sharedNotes.quickLink.label =
bbb.sharedNotes.createNoteWindow.label =
-bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.tooltip = Cerrar
bbb.sharedNotes.createNoteWindow.close.accessibilityName =
bbb.sharedNotes.typing.single =
bbb.sharedNotes.typing.double =
@@ -710,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Ajustar diapositivas en la página
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Hacer presentador a la persona seleccionada
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Expulsar a la personala seleccionada de la sesión
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Activar o Desactivar sonido de la persona seleccionada
bbb.shortcutkey.users.muteall = 65
@@ -811,10 +813,12 @@ bbb.lockSettings.save.tooltip = Aplicar configuración de bloqueo
bbb.lockSettings.cancel = Cancelar
bbb.lockSettings.cancel.toolTip = Cerrar sin guardar
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Bloqueo moderador
bbb.lockSettings.privateChat = Chat privado
bbb.lockSettings.publicChat = Chat público
bbb.lockSettings.webcam = Cámara web
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Micrófono
bbb.lockSettings.layout = Alineación de ventanas
bbb.lockSettings.title=Bloquear espectadores
@@ -826,19 +830,19 @@ bbb.users.breakout.breakoutRooms = Sesión de pequeños gupos
bbb.users.breakout.updateBreakoutRooms =
bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip =
-bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.calculatingRemainingTime = Calculando tiempo restante ....
bbb.users.breakout.closing = Cerrando
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Sesiones
bbb.users.breakout.roomsCombo.accessibilityName =
bbb.users.breakout.room = Sesión
-bbb.users.breakout.randomAssign =
bbb.users.breakout.timeLimit = Límite de tiempo
bbb.users.breakout.durationStepper.accessibilityName =
bbb.users.breakout.minutes = Minutos
bbb.users.breakout.record = Grabar
bbb.users.breakout.recordCheckbox.accessibilityName =
bbb.users.breakout.notAssigned = No asignado
-bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.dragAndDropToolTip = Consejo: Puedes arrastarr y soltar usuarios entre los cuartos
bbb.users.breakout.start = Iniciar
bbb.users.breakout.invite =
bbb.users.breakout.close = Cerrar
@@ -849,7 +853,7 @@ bbb.users.breakout.invited =
bbb.users.breakout.accept =
bbb.users.breakout.joinSession =
bbb.users.breakout.joinSession.accessibilityName =
-bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.tooltip = Cerrar
bbb.users.breakout.joinSession.close.accessibilityName =
bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = Sesión
@@ -860,3 +864,8 @@ bbb.users.roomsGrid.join = Ingresar
bbb.users.roomsGrid.noUsers = No hay usuarios en esta sesión
bbb.langSelector.default=
+
+bbb.alert.cancel = Cancelar
+bbb.alert.ok = Correcto
+bbb.alert.no = No
+bbb.alert.yes = Si
diff --git a/bigbluebutton-client/locale/et_EE/bbbResources.properties b/bigbluebutton-client/locale/et_EE/bbbResources.properties
index 8331505cd2b3..13467f43ed4d 100644
--- a/bigbluebutton-client/locale/et_EE/bbbResources.properties
+++ b/bigbluebutton-client/locale/et_EE/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Ühendun serveriga
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Vabandust, aga serveriga ühendumine ebaõnnestus.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Ava logide aken
bbb.mainshell.meetingNotFound = Ei leidnud kohtumist
bbb.mainshell.invalidAuthToken = Vigane autentimise võti
bbb.mainshell.resetLayoutBtn.toolTip = Lähtesta paigutus
bbb.mainshell.notification.tunnelling = Tunneldamine
bbb.mainshell.notification.webrtc = WebRTC heli
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Sinu BigBlueButton tõlked võivad olla vananenud.
bbb.oldlocalewindow.reminder2 = Palun tühjenda oma brauseri vahemälu ja proovi uuesti.
bbb.oldlocalewindow.windowTitle = Hoiatus: tõlked on vananenud
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Katkesta
bbb.micSettings.connectingtoecho = Ühendun
bbb.micSettings.connectingtoecho.error = Kaja-testi viga: palun võta ühendust administraatoriga.
bbb.micSettings.cancel.toolTip = Katkesta audiokonverentsiga liitumine
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Heli sätted. Fookus jääb sellele aknale seni kuni aken suletakse.
bbb.micSettings.webrtc.title = WebRTC tugi
bbb.micSettings.webrtc.capableBrowser = Sinu brauser toetab WebRTCd.
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Ühendun
bbb.micSettings.webrtc.transferring = Annan üle
bbb.micSettings.webrtc.endingecho = Liitun heliga
bbb.micSettings.webrtc.endedecho = Kaja-test on lõpetatud.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox mikrofoni õigused
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome mikrofoni õigused
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Heli hoiatus
bbb.micWarning.joinBtn.label = Liitu ikkagi
bbb.micWarning.testAgain.label = Testi uuesti
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC kaja-test lõppes ootam
bbb.webrtcWarning.connection.dropped = WebRTC ühendus on katkestatud
bbb.webrtcWarning.connection.reconnecting = Proovin uuesti ühenduda
bbb.webrtcWarning.connection.reestablished = WebRTC ühendus on taastatud
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Abi
bbb.mainToolbar.logoutBtn = Logi välja
bbb.mainToolbar.logoutBtn.toolTip = Logi välja
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Vali keel
bbb.mainToolbar.settingsBtn = Sätted
bbb.mainToolbar.settingsBtn.toolTip = Ava sätted
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Alusta salvestamist
bbb.mainToolbar.recordBtn.toolTip.stop = Lõpeta salvestamine
bbb.mainToolbar.recordBtn.toolTip.recording = Käesolev sündmus salvestatakse
bbb.mainToolbar.recordBtn.toolTip.notRecording = Käesolevat sündmust ei salvestata
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Kinnita salvestamine
bbb.mainToolbar.recordBtn.confirm.message.start = Kas oled kindel, et soovid alustada selle sündmuse salvestamist?
bbb.mainToolbar.recordBtn.confirm.message.stop = Kas oled kindel, et soovid lõpetada selle sündmuse salvestamise?
-bbb.mainToolbar.recordBtn..notification.title = Salvestuse teavitus
-bbb.mainToolbar.recordBtn..notification.message1 = Sul on võimalik seda sündmust salvestada
-bbb.mainToolbar.recordBtn..notification.message2 = Pead salvestuse alustamiseks ja lõpetamiseks klõpsama "Alusta salvestust"/"Lõpeta salvestus" nupul, mis asub päises.
+bbb.mainToolbar.recordBtn.notification.title = Salvestuse teavitus
+bbb.mainToolbar.recordBtn.notification.message1 = Sul on võimalik seda sündmust salvestada
+bbb.mainToolbar.recordBtn.notification.message2 = Pead salvestuse alustamiseks ja lõpetamiseks klõpsama "Alusta salvestust"/"Lõpeta salvestus" nupul, mis asub päises.
bbb.mainToolbar.recordingLabel.recording = (Salvestan)
bbb.mainToolbar.recordingLabel.notRecording = Ei salvesta
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Sätete teavitused
bbb.clientstatus.notification = Lugemata teavitused
bbb.clientstatus.close = Sulge
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Sinu brauseri versioon ({0}) on vana. Soovita
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Sinu Flash Player lisamoodul ({0}) on aegunud. Soovitame see uuendada viimasele versioonile.
bbb.clientstatus.webrtc.title = Heli
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Soovitame parima helikvaliteedi saavutamiseks kasutada Firefox või Chrome brauserit.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimeeri
bbb.window.maximizeRestoreBtn.toolTip = Maksimeeri
bbb.window.closeBtn.toolTip = Sulge
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Staatus
bbb.users.usersGrid.statusItemRenderer.changePresenter = Klõpsa, et muuta esinejaks
bbb.users.usersGrid.statusItemRenderer.presenter = Esineja
bbb.users.usersGrid.statusItemRenderer.moderator = Moderaator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Puhasta staatus
bbb.users.usersGrid.statusItemRenderer.viewer = Vaataja
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Jagab veebikaamerat.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Aktiveeri {0} mikrofon
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Vaigista {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lukusta {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Lukusta {0} lahti
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Viska {0} välja
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Veebikaamera jagamine
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon on väljas
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon on sees
bbb.users.usersGrid.mediaItemRenderer.noAudio = Ei osale audiokonverentsil
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Puhasta
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Esitlus
bbb.presentation.titleWithPres = Esitlus: {0}
bbb.presentation.quickLink.label = Esitluse aken
bbb.presentation.fitToWidth.toolTip = Mahuta esitlus laiuses
bbb.presentation.fitToPage.toolTip = Mahuta esitlus lehele
bbb.presentation.uploadPresBtn.toolTip = Lae esitlus üles
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Eelmine slaid
bbb.presentation.btnSlideNum.accessibilityName = Slaid {0} / {1}
bbb.presentation.btnSlideNum.toolTip = Vali slaid
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Üles laadimine on valmis. Palun oota kuni dok
bbb.presentation.uploaded = üles laetud.
bbb.presentation.document.supported = Üles laetud dokument on toetatud. Alustan konverteerimist...
bbb.presentation.document.converted = Dokumendi konverteerimine oli edukas.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO viga: palun võta ühendust administraatoriga.
bbb.presentation.error.security = Turvaviga: palun võta ühendust administraatoriga.
bbb.presentation.error.convert.notsupported = Viga: üles laetud dokument pole toetatud. Palun lae üles toetatud tüüpi fail.
@@ -283,61 +285,62 @@ bbb.fileupload.uploadBtn = Lae üles
bbb.fileupload.uploadBtn.toolTip = Lae valitud fail üles
bbb.fileupload.deleteBtn.toolTip = Kustuta esitlus
bbb.fileupload.showBtn = Näita
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Näita esitlust
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Tekitan pisipilte...
bbb.fileupload.progBarLbl = Edenemine:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Jututuba
bbb.chat.quickLink.label = Jututoa aken
bbb.chat.cmpColorPicker.toolTip = Teksti värv
bbb.chat.input.accessibilityName = Jututoa sõnumi sisestamise väli
bbb.chat.sendBtn.toolTip = Saada sõnum
bbb.chat.sendBtn.accessibilityName = Saada jutukasõnum
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopeeri kogu tekst
bbb.chat.publicChatUsername = Kõik
bbb.chat.optionsTabName = Valikud
bbb.chat.privateChatSelect = Vali isik, kellega soovid privaatselt vestelda
bbb.chat.private.userLeft = Kasutaja on lahkunud.
bbb.chat.private.userJoined = Kasutaja on liitunud.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Vali kasutaja, kellega soovid privaatselt vestelda
bbb.chat.usersList.accessibilityName = Vali osaleja, kellega soovid alustada privaatvestlust. Kasuta nooleklahve sõnumite vahel liikumiseks.
bbb.chat.chatOptions = Jututoa valikud
bbb.chat.fontSize = Kirja suurus jututoa aknas
bbb.chat.cmbFontSize.toolTip = Vali jututoa kirja suurus
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimeeri jututoa aken
bbb.chat.maximizeRestoreBtn.accessibilityName = Maksimeeri jututoa aken
bbb.chat.closeBtn.accessibilityName = Sulge jututoa aken
bbb.chat.chatTabs.accessibleNotice = Selles sakis on uus(i) sõnum(eid).
bbb.chat.chatMessage.systemMessage = Süsteem
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Sõnum on {0} tähemärgi võrra liiga pikk
bbb.publishVideo.changeCameraBtn.labelText = Muuda veebikaamerat
bbb.publishVideo.changeCameraBtn.toolTip = Ava veebikaamera muutmise aken
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Alusta jagamist
bbb.publishVideo.startPublishBtn.toolTip = Alusta oma veebikaamera jagamist
bbb.publishVideo.startPublishBtn.errorName = Veebikaamera jagamine ebaõnnestus. Põhjus: {0}
bbb.webcamPermissions.chrome.title = Chrome veebikaamera õigused
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Veebikaamerad
bbb.videodock.quickLink.label = Veebikaamerate aken
bbb.video.minimizeBtn.accessibilityName = Minimeeri veebikaamera aken
@@ -367,89 +370,91 @@ bbb.video.publish.closeBtn.accessName = Sulge veebikaamera sätete aken
bbb.video.publish.closeBtn.label = Katkesta
bbb.video.publish.titleBar = Veebikaamera avaldamise aken
bbb.video.streamClose.toolTip = Sulge voog: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Lõpeta konverentsi kuulamine
bbb.toolbar.phone.toolTip.unmute = Alusta konverentsi kuulamist
bbb.toolbar.phone.toolTip.nomic = Ei tuvastanud ühtegi mikrofoni
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Jaga oma veebikaamerat
bbb.toolbar.video.toolTip.stop = Lõpeta oma veebikaamera jagamine
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Lisa mugandatud paigutus nimekirja
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Muuda paigutust enda jaoks
bbb.layout.loadButton.toolTip = Lae paigutused failist
bbb.layout.saveButton.toolTip = Salvesta paigutused faili
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Rakenda paigutus
bbb.layout.combo.custom = * Kohandatud paigutus
bbb.layout.combo.customName = Kohandatud paigutus
bbb.layout.combo.remote = Kaugjuhtimine
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Paigutused salvestati edukalt
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Paigutused on edukalt laetud
bbb.layout.load.failed = Paigutuste laadimine ebaõnnestus
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Vaikimisi paigutus
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Videokõne
bbb.layout.name.webcamsfocus = Veebikaameratega kohtumine
bbb.layout.name.presentfocus = Esitlusega kohtumine
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Õppejõu assistendi töölaud
bbb.layout.name.lecture = Loeng
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Pliiats
bbb.highlighter.toolbar.pencil.accessibilityName = Muuda valge tahvli kursor pliiatsiks
bbb.highlighter.toolbar.ellipse = Ring
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Vali värv
bbb.highlighter.toolbar.color.accessibilityName = Valge tahvli markeri värv
bbb.highlighter.toolbar.thickness = Muuda jämedust
bbb.highlighter.toolbar.thickness.accessibilityName = Muuda valge tahvli joonistamise tööriista joone jämedust
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Oled välja logitud
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Serveripoolne rakendus lõpetas töö
bbb.logout.asyncerror = Juhtus async viga
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Ühendus serveriga on lõppenud
bbb.logout.rejected = Ühendumine serveriga on tagasi lükatud
bbb.logout.invalidapp = red5 rakendus puudub
bbb.logout.unknown = Sinu klientprogrammi ühendus serveriga katkes
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Oled veebikoosolekult välja logitud
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Moderaator on Su koosolekult eemaldanud.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Kui sinu välja logimine oli ootamatu, siis palun klõpsa all nähtaval nupul.
bbb.logout.refresh.label = Ühendu uuesti
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Kinnita välja logimine
bbb.logout.confirm.message = Kas oled kindel, et soovid välja logida?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Jah
bbb.logout.confirm.no = Ei
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Tuvastatud ühenduse mured
bbb.connection.reconnecting=Ühendun uuesti
bbb.connection.reestablished=Ühendus taastatud
@@ -530,59 +539,60 @@ bbb.notes.title = Märkmed
bbb.notes.cmpColorPicker.toolTip = Teksti värv
bbb.notes.saveBtn = Salvesta
bbb.notes.saveBtn.toolTip = Salvesta märkmed
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Klõpsa avanevas hüpikaknas "Allow/Luba", et tagada töölaua jagamise toimimine
bbb.settings.deskshare.start = Kontrolli töölaua jagamist
bbb.settings.voice.volume = Mikrofoni olek
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash versiooni viga
bbb.settings.flash.text = Sinu arvutis on olemas Flash versioon {0} aga BigBlueButton-i kasutamiseks on vaja vähemalt versiooni {1}. Klõpsa all asuval nupul, et installeerida oma arvutisse uusim Adobe Flash versioon.
bbb.settings.flash.command = Installeeri uusim Flash
bbb.settings.isight.label = iSight veebikaamera viga
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Installeeri Flash 10.2 RC2
bbb.settings.warning.label = Hoiatus
bbb.settings.warning.close = Sulge see hoiatus
bbb.settings.noissues = Ühtegi väljapaistvat viga ei tuvastatud.
bbb.settings.instructions = Aktsepteeri Flash-i hüpikaknas veebikaamera kasutamise õigus. Kui sa näed ja kuuled ennast, siis on sinu brauser korrektselt seadistatud. Muud potentsiaalsed probleemid on välja toodud all olevas loetelus. Klõpsa iga elemendi peal, et saada selle parandamiseks nõuandeid.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Kolmnurk
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Muuda valge tahvli kursor kolmnurgaks
ltbcustom.bbb.highlighter.toolbar.line = Joon
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Tekst
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Muuda valge tahvli kursor tekstiks
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Teksti värv
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Fondi suurus
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Valmis
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Oled navigeerunud viimase sõnu
bbb.accessibility.chat.chatBox.navigatedLatestRead = Oled navigeerunud viimase loetud sõnumi juurde.
bbb.accessibility.chat.chatwindow.input = Jututoa sisestuskast
bbb.accessibility.chat.chatwindow.audibleChatNotification = Sõnumi märguanne (heliga)
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Palun kasuta jututoa sõnumite vahel liikumiseks nooleklahve.
bbb.accessibility.notes.notesview.input = Märkmete sisestuskast
bbb.shortcuthelp.title = Kiirklahvid
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimeeri kiirklahvide aken
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maksimeeri kiirklahvide aken
bbb.shortcuthelp.closeBtn.accessibilityName = Sulge kiirklahvide aken
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Üldised kiirklahvid
bbb.shortcuthelp.dropdown.presentation = Esitluse kiirklahvid
bbb.shortcuthelp.dropdown.chat = Jututoa kiirklahvid
bbb.shortcuthelp.dropdown.users = Osalejate kiirklahvid
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Kiirklahv
bbb.shortcuthelp.headers.function = Funktsioon
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Minimeeri praegune aken
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Maksimeeri praegune aken
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Vii fookus Flash rakenduse aknalt välja
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Vaigista ja aktiveeri oma mikrofon
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Vii fookus esitluse aknale
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Vii fookus jututoa aknale
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Ava töölaua jagamise aken
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Logi välja sellelt koosolekult
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Tõsta oma käsi
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Lae üles esitlus
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Mine eelmise slaidi juurde
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Mine järgmise slaidi juurde
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Sobita slaidid laiuse järgi
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Sobita slaidid lehe järgi
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Muuda valitud isik esinejaks
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Viska valitud isik koosolekult välja
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Vaigista või aktiveeri valitud isiku mikrofon
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Vaigista või aktiveeri kõigi osalejate mikrofonid
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Vaigista kõik osalejad peale esineja
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Vii fookus jututoa sakkidele
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Vii fookus teksti värvi valijale
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Liigu viimati loetud sõnumi juur
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Ajutise silumise lühiklahv
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Loo hääletus
bbb.polling.startButton.label = Alusta hääletust
bbb.polling.publishButton.label = Avalda
bbb.polling.closeButton.label = Sulge
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Reaalajas hääletuse tulemused
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Sisesta hääletuse valikud
bbb.polling.respondersLabel.novotes = Ootan vastuseid
bbb.polling.respondersLabel.text = {0} osalejat on vastanud
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Sulge kõik videod
bbb.users.settings.lockAll = Lukusta kõik kasutajad
bbb.users.settings.lockAllExcept = Lukusta kõik kasutajad peale esineja
bbb.users.settings.lockSettings = Lukusta vaatajad...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Lukusta lahti kõik vaatajad
bbb.users.settings.roomIsLocked = Vaikimisi lukustatud
bbb.users.settings.roomIsMuted = Vaikimisi vaigistatud
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Rakenda lukustus-sätted
bbb.lockSettings.cancel = Katkesta
bbb.lockSettings.cancel.toolTip = Sulge see aken ilma salvestamata
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Moderaatori lukustamine
bbb.lockSettings.privateChat = Privaatne jututuba
bbb.lockSettings.publicChat = Avalik jututuba
bbb.lockSettings.webcam = Veebikaamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Paigutus
bbb.lockSettings.title=Lukusta vaatajad
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Võimekus
bbb.lockSettings.locked=Lukustatud
bbb.lockSettings.lockOnJoin=Lukusta liitumisel
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/eu_ES/bbbResources.properties b/bigbluebutton-client/locale/eu_ES/bbbResources.properties
index e0e893ed7cb0..e4b4e69717f4 100644
--- a/bigbluebutton-client/locale/eu_ES/bbbResources.properties
+++ b/bigbluebutton-client/locale/eu_ES/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Zerbitzariarekin konektatzen
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Barkatu, ezin dugu zerbitzariarekin konektatu.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Zabaldu agerraldien leihoa
bbb.mainshell.meetingNotFound = Bilera ez da agertzen
bbb.mainshell.invalidAuthToken = Token egiaztatzekoa ez da baliozkoa
bbb.mainshell.resetLayoutBtn.toolTip = Berrabiarazi diseinua
bbb.mainshell.notification.tunnelling = Tunnelling
bbb.mainshell.notification.webrtc = WebRTC audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Agian BigBlueButton-en hizkuntza-itzulpen zaharra izango duzu.
bbb.oldlocalewindow.reminder2 = Mesedez, garbitu zure nabigatzailearen cache-a eta saiatu berriz.
bbb.oldlocalewindow.windowTitle = Kontuz: Hizkuntza-itzulpen zaharrak
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Konektatzen
bbb.micSettings.webrtc.transferring = Transferentzia
bbb.micSettings.webrtc.endingecho = Partekatzen audioa
bbb.micSettings.webrtc.endedecho = Oihartzun-proba amaitu da.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox mikrofonoaren baimenak
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome mikrofonoaren baimenak
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Kontuz audioarekin
bbb.micWarning.joinBtn.label = Parte hartu, edonola ere
bbb.micWarning.testAgain.label = Probatu berriro
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Ustekabean bukatu da WebRTC oi
bbb.webrtcWarning.connection.dropped = WebRTC konexioa erori da
bbb.webrtcWarning.connection.reconnecting = Berriro konektatzen ahaleginetan
bbb.webrtcWarning.connection.reestablished = WebRTC konexioa berriro ezarri da
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Laguntza
bbb.mainToolbar.logoutBtn = Amaitu saioa
bbb.mainToolbar.logoutBtn.toolTip = Amaitu saioa
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Aukeratu hizkuntza
bbb.mainToolbar.settingsBtn = Ezarpenak
bbb.mainToolbar.settingsBtn.toolTip = Ireki ezarpenak
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Hasi grabatzen
bbb.mainToolbar.recordBtn.toolTip.stop = Gelditu grabatzen
bbb.mainToolbar.recordBtn.toolTip.recording = Grabatzen ari gara saioa
bbb.mainToolbar.recordBtn.toolTip.notRecording = Ez gara ari grabatzen saioa
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Baieztatu grabazioa
bbb.mainToolbar.recordBtn.confirm.message.start = Ziur zaude saioa grabatu nahi duzula?
bbb.mainToolbar.recordBtn.confirm.message.stop = Ziur zaude gelditu nahi duzula saioaren grabazioa?
-bbb.mainToolbar.recordBtn..notification.title = Jakinarazpena grabatu
-bbb.mainToolbar.recordBtn..notification.message1 = Bilera hau grabatu daiteke.
-bbb.mainToolbar.recordBtn..notification.message2 = Hasteko eta Bukatzeko grabazioa botoi bat sakatu behar duzu, goiko izenburu-barran dagoena.
+bbb.mainToolbar.recordBtn.notification.title = Jakinarazpena grabatu
+bbb.mainToolbar.recordBtn.notification.message1 = Bilera hau grabatu daiteke.
+bbb.mainToolbar.recordBtn.notification.message2 = Hasteko eta Bukatzeko grabazioa botoi bat sakatu behar duzu, goiko izenburu-barran dagoena.
bbb.mainToolbar.recordingLabel.recording = (Grabazioa)
bbb.mainToolbar.recordingLabel.notRecording = Grabaziorik ez
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Jakinarazpenen konfigurazioa
bbb.clientstatus.notification = Irakurri gabeko jakinarazpenak
bbb.clientstatus.close = Itxi
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Zure nabigatzailea ({0}) ez da gaurkotu. Azke
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Flash Player plugin-a zaharkitu da ({0}). Azken bertsioarekin eguneratzea gomendatzen dugu.
bbb.clientstatus.webrtc.title = Audioa
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Audioa hobetzeko Firefox edo Chrome erabiltzea gomendatzen dugu
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Txikitu
bbb.window.maximizeRestoreBtn.toolTip = Handitu
bbb.window.closeBtn.toolTip = Itxi\n
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Egoera
bbb.users.usersGrid.statusItemRenderer.changePresenter = Aurkezlea bihurtzeko sakatu
bbb.users.usersGrid.statusItemRenderer.presenter = Aurkezlea
bbb.users.usersGrid.statusItemRenderer.moderator = Moderatzailea
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Garbitu egoera
bbb.users.usersGrid.statusItemRenderer.viewer = Ikuslea
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Web-kamera partekatzen
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Sakatu erabiltzaileari hitza
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Sakatu erabiltzailea mututzeko
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Blokeatu {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Askatu {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kanporatu {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Web-kamera partekatu da
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofonoa off
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofonoa on
bbb.users.usersGrid.mediaItemRenderer.noAudio = Audio-hitzaldian ez
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Garbitu
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Aurkezpena
bbb.presentation.titleWithPres = Aurkezpena: {0}
bbb.presentation.quickLink.label = Aurkezpenaren leihoa
bbb.presentation.fitToWidth.toolTip = Doitu zabaleran aurkezpena
bbb.presentation.fitToPage.toolTip = Doitu orrialdean aurkezpena
bbb.presentation.uploadPresBtn.toolTip = Igo aurkezpena
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Aurreko diapositiba
bbb.presentation.btnSlideNum.accessibilityName = {0}. diapositiba, {1}-tik
bbb.presentation.btnSlideNum.toolTip = Sakatu diapositiba bat aukeratzeko
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Igoera osatu da. Mesedez, itxaron dokumentua b
bbb.presentation.uploaded = igota.
bbb.presentation.document.supported = Igotako dokumentua onargarria da. Hasi egin da bihurtzen...
bbb.presentation.document.converted = Egoki bihurtu da office dokumentua.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Errorea: Mesedez, jarri harremanetan kudeatzailearekin
bbb.presentation.error.security = Segurtasun-errorea: mesedez, jarri harremanetan kudeatzailearekin.
bbb.presentation.error.convert.notsupported = Errorea: igotako dokumentua ez da egokia. Mesedez, igo fitxategi bateragarria.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Igo
bbb.fileupload.uploadBtn.toolTip = Igo aukeratutako fitxategia
bbb.fileupload.deleteBtn.toolTip = Ezabatu aurkezpena
bbb.fileupload.showBtn = Erakutsi
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Erakutsi aurkezpena
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Koadro txikiak sortzen...
bbb.fileupload.progBarLbl = Aurrerapena:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Txata
bbb.chat.quickLink.label = Txataren leihoa
bbb.chat.cmpColorPicker.toolTip = Testu-kolorea
bbb.chat.input.accessibilityName = Txat-mezuak editatzeko eremua
bbb.chat.sendBtn.toolTip = Bidali mezua
bbb.chat.sendBtn.accessibilityName = Bidali txat-mezua
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Testu guztiak kopiatu
bbb.chat.publicChatUsername = Guztia
bbb.chat.optionsTabName = Aukerak
@@ -331,13 +334,13 @@ bbb.chat.usersList.accessibilityName = Hautatu erabiltzailea txat pribatu bat za
bbb.chat.chatOptions = Txat-aukerak
bbb.chat.fontSize = Txat-mezuaren letra-tamaina
bbb.chat.cmbFontSize.toolTip = Aukeratu txat-mezuaren letra tamaina
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Txikitu txat-leihoa
bbb.chat.maximizeRestoreBtn.accessibilityName = Handitu txat-leihoa
bbb.chat.closeBtn.accessibilityName = Itxi txat-leihoa
bbb.chat.chatTabs.accessibleNotice = Mezu berriak fitxa honetan.
bbb.chat.chatMessage.systemMessage = Sistema
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Mezuak {0} karaktere gehiegi ditu
bbb.publishVideo.changeCameraBtn.labelText = Aldatu kamera
bbb.publishVideo.changeCameraBtn.toolTip = Sakatu kamera aldatzeko leihoa irekitzeko
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Hasi partekatzen
bbb.publishVideo.startPublishBtn.toolTip = Hasi zure web-kamera partekatzen
bbb.publishVideo.startPublishBtn.errorName = Web-kamera ezin dut partekatu. Arrazoia: {0}
bbb.webcamPermissions.chrome.title = Chrome web-kameraren baimenak
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Bideoa
bbb.videodock.quickLink.label = Web-kameraren leihoa
bbb.video.minimizeBtn.accessibilityName = Txikitu bideo-leihoa
@@ -367,89 +370,91 @@ bbb.video.publish.closeBtn.accessName = Itxi web-kameraren ezarpenen leihoa
bbb.video.publish.closeBtn.label = Utzi
bbb.video.publish.titleBar = Argitaratu web-kameraren leihoa
bbb.video.streamClose.toolTip = Itxi emanaldi honetarako: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
bbb.screensharePublish.maximizeRestoreBtn.toolTip = Lehio hau ezin da maximizatu
bbb.screensharePublish.closeBtn.toolTip = Gelditu partekatzen eta itxi
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = Minimizatu
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
bbb.screensharePublish.startButton.label = Hasi
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
bbb.screenshareView.fitToWindow = Doitu leihoarekiko
bbb.screenshareView.actualSize = Erakutsi oraingo tamaina
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Gelditu entzuten konferentzia
bbb.toolbar.phone.toolTip.unmute = Hasi entzuten konferentzia
bbb.toolbar.phone.toolTip.nomic = Mikrofonorik ez da aurkitu
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Partekatu zure web-kamera
bbb.toolbar.video.toolTip.stop = Ez partekatu zure web-kamera
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Gehitu pertsonalizatutako diseinua zerrendara
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Aldatu diseinua
bbb.layout.loadButton.toolTip = Bilatu diseinuak fitxategi batean
bbb.layout.saveButton.toolTip = Gorde diseinuak fitxategi batean
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Aplikatu diseinuari
bbb.layout.combo.custom = Pertsonalizatu diseinua
bbb.layout.combo.customName = Pertsonalizatu diseinua
bbb.layout.combo.remote = Urrutikoa
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Diseinuak egoki gorde dira
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Diseinuak egoki aurkitu dira
bbb.layout.load.failed = Ezin dira diseinuak kargatu
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Diseinu lehenetsia
bbb.layout.name.closedcaption = Azpitituluak
bbb.layout.name.videochat = Bideo-txat
bbb.layout.name.webcamsfocus = Web-kamera
bbb.layout.name.presentfocus = Aurkezpena
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Eskola laguntzailea
bbb.layout.name.lecture = Mintzaldi
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Lapitza
bbb.highlighter.toolbar.pencil.accessibilityName = Aldatu arbelerako kurtsorea eta ipini lapitza
bbb.highlighter.toolbar.ellipse = Zirkulua
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Aukeratu kolorea
bbb.highlighter.toolbar.color.accessibilityName = Arbelerako marka margotzeko kolorea
bbb.highlighter.toolbar.thickness = Aldatu lodiera
bbb.highlighter.toolbar.thickness.accessibilityName = Arbela margotzeko zabalera
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Saioa bukatu du
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = ADOS
bbb.logout.appshutdown = Zerbitzariaren aplikazioa itxi egin da
bbb.logout.asyncerror = Async errorea gertatu da
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Amaitu da zerbitzariarekiko konexioa
bbb.logout.rejected = Baztertu da zerbitzariarekiko konexioa
bbb.logout.invalidapp = red5 aplikazioa ez da existitzen
bbb.logout.unknown = Zure bezeroak galdu du zerbitzari honekiko konexioa
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Irten egin zara hitzalditik
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Moderatzaile batek bota zaitu bileratik
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Saiotik nahi gabe atera bazara sakatu beheko botoia berriro konektatzeko.
bbb.logout.refresh.label = Berriro konektatu
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Baieztatu zure saio bukatu nahi duzula
bbb.logout.confirm.message = Ziur zaude zure saio bukatu nahi duzula?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Bai
bbb.logout.confirm.no = Ez
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Konexio arazoak badaude
bbb.connection.reconnecting=Berriro konektatzen
bbb.connection.reestablished=Konexioa ezarri da berriro
@@ -530,59 +539,60 @@ bbb.notes.title = Oharrak
bbb.notes.cmpColorPicker.toolTip = Testuaren kolorea
bbb.notes.saveBtn = Gorde
bbb.notes.saveBtn.toolTip = Gorde oharra
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Lehio zabalgarrian Baimendu sakatu mahaigainaren partekatzea ongi funtzionatzen ari dela baieztatzeko.
bbb.settings.deskshare.start = Egiaztatu mahaigainaren partekatzea
bbb.settings.voice.volume = Mikrofonoaren jarduera
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Errorea Flash bertsioan
bbb.settings.flash.text = Flash {0} duzu instalatuta, baina gutxienez {1} bertsioa behar duzu BigBluebutton behar bezala ibiltzeko. Sakatu beheko botoiari Adobe Flash bertsio berriagoa instaltzeko.
bbb.settings.flash.command = Instalatu Flash berriagoa
bbb.settings.isight.label = Errorea iSight kameran
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instalatu Flash 10.2 RC2
bbb.settings.warning.label = Kontuz
bbb.settings.warning.close = Itxi abisu hau
bbb.settings.noissues = Ez da arazo larririk aurkitu.
bbb.settings.instructions = Onartu zure kamera baimenez galdetzen dizun Flash prompt-a. Zeure burua ikusi eta zeure buruari entzuten badiozu, zure nabigatzailea egoki ezarrita dago. Beherago agertzen dira beste zenbait arazo. Sakatu bakoitzaren gainean konponbidea aurkitzeko.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Triangelua
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Aldatu arbelerako kurtsorea eta ipini triangelua
ltbcustom.bbb.highlighter.toolbar.line = Lerroa
@@ -592,20 +602,20 @@ ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Aldatu arbelerako kur
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Testuaren kolorea
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Letra-tamaina
bbb.caption.window.title = Azpitituluak
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
bbb.caption.window.minimizeBtn.accessibilityName = Minimizatu Azpitituluen leihoa
bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximizatu Azpitituluen leihoa
bbb.caption.transcript.noowner = Bat ere ez
bbb.caption.transcript.youowner = Zu
bbb.caption.transcript.pastewarning.title = Azpititulua itsasteko alerta
bbb.caption.transcript.pastewarning.text = {0} baino karaktere gehiagorik ezin duzu itsasi. {1} karaktere itsasi duzu.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
bbb.caption.option.label = Aukerak
bbb.caption.option.language = Hizkuntza:
bbb.caption.option.language.tooltip = Aukeratu azpitituluen hizkuntza
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
+bbb.caption.option.language.accessibilityName =
bbb.caption.option.takeowner = Jabetza hartu
bbb.caption.option.takeowner.tooltip = Hautatu den hizkuntzaren jabegoa hartu
bbb.caption.option.fontfamily = Letra-tipo familia:
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Azken mezura joan zara
bbb.accessibility.chat.chatBox.navigatedLatestRead = Irakurri duzun azken mezura joan zara
bbb.accessibility.chat.chatwindow.input = Txat-irteera
bbb.accessibility.chat.chatwindow.audibleChatNotification = Txat-jakinarazpen entzungarria
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Erabili gezi-teklak mezuen artean nabigatzeko.
bbb.accessibility.notes.notesview.input = Ohar-sarrera
bbb.shortcuthelp.title = Lasterbide-giltzak
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Txikitu lasterbideen leihoa
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Handitu lasterbideen leihoa
bbb.shortcuthelp.closeBtn.accessibilityName = Itxi lasterbideen leihoa
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Lasterbide orokorrak
bbb.shortcuthelp.dropdown.presentation = Aurkezpenaren lasterbideak
bbb.shortcuthelp.dropdown.chat = Txataren lasterbideak
bbb.shortcuthelp.dropdown.users = Erabiltzaileen lasterbideak
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Laster-tekla
bbb.shortcuthelp.headers.function = Funtzioa
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Aldatu fokoa aurkezpen-leihoari
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Aldatu fokoa txat-leihoari
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Zabaldu mahaigaina partekatzeko leihoa
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Utzi bilera hau
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Altxatu zure eskua
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Igo aurkezpena
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Joan aurreko diapositibara
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Joan hurrengo diapositibara
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Doitu diapositibak zabalera
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Egokitu diapositiba orrira
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Ezarri aukeratutako erabiltzailea aurkezle gisa
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Bota bileratik aukeratutako pertsona
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Mututu edo hitza eman aukeratutako erabiltzaileari
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Mututu edo hitza eman erabiltzaile guztiei
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Mututu edozein Aurkezlea izan ezik
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Fokuratu txat-fitxetan
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Fokuratu letraren koloreko aukeratzailean.
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Joan irakurri duzun azken mezura
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Aldi baterakoak garbitzeko laster-tekla
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Sortu inkesta bat
bbb.polling.startButton.label = Sortu inkesta
bbb.polling.publishButton.label = Argitaratu
bbb.polling.closeButton.label = Itxi
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Inkestaren emaitzak zuzenean
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Sartu inkestaren aukerak
bbb.polling.respondersLabel.novotes = Erantzunen zain
bbb.polling.respondersLabel.text = {0} erabiltzaile erantzun dute
@@ -792,7 +803,7 @@ bbb.users.settings.lockAll = Blokeatu erabiltzaile guztiak
bbb.users.settings.lockAllExcept = Blokeatu erabiltzaile guztiak aurkezlea izan ezik
bbb.users.settings.lockSettings = Blokeatu ikusleak
bbb.users.settings.breakoutRooms = Talde gelak ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Desblokeatu ikusle guztiak
bbb.users.settings.roomIsLocked = Blokeatuta modu lehenetsian
bbb.users.settings.roomIsMuted = Mutututa modu lehenetsian
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Aplikatu blokeatzeko ezarpenak
bbb.lockSettings.cancel = Utzi
bbb.lockSettings.cancel.toolTip = Itxi lehio hau gorde gabe
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Moderatzailearen blokeoa
bbb.lockSettings.privateChat = Txat pribatua
bbb.lockSettings.publicChat = Txat publikoa
bbb.lockSettings.webcam = Web-kamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofonoa
bbb.lockSettings.layout = Diseinua
bbb.lockSettings.title=Blokeatu ikusleak
@@ -814,34 +827,35 @@ bbb.lockSettings.locked= Blokeatua
bbb.lockSettings.lockOnJoin=Parte hartzean blokeatu
bbb.users.breakout.breakoutRooms = Talde gelak
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
bbb.users.breakout.calculatingRemainingTime = Gelditzen den denbora kalkulatzen...
-bbb.users.breakout.closing = Closing
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Gelak
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
+bbb.users.breakout.roomsCombo.accessibilityName =
bbb.users.breakout.room = Gela
-bbb.users.breakout.randomAssign = Ausazkoan eran gehitu erabiltzaileak
bbb.users.breakout.timeLimit = Denbora muga
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
+bbb.users.breakout.durationStepper.accessibilityName =
bbb.users.breakout.minutes = Minutuak
bbb.users.breakout.record = Grabatu
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
+bbb.users.breakout.recordCheckbox.accessibilityName =
bbb.users.breakout.notAssigned = Esleitu gabe
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
+bbb.users.breakout.dragAndDropToolTip =
bbb.users.breakout.start = Hasi
-bbb.users.breakout.invite = Invite
+bbb.users.breakout.invite =
bbb.users.breakout.close = Itxi
bbb.users.breakout.closeAllRooms = Talde-gela guztiak itxi
bbb.users.breakout.insufficientUsers = Erabiltzaile kopurua ez da nahiko. Gutxienez erabiltzaile bat gehitu behar duzu gela batera.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = Gela
bbb.users.roomsGrid.users = Erabiltzaileak
bbb.users.roomsGrid.action = Ekintza
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Audio transferentzia
bbb.users.roomsGrid.join = Parte hartu
bbb.users.roomsGrid.noUsers = Erabiltzailerik ez gela honetan
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/fa/bbbResources.properties b/bigbluebutton-client/locale/fa/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/fa/bbbResources.properties
+++ b/bigbluebutton-client/locale/fa/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/fa_IR/bbbResources.properties b/bigbluebutton-client/locale/fa_IR/bbbResources.properties
index ee4cdd7e60a5..f25c2dce70ba 100755
--- a/bigbluebutton-client/locale/fa_IR/bbbResources.properties
+++ b/bigbluebutton-client/locale/fa_IR/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = در حال اتصال به سرور
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = متاسفانه، امکان اتصال به سرور وجود ندارد.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = باز کردن پنجره تنظیمات میکروفون
@@ -9,17 +9,17 @@ bbb.mainshell.invalidAuthToken = توکن احراز هویت نامعتبر
bbb.mainshell.resetLayoutBtn.toolTip = بازگشت به طرح بندی پیش فرض
bbb.mainshell.notification.tunnelling = در حال ایجاد تونل
bbb.mainshell.notification.webrtc = صدا با استفاده از WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = ممکن است ترجمه ی مربوط به زبان بیگ بلو باتن شما قدیمی باشد.
bbb.oldlocalewindow.reminder2 = لطفا کش مرورگر خود را خالی کرده و دوباره امتحان کنید.
bbb.oldlocalewindow.windowTitle = اخطار: ترجمه های زبانی قدیمی هستند
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = در حال اتصال
bbb.micSettings.webrtc.transferring = در حال انتقال
bbb.micSettings.webrtc.endingecho = شنیدن صدای کلاس
bbb.micSettings.webrtc.endedecho = آزمایش اکو پایان یافت.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = مجوز های فایرفاکس مربوط به میکروفون
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = مجوز های کروم مربوط به میکروفون
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = اخطار مربوط به صدا
bbb.micWarning.joinBtn.label = ملحق شدن
bbb.micWarning.testAgain.label = آزمایش مجدد
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = آزمون اکو مربوط
bbb.webrtcWarning.connection.dropped = اتصال WebRTC قطع شد
bbb.webrtcWarning.connection.reconnecting = تلاش برای اتصال مجدد
bbb.webrtcWarning.connection.reestablished = اتصال WebRTC دوباره برقرار شد
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = راهنما
bbb.mainToolbar.logoutBtn = خروج
bbb.mainToolbar.logoutBtn.toolTip = خروج
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = انتخاب زبان
bbb.mainToolbar.settingsBtn = تنظیمات
bbb.mainToolbar.settingsBtn.toolTip = مشاهده ی تنظیمات
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = شروع ضبط کلاس
bbb.mainToolbar.recordBtn.toolTip.stop = متوقف کردن ضبط کلاس
bbb.mainToolbar.recordBtn.toolTip.recording = جلسه در حال ضبط شدن است
bbb.mainToolbar.recordBtn.toolTip.notRecording = جلسه در حال ضبط شدن نیست
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = تایید ضبط شدن
bbb.mainToolbar.recordBtn.confirm.message.start = آیا مطمئنید که می خواهید جلسه را ضبط کنید؟
bbb.mainToolbar.recordBtn.confirm.message.stop = آیا مطمئنید که می خواهید ضبط کلاس را متوقف کنید؟
-bbb.mainToolbar.recordBtn..notification.title = اعلان ضبط جلسه
-bbb.mainToolbar.recordBtn..notification.message1 = شما قادر به ضبط این کلاس هستید
-bbb.mainToolbar.recordBtn..notification.message2 = به منظورشروع/توقف ضبط کلاس می بایست روی دکمه شروع/توقف ضبط کلاس در نوار عنوان کلیک کنید.
+bbb.mainToolbar.recordBtn.notification.title = اعلان ضبط جلسه
+bbb.mainToolbar.recordBtn.notification.message1 = شما قادر به ضبط این کلاس هستید
+bbb.mainToolbar.recordBtn.notification.message2 = به منظورشروع/توقف ضبط کلاس می بایست روی دکمه شروع/توقف ضبط کلاس در نوار عنوان کلیک کنید.
bbb.mainToolbar.recordingLabel.recording = (در حال ضبط)
bbb.mainToolbar.recordingLabel.notRecording = عدم ضبط کلاس
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = پیکربندی اطلاع اعلان ها
bbb.clientstatus.notification = اعلان های خوانده نشده
bbb.clientstatus.close = بستن
@@ -150,10 +151,10 @@ bbb.clientstatus.webrtc.almostStrongStatus = صدای مبتنی بر WebRTC ش
bbb.clientstatus.webrtc.almostWeakStatus = صدای مبتنی بر WebRTC شما دارای کیفیت بدی است
bbb.clientstatus.webrtc.weakStatus = ممکن است در ارتباط صدای WebRTC شما مشکلی به وجود امده باشد
bbb.clientstatus.webrtc.message = به منظور کیفیت بهتر صدا، پیشنهاد می شود از مروگر های فایرفاکس یا کروم استفاده کنید
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = کمینه
bbb.window.maximizeRestoreBtn.toolTip = بیشینه
bbb.window.closeBtn.toolTip = خروج
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = وضعیت
bbb.users.usersGrid.statusItemRenderer.changePresenter = برای تبدیل وضعیت به ارائه دهنده کلیک کنید
bbb.users.usersGrid.statusItemRenderer.presenter = ارائه دهنده
bbb.users.usersGrid.statusItemRenderer.moderator = مدیر
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = پاک کردن حالت
bbb.users.usersGrid.statusItemRenderer.viewer = مشاهده کننده
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = به اشتراک گذاری دوربین
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = وصل کردن صدای {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = قطع کردن صدای {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = قفل کردن {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = باز کردن {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = اخراج کاربر {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = به اشتراک گذاری دوربین
bbb.users.usersGrid.mediaItemRenderer.micOff = میکروفون خاموش
bbb.users.usersGrid.mediaItemRenderer.micOn = میکروفون روشن
bbb.users.usersGrid.mediaItemRenderer.noAudio = عدم حضور در کنفراس صوتی
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = پاک کردن
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = ارائه
bbb.presentation.titleWithPres = ارائه: {0}
bbb.presentation.quickLink.label = پنجره ارائه
bbb.presentation.fitToWidth.toolTip = تنظیم به اندازه عرض سند
bbb.presentation.fitToPage.toolTip = تنظیم به اندازه عرض صفحه
bbb.presentation.uploadPresBtn.toolTip = بارگزاری ارائه
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = اسلاید قبلی
bbb.presentation.btnSlideNum.accessibilityName = اسلاید {0} از {1}
bbb.presentation.btnSlideNum.toolTip = انتخاب یک اسلاید
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = بارگزاری به اتمام رسید لط
bbb.presentation.uploaded = بارگزاري شد
bbb.presentation.document.supported = از قالب سند بارگزاري شده پیشتیبانی می شود. آغاز تبدیل ...
bbb.presentation.document.converted = سند آفیس مورد نظر با موفقیت تبدیل شد
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = لطفا ابتدا این سند را تبدیل کن
bbb.presentation.error.io = خطای ورودی/خروجی: لطفا با مدیر سیستم تماس بگیرید
bbb.presentation.error.security = خطای امنیتی: لطفا با مدیر سیستم تماس بگیرید
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = بارگذاری
bbb.fileupload.uploadBtn.toolTip = بارگزاري فایل انتخاب شده
bbb.fileupload.deleteBtn.toolTip = حذف ارائه
bbb.fileupload.showBtn = نمایش
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = نمایش ارائه
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = در حال ایجاد تصاویر کوچک..
bbb.fileupload.progBarLbl = میزان پیشرفت:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = گقتگوی متنی
bbb.chat.quickLink.label = پنجره گفتگوی متنی
bbb.chat.cmpColorPicker.toolTip = رنگ متن
bbb.chat.input.accessibilityName = قسمت ویرایش پیام متنی
bbb.chat.sendBtn.toolTip = ارسال پیام
bbb.chat.sendBtn.accessibilityName = ارسال پیغام متنی
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = کپی کردن تمام من
bbb.chat.publicChatUsername = عمومی
bbb.chat.optionsTabName = امکانات
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = آغاز اشتراک گذاری
bbb.publishVideo.startPublishBtn.toolTip = شروع اشتراک دوبین خود
bbb.publishVideo.startPublishBtn.errorName = امکان اشتراک گذاری دوربین وجود ندارد.دلیل: {0}
bbb.webcamPermissions.chrome.title = مجوز های کروم مربوط به دوربین
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = پنجره دوربین ها
bbb.videodock.quickLink.label = پنجره دوربین ها
bbb.video.minimizeBtn.accessibilityName = کمینه کردن پنجره تصویر
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = بستن جعبه محاوره ای تن
bbb.video.publish.closeBtn.label = انصراف
bbb.video.publish.titleBar = اشتراک پنجرع تصاویر
bbb.video.streamClose.toolTip = بستن استریم برای: {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = اشتراک گذاری صفحه: پیش نمایش ارائه دهنده
bbb.screensharePublish.pause.tooltip = وقفه در اشتراک صفحه
bbb.screensharePublish.pause.label = وقفه
@@ -428,28 +432,29 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = امکان تشخیص
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = به نظر می رسد که شما از حالت incognito و یا مرور خصوصی استفاده میکنید. لطفا اطمینان پیدا کنید که در بخش تنظیمات افزونه ها امکان اجرا شدن افزوده را در حالت مرور خصوصی/incognito داده باشید
bbb.screensharePublish.WebRTCExtensionInstallButton.label = برای نصب اینجا را کلیک کنید
bbb.screensharePublish.WebRTCUseJavaButton.label = استفاده از اشتراک صفحه مبتنی بر جاوا
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = اشتراک صفحه
bbb.screenshareView.fitToWindow = بسط به اندازه تمام پنجره
bbb.screenshareView.actualSize = نمایش اندازه واقعی
bbb.screenshareView.minimizeBtn.accessibilityName = کمینه کردن پنجره مشاهده اشتراک صفحه
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = بیشینه کردن پنجره مشاهده اشتراک صفحه
bbb.screenshareView.closeBtn.accessibilityName = بستن پنجره مشاهده اشتراک صفحه
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = توقف شنیدن صدای جلسه
bbb.toolbar.phone.toolTip.unmute = شروع شنیدن صدای جلسه
bbb.toolbar.phone.toolTip.nomic = میکروفونی شناسایی نشد
bbb.toolbar.deskshare.toolTip.start = باز کردن پنجره نمایش اشتراک صفحه
bbb.toolbar.deskshare.toolTip.stop = توقف اشتراک میز کار من
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = اشتراک دوربین
bbb.toolbar.video.toolTip.stop = توقف اشتراک دوربین
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = افزودن طرح بندی جدید به لیست
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = تغییر طرح بندی
bbb.layout.loadButton.toolTip = بارگزاری طرح بندی از فایل
bbb.layout.saveButton.toolTip = ذخیره سازی طرح بندی در یک فایل
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = اعمال طرح بندی
bbb.layout.combo.custom = * طرح بندی جدید
bbb.layout.combo.customName = طرح بندی جدید
bbb.layout.combo.remote = از طرف مدیر
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = طرح بندی ها با موفقیت ذخیره شدند
+bbb.layout.save.ioerror =
bbb.layout.load.complete = طرح بندی ها با موفقیت بارگزاری شدند
bbb.layout.load.failed = خطا در بارگزاری طرح بندی ها
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = طرح بندی پیشفرض
bbb.layout.name.closedcaption = زیر نویس
bbb.layout.name.videochat = گفتگوی تصویری
bbb.layout.name.webcamsfocus = جلسه تصویری
bbb.layout.name.presentfocus = جلسه ارائه
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = استادیار
bbb.layout.name.lecture = تدریس ارائه
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = مداد
bbb.highlighter.toolbar.pencil.accessibilityName = تبدیل اشاره گر تخته سفید به مداد
bbb.highlighter.toolbar.ellipse = دایره
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = انتخاب رنگ
bbb.highlighter.toolbar.color.accessibilityName = رنگ اشاره گر ترسیم در تخته سفید
bbb.highlighter.toolbar.thickness = تغییر ضخامت
bbb.highlighter.toolbar.thickness.accessibilityName = ضخامت اشاره گر ترسیم در تخته سفید
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = خارج شدید
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = تایید
bbb.logout.appshutdown = برنامه ی سرور خاموش شده است
bbb.logout.asyncerror = رخداد یک خطای Async
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = اتصال به سرور قطع شد
bbb.logout.rejected = اتصال به سرور رد شد
bbb.logout.invalidapp = برنامه ی red5 موجود نیست
bbb.logout.unknown = اتصال کلاینت شما از سرور قطع شده است
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = شما از گفتگو خارج شدید
bbb.logour.breakoutRoomClose = مرورگر شما بسته خواهد شد
-bbb.logout.ejectedFromMeeting = مدیر شما را از جلسه بیرون انداخت
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = اگر این خروج به صورت غیر منتظره رخ داده، برای اتصال مجدد دکمه زیر را کلیک کنید.
bbb.logout.refresh.label = اتصال مجدد
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = تایید خروج از سیستم
bbb.logout.confirm.message = آیا مطمئن هستید میخواهید از سیستم خارج شوید؟
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = بله
bbb.logout.confirm.no = خیر
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=اشکال در ارتباط
bbb.connection.reconnecting=برقراری مجدد ارتباط
bbb.connection.reestablished=ارتباط مجددا برقرار شد
@@ -530,59 +539,60 @@ bbb.notes.title = یادداشت ها
bbb.notes.cmpColorPicker.toolTip = رنگ متن
bbb.notes.saveBtn = ذخیره
bbb.notes.saveBtn.toolTip = ذخیره یادداشت
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = جهت اطمینان از کارکرد صحیح اشتراک گذاری صفحه در کادر ظاهر شده روی پذیرفتن کلیک کنید
bbb.settings.deskshare.start = بررسی وضعیت اشتراک صفحه
bbb.settings.voice.volume = فعالیت میکروفون
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = خطای مربوط به نسخه ی فلش
bbb.settings.flash.text = نسخه ی نصب شده ی فلش شما {0} است، اما شما برای اجرای درست سیستم حداقل نیازمند نسخه ی {1} هستید. برای نصب آخرین نسخه ی ادوبی فلش پلیر روی دکمه ی زیر کلیک کنید.
bbb.settings.flash.command = جدیدترین نسخه فلش را نصب کنید
bbb.settings.isight.label = خطای دوربین iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = فلش پلیر RC2 10.2 را نصب کنید.
bbb.settings.warning.label = اخطار
bbb.settings.warning.close = بستن اخطار کنونی
bbb.settings.noissues = مشکل قابل ذکری یافت نشد
bbb.settings.instructions = درخواست فلش مبنی بر اجازه برای استفاده از دوربین را بپذیرید. اگرشما قادر به مشاهده تصویر و شنیدن صدای خود هستید، مرورگر شما درست تنظیم شده است. مشکلات بالقوه ی دیگر در زیر نشان داده شده اند. برای یافتن راه حل احتمالی روی هر کدام کلیک کنید
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = مثلث
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = تبدیل اشاره گر تخته سفید به مثلث
ltbcustom.bbb.highlighter.toolbar.line = خط
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = شما به آخرین پیام
bbb.accessibility.chat.chatBox.navigatedLatestRead = شما به جدیدترین پیامی که خوانده اید رسیده اید
bbb.accessibility.chat.chatwindow.input = کادر ورودی گفتگوی متنی
bbb.accessibility.chat.chatwindow.audibleChatNotification = اطلاع رسانی صوتی برای چت
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = لطفا برای پیمایش بین پیام های اخیر که خوانده اید از کلیدهای جهتی استفاده کنید
bbb.accessibility.notes.notesview.input = ورودی یادداشت ها
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = جا دادن کل ارائه در ص
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = تغییر نقش فرد انتخاب شده به ارائه دهنده
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = اخراج فرد انتخاب شده از جلسه
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = قطع یا وصل کردن صدای فرد انتخاب شده
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = انتشار
bbb.polling.closeButton.label = خروج
bbb.polling.customPollOption.label = نظرسنجی سفارشی
bbb.polling.pollModal.title = نتیجه زنده نظرسنجی
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = وارد کردن انتخاب های نظرسنجی
bbb.polling.respondersLabel.novotes = در انتظار پاسخ
bbb.polling.respondersLabel.text = {0} کاربر پاسخ دادند
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = اعمال تنظیمات قفل کردن
bbb.lockSettings.cancel = لنصراف
bbb.lockSettings.cancel.toolTip = بستن این پنجره بدون ذخیره سازی
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = قفل کردن توسط مدیر
bbb.lockSettings.privateChat = گفتگوی خصوصی
bbb.lockSettings.publicChat = گفتگوی عمومی
bbb.lockSettings.webcam = دوربین
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = میکروفن
bbb.lockSettings.layout = طرح بندی
bbb.lockSettings.title=قفل کردن مشاهده کنندگان
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=امکان الحاق شدن را قفل کن
bbb.users.breakout.breakoutRooms = اتاق های Breakout
bbb.users.breakout.updateBreakoutRooms = به روز رسانی اتاق های Breakout
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = زمان باقی مانده برای اتاق های Breakout
bbb.users.breakout.calculatingRemainingTime = محاسبه زمان باقی مانده
bbb.users.breakout.closing = در حال بستن
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = اتاق ها
bbb.users.breakout.roomsCombo.accessibilityName = تعداد اتاق هایی که باید ایجاد شوند.
bbb.users.breakout.room = اتاق
-bbb.users.breakout.randomAssign = انتصاب کاربران به صورت تصادفی
bbb.users.breakout.timeLimit = محدودیت زمانی
bbb.users.breakout.durationStepper.accessibilityName = محدودیت زمانی به دقیقه
bbb.users.breakout.minutes = دقیقه
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = دعوت
bbb.users.breakout.close = بستن
bbb.users.breakout.closeAllRooms = بستن تمام اتاق های Berakout
bbb.users.breakout.insufficientUsers = تعداد ناکافب کاربر: شما می بایست حداقل یک کاربر در یک اتاق Breakout قرار دهید.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = اتاق
bbb.users.roomsGrid.users = کاربران
bbb.users.roomsGrid.action = فعالیت
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = انتقال صدا
bbb.users.roomsGrid.join = الحاق
bbb.users.roomsGrid.noUsers = کاربری در این اتاق وجود ندارد
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/fi_FI/bbbResources.properties b/bigbluebutton-client/locale/fi_FI/bbbResources.properties
index c0eea07c76cc..0dfeb90d1d78 100644
--- a/bigbluebutton-client/locale/fi_FI/bbbResources.properties
+++ b/bigbluebutton-client/locale/fi_FI/bbbResources.properties
@@ -1,159 +1,160 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Yhdistetään palvelimeen
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Anteeksi, emme voi yhdistää palvelimeen.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Avaa loki-ikkuna
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Asettelu Työkalurivi Nollaa Asettelu
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Sinulla voi olla vanha kielikäännös BigBlueButtonista.
bbb.oldlocalewindow.reminder2 = Ole hyvä ja tyhjennä selaimesi välimuisti ja yritä uudelleen.
bbb.oldlocalewindow.windowTitle = Varoitus: Vanha käännös
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = Kokeile Kaiuttimia
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
+bbb.micSettings.playSound.toolTip =
bbb.micSettings.hearFromHeadset = Sinun pitäisi kuulla ääni kuullokkeistasi, ei tietokoneen kaiuttimista.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = Vaihda/testaa mikrofonia
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = Liity äänellä keskusteluun
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Ääniasetukset. Ääniasetukset ovat päällimmäisenä, kunnes ikkuna suljetaan.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Apua
bbb.mainToolbar.logoutBtn = Kirjaudu ulos
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Valitse kieli
bbb.mainToolbar.settingsBtn = Asetukset
bbb.mainToolbar.settingsBtn.toolTip = Avaa asetukset
bbb.mainToolbar.shortcutBtn = Pikanäppäimet
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Pienennä
bbb.window.maximizeRestoreBtn.toolTip = Suurenna
bbb.window.closeBtn.toolTip = Sulje
@@ -162,101 +163,102 @@ bbb.presentation.titleBar = Esitysikkunan otsikkopalkki
bbb.chat.titleBar = Keskustelu ikkunan otsikkopalkki.
bbb.users.title = Käyttäjät{0} {1}
bbb.users.titleBar = Käyttäjien ikkunapalkki, tuplaklikkaa suurentaaksesi
-bbb.users.quickLink.label = Users Window
+bbb.users.quickLink.label =
bbb.users.minimizeBtn.accessibilityName = Pienennä käyttäjien ikkuna
bbb.users.maximizeRestoreBtn.accessibilityName = Suurenna käyttäjien ikkuna
bbb.users.settings.buttonTooltip = Asetukset
-bbb.users.settings.audioSettings = Audio Test
+bbb.users.settings.audioSettings =
bbb.users.settings.webcamSettings = Webkameran asetukset
bbb.users.settings.muteAll = Mykistä kaikki
bbb.users.settings.muteAllExcept = Mykistä kaikki paitsi esittelijä
bbb.users.settings.unmuteAll = Mykistys pois kaikilta
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = Klikkaa puhuaksesi
bbb.users.pushToMute.toolTip = Klikkaa mykistääksesi itsesi
bbb.users.muteMeBtnTxt.talk = Myksitys pois
bbb.users.muteMeBtnTxt.mute = Mykistä
bbb.users.muteMeBtnTxt.muted = Mykistetty
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Käyttäjien lista. Käytä nuolinäppäimiä navigointiin.
bbb.users.usersGrid.nameItemRenderer = Nimi
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
bbb.users.usersGrid.statusItemRenderer = Tila
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
bbb.users.usersGrid.statusItemRenderer.presenter = Esittäjä
bbb.users.usersGrid.statusItemRenderer.moderator = Moderaattori
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Katselija
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = Media
bbb.users.usersGrid.mediaItemRenderer.talking = Puhuu
bbb.users.usersGrid.mediaItemRenderer.webcam = Webikamera on jaettu
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Klikkaa katsellaksesi webbikameraa
bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Klikkaa mykistys pois käyttäjältä
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Klikkaa mykistääksesi käyttäjä
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Poista käyttäjä
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Webikamera on jaettu
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofoni pois päältä
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofoni päälle
bbb.users.usersGrid.mediaItemRenderer.noAudio = Et ole liittynyt äänellä konferenssiin.
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Esitys
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Esitysikkuna Edellinen sivu.
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
bbb.presentation.forwardBtn.toolTip = Esitysikkuna Seuraava sivu.
bbb.presentation.maxUploadFileExceededAlert = Virhe: Tiedoston koko on suurempi kuin sallittu koko.
bbb.presentation.uploadcomplete = Lähetys on valmis. Odota dokumentin konvertointia.
bbb.presentation.uploaded = Lähetetty.
bbb.presentation.document.supported = Lähetetty dokumentti on tuettu. Konvertointi alkaa...
bbb.presentation.document.converted = Office dokumentin konvertointi onnistui.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO virhe. Ota yhteyttä järjestelmän ylläpitäjään.
bbb.presentation.error.security = Suojausvirhe. Ota yhteyttä järjestelmän ylläpitäjään.
bbb.presentation.error.convert.notsupported = Virhe: Lähetettyä tiedostomuotoa ei tueta. Ole hyvä ja lähetä yhteensopiva tiedosto.
@@ -264,8 +266,8 @@ bbb.presentation.error.convert.nbpage = Virhe: Lähetetystä tiedostosta ei void
bbb.presentation.error.convert.maxnbpagereach = Virhe: Lähetetyssä tiedostossa on liian monta sivua.
bbb.presentation.converted = {0} {1}:stä sivusta konvertoitu.
bbb.presentation.slider = Esitysikkunan lähennys
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = Esitystiedosto
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
@@ -276,79 +278,80 @@ bbb.presentation.minimizeBtn.accessibilityName = Pienennä esitysikkuna
bbb.presentation.maximizeRestoreBtn.accessibilityName = Suurenna esitysikkuna
bbb.presentation.closeBtn.accessibilityName = Sulje esitysikkuna
bbb.fileupload.title = Lähetä esitykseen tiedostoja
-bbb.fileupload.lblFileName.defaultText = No file selected
+bbb.fileupload.lblFileName.defaultText =
bbb.fileupload.selectBtn.label = Valitse tiedosto
bbb.fileupload.selectBtn.toolTip = Valitse tiedosto
bbb.fileupload.uploadBtn = Lähetä
bbb.fileupload.uploadBtn.toolTip = Lähetä tiedosto
bbb.fileupload.deleteBtn.toolTip = Poista esitys
bbb.fileupload.showBtn = Näytä
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Näytä esitys
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Pienoiskuvia luodaan...
bbb.fileupload.progBarLbl = Edistyminen:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Keskustelu
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = Keskusteluikkunan Tekstin Väri
-bbb.chat.input.accessibilityName = Chat Message Editing Field
+bbb.chat.input.accessibilityName =
bbb.chat.sendBtn.toolTip = Lähetä Viesti
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = Kaikki
-bbb.chat.optionsTabName = Options
+bbb.chat.optionsTabName =
bbb.chat.privateChatSelect = Keskusteluikkuna Valitse henkilö jonka kanssa haluat keskustella yksityisesti
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Keskusteluikkuna Keskustelu vaihtoehdot
bbb.chat.fontSize = Keskusteluikkunan Fontin koko
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Pienennä keskusteluikkuna
bbb.chat.maximizeRestoreBtn.accessibilityName = Suurenna keskusteluikkuna
bbb.chat.closeBtn.accessibilityName = Sulje keskusteluikkuna
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
bbb.publishVideo.startPublishBtn.toolTip = Aloita Jakaminen
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Videotelakka
-bbb.videodock.quickLink.label = Webcams Window
+bbb.videodock.quickLink.label =
bbb.video.minimizeBtn.accessibilityName = Pienennä videotelakan ikkuna
bbb.video.maximizeRestoreBtn.accessibilityName = Suurenna videotelakan ikkuna
bbb.video.controls.muteButton.toolTip = Mykistä tai mykistys pois {0}
@@ -361,96 +364,98 @@ bbb.video.publish.hint.waitingApproval = Odotan hyväksymistä
bbb.video.publish.hint.videoPreview = Videon esikatselu
bbb.video.publish.hint.openingCamera = Avataan kameraa...
bbb.video.publish.hint.cameraDenied = Kameran käyttö estetty
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Julkaisee...
bbb.video.publish.closeBtn.accessName = Webkamera ikkuna sulje ikkuna
-bbb.video.publish.closeBtn.label = Cancel
+bbb.video.publish.closeBtn.label =
bbb.video.publish.titleBar = Julkaise webbikameran ikkuna
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Lisää muokattu ulkoasu listalle
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
bbb.layout.loadButton.toolTip = Lataa ulkoasu tiedostosta
bbb.layout.saveButton.toolTip = Tallenna ulkoasu tiedostoksi
bbb.layout.lockButton.toolTip = Lukitse ulkoasu
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Ota ulkoasu käyttöön
bbb.layout.combo.custom = * Muokattu ulkoasu
bbb.layout.combo.customName = Muokattu ulkoasu
bbb.layout.combo.remote = Etäohjaus
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Ulkoasut tallennettu onnistuneesti
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Ulkoasut ladattu onnistuneesti
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Kynä
bbb.highlighter.toolbar.pencil.accessibilityName = Vaihda kursori kynään
bbb.highlighter.toolbar.ellipse = Ympyrä
@@ -484,105 +492,107 @@ bbb.highlighter.toolbar.rectangle = Neliö
bbb.highlighter.toolbar.rectangle.accessibilityName = Vaihda kursori ruuduksi
bbb.highlighter.toolbar.panzoom = Panoroi ja lähennä
bbb.highlighter.toolbar.panzoom.accessibilityName = Vaihda kursori panorointiin ja lähennykseen
-bbb.highlighter.toolbar.clear = Clear All Annotations
+bbb.highlighter.toolbar.clear =
bbb.highlighter.toolbar.clear.accessibilityName = Tyhjennä valkotaulu
-bbb.highlighter.toolbar.undo = Undo Annotation
+bbb.highlighter.toolbar.undo =
bbb.highlighter.toolbar.undo.accessibilityName = Kumoa viimeinen valkotaulun kuvio
bbb.highlighter.toolbar.color = Valitse Väri
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = Muuta koko
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Palvelinsovellus on suljettu
bbb.logout.asyncerror = Async virhe
bbb.logout.connectionclosed = Yhteys palvelimeen on suljettu
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Yhteys palvelimeen on hylätty
bbb.logout.invalidapp = red5 ohjelmaa ei löydy
bbb.logout.unknown = Selaimesi kadotti yhteyden palvelimeen
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Kirjauduit ulos konferenssista
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = Muistiinpanot
bbb.notes.cmpColorPicker.toolTip = Tekstin väri
bbb.notes.saveBtn = Tallenna
bbb.notes.saveBtn.toolTip = Tallenna muistiinpano
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Klikkaa salliaksesi ponnahdusikkunan joka tarkistaa toimiiko työpöydän jako oikein
bbb.settings.deskshare.start = Tarkista Työpöydän Jako
bbb.settings.voice.volume = Mikrofonin aktiviteetti
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash versio virhe
bbb.settings.flash.text = Flash {0} on asennettu, mutta tarvitset vähintään version {1} käyttääksesi BigBlueButtonia oikein.\nKlikkaa alla olevaa nappia asentaaksesi viimeisimmät Adobe Flash version.
bbb.settings.flash.command = Asenna uusin Flash
bbb.settings.isight.label = iSight kamera virhe
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Asenna Flash 10.2 RC2
bbb.settings.warning.label = Varoitus
bbb.settings.warning.close = Sulje tämä varoitus
bbb.settings.noissues = Mitään suurempia ongelmia ei löytynyt.
bbb.settings.instructions = Hyväksy Flash ponnahdus joka kysyy sinulta kameran käyttöoikeuksia. Jos näet ja kuulet itsesi, selaimesi on oikein määritetty. Muut mahdolliset ongelmat näkyvät alla. Klikkaa jokaista kohtaa löytääksesi mahdollisen ratkaisun.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Kolmio
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Vaihda kursori kolmioksi
ltbcustom.bbb.highlighter.toolbar.line = Viiva
@@ -591,34 +601,34 @@ ltbcustom.bbb.highlighter.toolbar.text = Teksti
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Vaihda valkotaulun kursori tekstiksi
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Tekstin väri
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Fontin koko
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
bbb.accessibility.chat.chatBox.reachedFirst = Olet ensimmäisessä viestissä.
bbb.accessibility.chat.chatBox.reachedLatest = Olet uusimmassa viestissä.
@@ -626,33 +636,33 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Olet siirtynyt ensimmäiseen vi
bbb.accessibility.chat.chatBox.navigatedLatest = Olet siirtynyt uusimpaan viestiin.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Olet siirtynyt uusimpaan lukemaasi viestiin.
bbb.accessibility.chat.chatwindow.input = Keskustelun lähetys
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
bbb.accessibility.notes.notesview.input = Muistiinpanojen lähetys
bbb.shortcuthelp.title = Pikanäppäimet
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Pienennä oikoteiden ikkuna
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Suurenna oikoteiden ikkuna
bbb.shortcuthelp.closeBtn.accessibilityName = Sulje oikoteiden ikkuna
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Laajat oikotiet
bbb.shortcuthelp.dropdown.presentation = Esitysten oikotiet
bbb.shortcuthelp.dropdown.chat = Keskustelun oikotiet
bbb.shortcuthelp.dropdown.users = Käyttäjien oikotiet
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
bbb.shortcutkey.general.minimize = 189
bbb.shortcutkey.general.minimize.function = Pienennä nykyinen ikkuna
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Suurenna ikkuna
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Pois Flash ikkunasta
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Mykistys ja mykistys pois mikrofonista
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Siirrä kohdistus esitys ikkunaan
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Siirrä kohdistus keskustelu ikkunaan
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Avaa työpöydänjako ikkuna
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Kirjaudu ulos tästä tapaamisesta
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Nosta kättä
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Lähetä esitys
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Mene edelliselle sivulle
@@ -696,208 +706,166 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Mene seuraavalle sivulle
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Sovita sivu leveyteen
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Sovita sivut sivuun
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Tee valitusta käyttäjästä esittelijä
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Potkaise valittu käyttäjä tapaamisesta
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Mykistys tai mykistys pois valitulta käyttäjältä
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Mykistys tai mykistys pois kaikilta käyttääjiltä
-bbb.shortcutkey.users.muteAllButPres = 65
+bbb.shortcutkey.users.muteAllButPres =
bbb.shortcutkey.users.muteAllButPres.function = Mykistä kaikki muut paitsi esittelijä
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
+bbb.shortcutkey.chat.focusTabs =
bbb.shortcutkey.chat.focusTabs.function = Kohdista keskustelu välilehteen
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
bbb.shortcutkey.chat.sendMessage.function = Lähetä keskusteluviesti
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
+bbb.shortcutkey.chat.chatbox.advance =
bbb.shortcutkey.chat.chatbox.advance.function = Siirry seuraavaan viestiin
bbb.shortcutkey.chat.chatbox.goback = 80
bbb.shortcutkey.chat.chatbox.goback.function = Siirry seuraavaan viestiin
-bbb.shortcutkey.chat.chatbox.repeat = 32
+bbb.shortcutkey.chat.chatbox.repeat =
bbb.shortcutkey.chat.chatbox.repeat.function = Toista nykyinen viesti
-bbb.shortcutkey.chat.chatbox.golatest = 39
+bbb.shortcutkey.chat.chatbox.golatest =
bbb.shortcutkey.chat.chatbox.golatest.function = Siirry uusimpaan viestiin
-bbb.shortcutkey.chat.chatbox.gofirst = 37
+bbb.shortcutkey.chat.chatbox.gofirst =
bbb.shortcutkey.chat.chatbox.gofirst.function = Siirry ensimmäiseen viestiin
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = Sulje
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/fr/bbbResources.properties b/bigbluebutton-client/locale/fr/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/fr/bbbResources.properties
+++ b/bigbluebutton-client/locale/fr/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/fr_CA/bbbResources.properties b/bigbluebutton-client/locale/fr_CA/bbbResources.properties
index 48127ce18ac1..115809182022 100644
--- a/bigbluebutton-client/locale/fr_CA/bbbResources.properties
+++ b/bigbluebutton-client/locale/fr_CA/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Connexion au serveur
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = chargement
bbb.mainshell.statusProgress.cannotConnectServer = Désolé, impossible d'établir une connexion au serveur.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Ouvrir la fenêtre de log
@@ -10,15 +10,15 @@ bbb.mainshell.resetLayoutBtn.toolTip = Disposition par défaut
bbb.mainshell.notification.tunnelling = Tunnel
bbb.mainshell.notification.webrtc = Audio WebRTC
bbb.mainshell.fullscreenBtn.toolTip = Basculer en mode plein écran
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
+bbb.mainshell.quote.sentence.1 = Il n'y a pas de secrets pour réussir. C'est le résultat de la préparation, du travail acharné et de l'apprentissage de l'échec.
bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
+bbb.mainshell.quote.sentence.2 = Dis-moi et j'oublie. Enseigne-moi et je m'en souviens. Implique-moi et j'apprends.
bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
+bbb.mainshell.quote.sentence.3 = J'ai appris la valeur du travail acharné en travaillant dur.
bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
+bbb.mainshell.quote.sentence.4 = Développer une passion pour l'apprentissage. Si vous le faites, vous ne cesserez jamais de grandir.
bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
+bbb.mainshell.quote.sentence.5 = La recherche crée de nouvelles connaissances.
bbb.mainshell.quote.attribution.5 = Neil Armstrong
bbb.oldlocalewindow.reminder1 = Vous avez probablement de vieilles traductions de BigBlueButton.
bbb.oldlocalewindow.reminder2 = Veuillez effacer la mémoire cache de votre fureteur web et essayer de nouveau.
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = Connexion en cours
bbb.micSettings.webrtc.transferring = Transfert en cours
bbb.micSettings.webrtc.endingecho = Joindre l'audio
bbb.micSettings.webrtc.endedecho = Test d'écho terminé.
+bbb.micPermissions.message.browserhttp = Ce serveur n'est pas configuré avec SSL. Par conséquent, {0} désactive le partage de votre microphone.
bbb.micPermissions.firefox.title = Permissions du microphone de Firefox
bbb.micPermissions.firefox.message = Cliquer pour permettre à Chrome d'utiliser votre microphone.
bbb.micPermissions.chrome.title = Permissions du microphone de Chrome
@@ -100,7 +101,7 @@ bbb.inactivityWarning.cancel = Annuler
bbb.mainToolbar.helpBtn = Aide
bbb.mainToolbar.logoutBtn = Déconnexion
bbb.mainToolbar.logoutBtn.toolTip = Déconnexion
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn = {0} | Réinitialiser le minuteur de déconnexion
bbb.mainToolbar.langSelector = Sélectionner votre langue
bbb.mainToolbar.settingsBtn = Paramètres
bbb.mainToolbar.settingsBtn.toolTip = Ouvrir les paramètres
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Cette session ne peux être enreg
bbb.mainToolbar.recordBtn.confirm.title = Confirmer l'enregistrement
bbb.mainToolbar.recordBtn.confirm.message.start = Voulez-vous débuter l'enregistrement de la session?
bbb.mainToolbar.recordBtn.confirm.message.stop = Voulez-vous cesser l'enregistrement de la session?
-bbb.mainToolbar.recordBtn..notification.title = Enregistrer la notification
-bbb.mainToolbar.recordBtn..notification.message1 = Vous pouvez enregistrer cette conférence.
-bbb.mainToolbar.recordBtn..notification.message2 = Vous devez cliquer sur le bouton Démarrer / Cesser l'enregistrement dans la barre de titre pour débuter / arrêter l’enregistrement.
+bbb.mainToolbar.recordBtn.notification.title = Enregistrer la notification
+bbb.mainToolbar.recordBtn.notification.message1 = Vous pouvez enregistrer cette conférence.
+bbb.mainToolbar.recordBtn.notification.message2 = Vous devez cliquer sur le bouton Démarrer / Cesser l'enregistrement dans la barre de titre pour débuter / arrêter l’enregistrement.
bbb.mainToolbar.recordingLabel.recording = (Enregistrement en cours)
bbb.mainToolbar.recordingLabel.notRecording = N'enregistre pas
bbb.waitWindow.waitMessage.message = Vous êtes invité, veuillez attendre l'approbation du modérateur.
@@ -214,7 +215,7 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Désactiver la sourdine pour
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Activer la sourdine pour {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Verrouiller {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Déverrouiller {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Bannir {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser = Retirer {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = Partager la webcam
bbb.users.usersGrid.mediaItemRenderer.micOff = Micro fermé
bbb.users.usersGrid.mediaItemRenderer.micOn = Micro ouvert
@@ -246,6 +247,7 @@ bbb.presentation.fitToWidth.toolTip = Ajuster la présentation à la largeur
bbb.presentation.fitToPage.toolTip = Ajuster la présentation à la page
bbb.presentation.uploadPresBtn.toolTip = Importer un fichier
bbb.presentation.downloadPresBtn.toolTip = Télécharger les présentations
+bbb.presentation.poll.response = Répondre au sondage
bbb.presentation.backBtn.toolTip = Page précédente
bbb.presentation.btnSlideNum.accessibilityName = Diapo {0} sur {1}
bbb.presentation.btnSlideNum.toolTip = Sélectionner une page
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Envoi du fichier terminé. Merci de patienter
bbb.presentation.uploaded = envoyé.
bbb.presentation.document.supported = Le document envoyé est compatible. Conversion en cours...
bbb.presentation.document.converted = Conversion du fichier réussie.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed = Essayez de convertir le document en PDF et de le télécharger à nouveau.
bbb.presentation.error.document.convert.invalid = Veuillez convertir ce document en PDF en premier.
bbb.presentation.error.io = Erreur E/S: Contactez l'administrateur.
bbb.presentation.error.security = Erreur de sécurité: Contactez l'administrateur.
@@ -283,18 +285,18 @@ bbb.fileupload.uploadBtn = Envoyer
bbb.fileupload.uploadBtn.toolTip = Envoyer le fichier sélectionné
bbb.fileupload.deleteBtn.toolTip = Supprimer une présentation
bbb.fileupload.showBtn = Afficher
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = Essayez un autre fichier
bbb.fileupload.showBtn.toolTip = Afficher cette présentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = Fermer
+bbb.fileupload.close.accessibilityName = Fermer la fenêtre de téléchargement du fichier
bbb.fileupload.genThumbText = Génération des aperçus..
bbb.fileupload.progBarLbl = Progression:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
+bbb.fileupload.fileFormatHint = Vous pouvez télécharger n'importe quel document (PDF) ou Office. Pour le meilleur résultat, nous vous recommandons de télécharger un fichier PDF.
bbb.fileupload.letUserDownload = Activer le téléchargement de la présentation
bbb.fileupload.letUserDownload.tooltip = Cochez ici si vous souhaitez que les autres utilisateurs téléchargent votre présentation
bbb.filedownload.title = Télécharger les présentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
+bbb.filedownload.close.tooltip = Fermer
+bbb.filedownload.close.accessibilityName = Fermer la fenêtre de téléchargement du fichier
bbb.filedownload.fileLbl = Choisissez le fichier à télécharger:
bbb.filedownload.downloadBtn = Télécharger
bbb.filedownload.downloadBtn.toolTip = Télécharger la présentation
@@ -309,6 +311,7 @@ bbb.chat.saveBtn.toolTip = Sauvegarder le clavardage
bbb.chat.saveBtn.accessibilityName = Sauvegarder le clavardage dans un fichier
bbb.chat.saveBtn.label = Sauvegarder
bbb.chat.save.complete = Clavardage sauvegardé avec succès
+bbb.chat.save.ioerror = Clavardage non sauvgardé. Essayez d'enregistrer à nouveau.
bbb.chat.save.filename = Clavardage public
bbb.chat.copyBtn.toolTip = Copier le clavardage
bbb.chat.copyBtn.accessibilityName = Copier le clavardage dans le presse-papiers
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Fermer la fenêtre de paramètres pour l
bbb.video.publish.closeBtn.label = Annuler
bbb.video.publish.titleBar = Publier la webcam
bbb.video.streamClose.toolTip = Fermer la transaction : {0}
+bbb.video.message.browserhttp = Ce serveur n'est pas configuré avec SSL. Par conséquent, {0} désactive le partage de votre webcam.
bbb.screensharePublish.title = Partage d'écran: Aperçu du présentateur
bbb.screensharePublish.pause.tooltip = Partage d'écran en pause
bbb.screensharePublish.pause.label = Pause
@@ -446,6 +450,7 @@ bbb.toolbar.deskshare.toolTip.stop = Arrêtez de partager votre écran.
bbb.toolbar.sharednotes.toolTip = Ouvrir les notes partagées
bbb.toolbar.video.toolTip.start = Partager la webcam
bbb.toolbar.video.toolTip.stop = Cesser de partager la webcam
+bbb.layout.addButton.label = Ajouter
bbb.layout.addButton.toolTip = Ajouter la mise en page personnalisée à la liste
bbb.layout.overwriteLayoutName.title = Remplacer la mise en page
bbb.layout.overwriteLayoutName.text = Nom déjà utilisé. Voulez-vous écraser?
@@ -459,7 +464,10 @@ bbb.layout.combo.custom = * Mise en page personnalisée
bbb.layout.combo.customName = Mise en page personnalisée
bbb.layout.combo.remote = Distant
bbb.layout.window.name = Nom de la mise en page
+bbb.layout.window.close.tooltip = Fermer
+bbb.layout.window.close.accessibilityName = Fermer créer une nouvelle fenêtre de mise en page.
bbb.layout.save.complete = Les mises en page ont été sauvegardées
+bbb.layout.save.ioerror = Les mises en page n'ont pas été sauvgardés. Essayez d'enregistrer à nouveau.
bbb.layout.load.complete = Les mises en page ont été téléchargées
bbb.layout.load.failed = Impossible de charger les mises en page
bbb.layout.sync = Votre mise en page a été envoyée à tous les participants
@@ -468,7 +476,7 @@ bbb.layout.name.closedcaption = Sous-titrage
bbb.layout.name.videochat = Clavardage vidéo
bbb.layout.name.webcamsfocus = Webconférence
bbb.layout.name.presentfocus = Visioconférence
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers = Présentation + Utilisateurs
bbb.layout.name.lectureassistant = Assistant de lecture
bbb.layout.name.lecture = Lecture
bbb.layout.name.sharednotes = Notes partagées
@@ -493,7 +501,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Couleur de la marque
bbb.highlighter.toolbar.thickness = Changer l'épaisseur
bbb.highlighter.toolbar.thickness.accessibilityName = Épaisseur du trait
bbb.highlighter.toolbar.multiuser = Dessin multi-utilisateur
-bbb.logout.title = Déconnecté
bbb.logout.button.label = OK
bbb.logout.appshutdown = L'application serveur a été arrêté
bbb.logout.asyncerror = Un erreur de synchronisation est survenu
@@ -505,9 +512,11 @@ bbb.logout.unknown = Votre client a perdu la connexion au serveur
bbb.logout.guestkickedout = Le modérateur ne vous a pas permis de participer à cette réunion
bbb.logout.usercommand = Vous êtes maintenant déconnecté de la conférence
bbb.logour.breakoutRoomClose = La fenêtre de votre navigateur sera fermée
-bbb.logout.ejectedFromMeeting = Un modérateur vous a expulsé de la réunion.
+bbb.logout.ejectedFromMeeting = Vous avez éjecter de la rencontre
bbb.logout.refresh.message = Si cette fin de session était involontaire, cliquer le bouton ci-bas pour vous reconnecter.
bbb.logout.refresh.label = Reconnecter
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
bbb.settings.title = Paramètres
bbb.settings.ok = OK
bbb.settings.cancel = Annuler
@@ -532,32 +541,33 @@ bbb.notes.saveBtn = Sauvegarder
bbb.notes.saveBtn.toolTip = Sauvegarder la note
bbb.sharedNotes.title = Notes partagées
bbb.sharedNotes.quickLink.label = Module des notes partagées
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
+bbb.sharedNotes.createNoteWindow.label = Nom de la note
+bbb.sharedNotes.createNoteWindow.close.tooltip = Fermer
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Fermer créer une nouvelle fenêtre de note
bbb.sharedNotes.typing.single = {0} tape...
bbb.sharedNotes.typing.double = {0} et {1} tapent ...
bbb.sharedNotes.typing.multiple = Plusieurs personnes tapent ...
bbb.sharedNotes.save.toolTip = Sauvegarder les notes dans un fichier
bbb.sharedNotes.save.complete = Les notes ont été sauvegardées
+bbb.sharedNotes.save.ioerror = Les notes n'ont pas été sauvgardés. Essayez d'enregistrer à nouveau.
bbb.sharedNotes.save.htmlLabel = Texte formaté (.html)
bbb.sharedNotes.save.txtLabel = Texte brut (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
+bbb.sharedNotes.new.label = Créer
+bbb.sharedNotes.new.toolTip = Créer une note supplémentaire
+bbb.sharedNotes.limit.label = Limite de notes atteinte
+bbb.sharedNotes.clear.label = Effacer cette note
bbb.sharedNotes.undo.toolTip = Annuler la modification
bbb.sharedNotes.redo.toolTip = Rétablir la modification
bbb.sharedNotes.toolbar.toolTip = Barre d'outils de mise en forme de texte
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
+bbb.sharedNotes.settings.toolTip = Paramètres de notes partagées
+bbb.sharedNotes.clearWarning.title = Nettoyage des notes partagées
+bbb.sharedNotes.clearWarning.message = Cette action détruit les notes sur cette fenêtre pour tout le monde, et il n'y a aucun moyen de défaire. Êtes-vous sûr de vouloir fermer ces notes?
bbb.sharedNotes.additionalNotes.closeWarning.title = Fermer les notes partagées
bbb.sharedNotes.additionalNotes.closeWarning.message = Cette action détruit les notes sur cette fenêtre pour tout le monde, et il n'y a aucun moyen de défaire. Êtes-vous sûr de vouloir fermer ces notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.messageLengthWarning.title = Limite de changement de caractère dépassée
+bbb.sharedNotes.messageLengthWarning.text = Votre modification dépasse la limite de {0}. Essayez de faire un petit changement.
+bbb.sharedNotes.remaining.tooltip = Espace restant disponible dans les notes partagées
+bbb.sharedNotes.full.tooltip = Capacité atteinte (essayez de supprimer du texte)
bbb.settings.deskshare.instructions = Choisissez Permettre sur la boîte de dialogue qui apparaîtra pour voir si le partage d'écran fonctionne convenablement pour vous
bbb.settings.deskshare.start = Regarder le partage d'écran
bbb.settings.voice.volume = Activité du micro
@@ -568,7 +578,7 @@ bbb.settings.flash.label = Erreur de la version de Flash
bbb.settings.flash.text = Vous avez Flash {0} d'installé, mais vous devez avoir au moins la version {1} pour utiliser BigBlueButton convenablement. Pour installer la version la plus récente de Adobe Flash, cliquez sur le bouton ci-dessous.
bbb.settings.flash.command = Installer la nouvelle version de Flash
bbb.settings.isight.label = Erreur de webcam iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text = Si vous avez des problèmes avec votre webcam iSight, c'est peut-être parce que vous utilisez OS X 10.6.5, qui est connu pour avoir un problème avec la capture de vidéo Flash.\nPour corriger cela, le lien ci-dessous va installer une nouvelle version de Flash, ou mettre à jour votre Mac vers la nouvelle version.
bbb.settings.isight.command = Installer Flash 10.2 RC2
bbb.settings.warning.label = Attention
bbb.settings.warning.close = Fermer ce message
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Ajuster les pages à la page
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Faire de la personne sélectionnée le présentateur
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Éjecter la personne sélectionnée de la rencontre
+bbb.shortcutkey.users.kick.function = Supprimer la personne sélectionnée de la réunion
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Activer ou désactiver la sourdine pour la personne sélectionnée
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Publier
bbb.polling.closeButton.label = Fermer
bbb.polling.customPollOption.label = Votes personnalisés...
bbb.polling.pollModal.title = Résultats de sondage en direct
+bbb.polling.pollModal.hint = Laissez cette fenêtre ouverte pour permettre aux étudiants de répondre au sondage. La sélection du bouton Publier ou Fermer met fin au sondage.
bbb.polling.customChoices.title = Entrez les choix de vote
bbb.polling.respondersLabel.novotes = En attente de réponses
bbb.polling.respondersLabel.text = {0} utilisateurs ont répondu
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Appliquer les paramètres de verrouillage
bbb.lockSettings.cancel = Annuler
bbb.lockSettings.cancel.toolTip = Fermer cette fenêtre sans sauvegarder
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Verrouillage du modérateur
bbb.lockSettings.privateChat = Clavardage privé
bbb.lockSettings.publicChat = Clavardage public
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Micro
bbb.lockSettings.layout = Mise en page
bbb.lockSettings.title=Verrouiller les participants
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Barrez lorsque joint
bbb.users.breakout.breakoutRooms = Salles de discussion
bbb.users.breakout.updateBreakoutRooms = Mettre à jour les salles de discussion
+bbb.users.breakout.timerForRoom.toolTip = Temps restant pour les salles de discussion
bbb.users.breakout.timer.toolTip = Temps restant pour les salles de discussion
bbb.users.breakout.calculatingRemainingTime = Calcul du temps restant...
bbb.users.breakout.closing = Fermer
+bbb.users.breakout.closewarning.text = Les salles de discussions ferment dans une minute.
bbb.users.breakout.rooms = Chambres
bbb.users.breakout.roomsCombo.accessibilityName = Nombre de salles à créer
bbb.users.breakout.room = Chambre
-bbb.users.breakout.randomAssign = Assigner les utilisateurs au hasard
bbb.users.breakout.timeLimit = Limite de temps
bbb.users.breakout.durationStepper.accessibilityName = Limite de temps en minutes
bbb.users.breakout.minutes = Minutes
@@ -836,11 +850,11 @@ bbb.users.breakout.closeAllRooms = Fermer toutes les salles de discussion
bbb.users.breakout.insufficientUsers = Nombre insuffisant d'utilisateurs. Vous devez placer au moins un utilisateur dans une salle d'ateliers.
bbb.users.breakout.confirm = Rejoindre une salle de discussion
bbb.users.breakout.invited = Vous avez été invité à vous joindre à la salle de discussion
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
+bbb.users.breakout.accept = En acceptant, vous quitterez automatiquement les conférences audio et vidéo.
bbb.users.breakout.joinSession = Se joindre à la session.
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
+bbb.users.breakout.joinSession.accessibilityName = Rejoindre une salle de discussion
+bbb.users.breakout.joinSession.close.tooltip = Fermer
+bbb.users.breakout.joinSession.close.accessibilityName = Fermer la fenêtre de la salle de discussion
bbb.users.breakout.youareinroom = Vous êtes dans la salle de discussion {0}
bbb.users.roomsGrid.room = Chambre
bbb.users.roomsGrid.users = Utilisateurs
@@ -850,54 +864,8 @@ bbb.users.roomsGrid.join = Joindre
bbb.users.roomsGrid.noUsers = Pas d'utilisateurs dans cette salle
bbb.langSelector.default=Language par défaut
-bbb.langSelector.ar=Arabe
-bbb.langSelector.az_AZ=Azerbaïdjanais
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgare
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinois (simplifié)
-bbb.langSelector.zh_TW=Chinois (traditionnel)
-bbb.langSelector.hr_HR=Croate
-bbb.langSelector.cs_CZ=Tchèque
-bbb.langSelector.da_DK=Danois
-bbb.langSelector.nl_NL=Hollandais
-bbb.langSelector.en_US=Anglais
-bbb.langSelector.et_EE=Estonien
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finlandais
-bbb.langSelector.fr_FR=Français
-bbb.langSelector.fr_CA=Français (canadien)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=Allemand
-bbb.langSelector.el_GR=Grec
-bbb.langSelector.he_IL=Hébreu
-bbb.langSelector.hu_HU=Hongrois
-bbb.langSelector.id_ID=Indonésien
-bbb.langSelector.it_IT=Italien
-bbb.langSelector.ja_JP=Japonais
-bbb.langSelector.ko_KR=Coréen
-bbb.langSelector.lv_LV=Letton
-bbb.langSelector.lt_LT=Lituanie
-bbb.langSelector.mn_MN=Mongol
-bbb.langSelector.ne_NE=Népalais
-bbb.langSelector.no_NO=Norvégien
-bbb.langSelector.pl_PL=polonais
-bbb.langSelector.pt_BR=Portugais (brésilien)
-bbb.langSelector.pt_PT=Portugais
-bbb.langSelector.ro_RO=Roumain
-bbb.langSelector.ru_RU=Russe
-bbb.langSelector.sr_SR=Serbe (cyrillique)
-bbb.langSelector.sr_RS=Serbe (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovaque
-bbb.langSelector.sl_SL=Slovène
-bbb.langSelector.es_ES=Espanol
-bbb.langSelector.es_LA=Espagnol (latino-américain)
-bbb.langSelector.sv_SE=Suédois
-bbb.langSelector.th_TH=Thaïlandais
-bbb.langSelector.tr_TR=Turc
-bbb.langSelector.uk_UA=Ukrainien
-bbb.langSelector.vi_VN=Vietnamien
-bbb.langSelector.cy_GB=Gallois
-bbb.langSelector.oc=Occitan
+
+bbb.alert.cancel = Annuler
+bbb.alert.ok = OK
+bbb.alert.no = Non
+bbb.alert.yes = Oui
diff --git a/bigbluebutton-client/locale/fr_FR/bbbResources.properties b/bigbluebutton-client/locale/fr_FR/bbbResources.properties
index 5bd5ebb3b03e..d1529d0ff295 100644
--- a/bigbluebutton-client/locale/fr_FR/bbbResources.properties
+++ b/bigbluebutton-client/locale/fr_FR/bbbResources.properties
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = Connexion
bbb.micSettings.webrtc.transferring = Transfert en cours
bbb.micSettings.webrtc.endingecho = Connexion à la conversation audio en cours
bbb.micSettings.webrtc.endedecho = Test d'écho terminé.
+bbb.micPermissions.message.browserhttp = Ce serveur n'est pas configuré avec SSL. Il en résulte, {0} désactive le partage de votre microphone.
bbb.micPermissions.firefox.title = Permission d'utilisation du microphone par Firefox
bbb.micPermissions.firefox.message = Cliquez sur Autoriser pour donner à Firefox la permission d'utiliser votre microphone
bbb.micPermissions.chrome.title = Permission d'utilisation du microphone par Chrome
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Cette session ne peut être enreg
bbb.mainToolbar.recordBtn.confirm.title = Confirmer l'enregistrement
bbb.mainToolbar.recordBtn.confirm.message.start = Êtes-vous sur de vouloir démarrer l'enregistrement de cette session ?
bbb.mainToolbar.recordBtn.confirm.message.stop = Êtes-vous sur de vouloir arrêter l'enregistrement de cette session ?
-bbb.mainToolbar.recordBtn..notification.title = Notification d'enregistrement
-bbb.mainToolbar.recordBtn..notification.message1 = Vous pouvez enregistrer cette conférence.
-bbb.mainToolbar.recordBtn..notification.message2 = Vous devez activer le bouton Démarrer/Arrêter l'enregistrement dans la barre de titre pour débuter/terminer l'enregistrement.
+bbb.mainToolbar.recordBtn.notification.title = Notification d'enregistrement
+bbb.mainToolbar.recordBtn.notification.message1 = Vous pouvez enregistrer cette conférence.
+bbb.mainToolbar.recordBtn.notification.message2 = Vous devez activer le bouton Démarrer/Arrêter l'enregistrement dans la barre de titre pour débuter/terminer l'enregistrement.
bbb.mainToolbar.recordingLabel.recording = (Enregistrement en cours)
bbb.mainToolbar.recordingLabel.notRecording = Pas en cours d'enregistrement
bbb.waitWindow.waitMessage.message = Vous êtes un invité, veuillez attendre l'approbation du modérateur.
@@ -214,7 +215,7 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Désactiver la sourdine pour
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Activer la sourdine pour {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Verrouiller {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Déverrouiller {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Éjecter {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser = Enlever {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam en cours de partage
bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone inactif
bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone actif
@@ -500,7 +501,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Couleur de la marque
bbb.highlighter.toolbar.thickness = Changer l'épaisseur
bbb.highlighter.toolbar.thickness.accessibilityName = Épaisseur du trait
bbb.highlighter.toolbar.multiuser = Dessin Multi-utilisateurs
-bbb.logout.title = Déconnecté
bbb.logout.button.label = OK
bbb.logout.appshutdown = L'application serveur a été arrêtée
bbb.logout.asyncerror = Une erreur de synchronisation est survenue
@@ -512,9 +512,11 @@ bbb.logout.unknown = Votre client a perdu la connexion au serveur
bbb.logout.guestkickedout = Le modérateur ne vous a pas autorisé à rejoindre cette conférence.
bbb.logout.usercommand = Vous êtes maintenant déconnecté de la conférence
bbb.logour.breakoutRoomClose = La fenêtre de votre navigateur va se fermer
-bbb.logout.ejectedFromMeeting = Un modérateur vous a éjecté de la conférence.
+bbb.logout.ejectedFromMeeting = Vous avez été enlevé de la conférence.
bbb.logout.refresh.message = Si cette déconnexion était inattendue, cliquez sur le bouton ci-dessous pour vous reconnecter.
bbb.logout.refresh.label = Se reconnecter
+bbb.logout.feedback.hint = Comment pouvons-nous rendre BigBlueButton meilleur?
+bbb.logout.feedback.label = Nous serions ravis d'entendre parler de votre expérience avec BigBlueButton (facultatif)
bbb.settings.title = Paramètres
bbb.settings.ok = OK
bbb.settings.cancel = Annuler
@@ -710,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Ajuster les diapositives à la page
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Faire de la personne sélectionnée le présentateur
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Éjecter la personne sélectionnée de la conférence
+bbb.shortcutkey.users.kick.function = Enlever de la conférence la personne sélectionnée.
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Activer ou désactiver la sourdine pour la personne sélectionnée
bbb.shortcutkey.users.muteall = 65
@@ -811,10 +813,12 @@ bbb.lockSettings.save.tooltip = Appliquer les paramètres de verrouillage
bbb.lockSettings.cancel = Annuler
bbb.lockSettings.cancel.toolTip = Fermer cette fenêtre sans sauvegarder
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Verrouillage du modérateur
bbb.lockSettings.privateChat = Discussion privée
bbb.lockSettings.publicChat = Discussion publique
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Microphone
bbb.lockSettings.layout = Disposition
bbb.lockSettings.title=Verrouiller les spectateurs
@@ -828,10 +832,10 @@ bbb.users.breakout.timerForRoom.toolTip = Temps imparti pour cette salle de grou
bbb.users.breakout.timer.toolTip = Temps imparti pour les salles de groupe
bbb.users.breakout.calculatingRemainingTime = Calcul du temps restant...
bbb.users.breakout.closing = Fermeture
+bbb.users.breakout.closewarning.text = Les salles de groupe ferment dans une minute.
bbb.users.breakout.rooms = Salles
bbb.users.breakout.roomsCombo.accessibilityName = Nombre de salles à créer
bbb.users.breakout.room = Salle
-bbb.users.breakout.randomAssign = Affecter les utilisateurs aléatoirement
bbb.users.breakout.timeLimit = Limite de temps
bbb.users.breakout.durationStepper.accessibilityName = Limite de temps en minutes
bbb.users.breakout.minutes = Minutes
@@ -860,3 +864,8 @@ bbb.users.roomsGrid.join = Rejoindre
bbb.users.roomsGrid.noUsers = Pas d'utilisateur dans cette salle
bbb.langSelector.default=Langue par défaut
+
+bbb.alert.cancel = Annuler
+bbb.alert.ok = OK
+bbb.alert.no = No
+bbb.alert.yes = Oui
diff --git a/bigbluebutton-client/locale/gl/bbbResources.properties b/bigbluebutton-client/locale/gl/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/gl/bbbResources.properties
+++ b/bigbluebutton-client/locale/gl/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/gl_ES/bbbResources.properties b/bigbluebutton-client/locale/gl_ES/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/gl_ES/bbbResources.properties
+++ b/bigbluebutton-client/locale/gl_ES/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/he_IL/bbbResources.properties b/bigbluebutton-client/locale/he_IL/bbbResources.properties
index 77c1eb0e96c3..4b3bd9c2ac36 100644
--- a/bigbluebutton-client/locale/he_IL/bbbResources.properties
+++ b/bigbluebutton-client/locale/he_IL/bbbResources.properties
@@ -1,159 +1,160 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = מתחבר לשרת
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = לצערנו לא הצלחנו להתחבר לשרת
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = פתח חלון רשם\n
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = אפס תבנית
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = יתכן שקיימים תרגומים ישנים של התוכנה
bbb.oldlocalewindow.reminder2 = בבקשה לנקות את הסליק של הדפדפן ולנסות שוב
bbb.oldlocalewindow.windowTitle = אזהרה: תרגומים ישנים
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
bbb.micSettings.title = בדיקת אודיו
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = השמע צליל נסיון
bbb.micSettings.playSound.toolTip = נגן את המוזיקה על מנצ לבדוק את הרמקולים שלך
bbb.micSettings.hearFromHeadset = אתה אמור לשמוע צליל באוזניות, לא ברמקולים של המחשב
bbb.micSettings.speakIntoMic = אם אתה משתמש בדיבורית (או אוזניות), אתה אמור לשמוע את קול באוזנייה - לא מהרמקולים של המחשב.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = החלף מיקרופון
bbb.micSettings.changeMic.toolTip = פתח את תבית ההגדרות המיקרופון מהנגן פלאש
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = הצטרף לשיחה קולית
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = ביטול
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
bbb.micSettings.cancel.toolTip = לבטל כניסה לשיחת ועידת אודיו
bbb.micSettings.access.helpButton = עזרה (פתיחת סרטוני הדרכה הם בדף חדש)
bbb.micSettings.access.title = הגדרות אודיו. הפוקוס יישאר על החלון הגדרות שמע זה עד סגירת החלון.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = עזרה
bbb.mainToolbar.logoutBtn = התנתק
bbb.mainToolbar.logoutBtn.toolTip = להתנתק
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = בחירת שפה
bbb.mainToolbar.settingsBtn = הגדרות
bbb.mainToolbar.settingsBtn.toolTip = הגדרות פתוחות
bbb.mainToolbar.shortcutBtn = מקשי קיצור
bbb.mainToolbar.shortcutBtn.toolTip = פתח את החלון קיצורי מקשים
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = מזעור
bbb.window.maximizeRestoreBtn.toolTip = הגדלה
bbb.window.closeBtn.toolTip = סגירה
@@ -162,7 +163,7 @@ bbb.presentation.titleBar = פס כותרת החלון של המצגת
bbb.chat.titleBar = פס כותרת החלון של הצ'אט
bbb.users.title = משתמשים{0} {1}
bbb.users.titleBar = פס כותרת החלון של המשתמשים
-bbb.users.quickLink.label = Users Window
+bbb.users.quickLink.label =
bbb.users.minimizeBtn.accessibilityName = מזער את חלון המשתמשים
bbb.users.maximizeRestoreBtn.accessibilityName = הגדל את חלון המשתמשים
bbb.users.settings.buttonTooltip = הגדרות
@@ -171,16 +172,16 @@ bbb.users.settings.webcamSettings = הגדרות מצלמת אינטרנט
bbb.users.settings.muteAll = השתק את כל המשתמשים
bbb.users.settings.muteAllExcept = השתק את כל המשתמשים מלבד המגיש
bbb.users.settings.unmuteAll = ביטול השתקה כל המשתמשים
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = דבר
bbb.users.pushToMute.toolTip = השתק את עצמך
bbb.users.muteMeBtnTxt.talk = ביטול השתקה
bbb.users.muteMeBtnTxt.mute = השתק
bbb.users.muteMeBtnTxt.muted = מושתק
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = רשימת המשתמשים. השתמש במקשי החצים כדי לנווט.
bbb.users.usersGrid.nameItemRenderer = שם
bbb.users.usersGrid.nameItemRenderer.youIdentifier = את(ה)
@@ -188,24 +189,24 @@ bbb.users.usersGrid.statusItemRenderer = סטטוס
bbb.users.usersGrid.statusItemRenderer.changePresenter = לחץ כדי להפוך מגיש
bbb.users.usersGrid.statusItemRenderer.presenter = מגיש
bbb.users.usersGrid.statusItemRenderer.moderator = מנחה
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = מדיה
bbb.users.usersGrid.mediaItemRenderer.talking = מדברים
bbb.users.usersGrid.mediaItemRenderer.webcam = שיתוף מצלמת אינטרנט
@@ -214,40 +215,41 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Translate\n\nUnmute\nלבטל
bbb.users.usersGrid.mediaItemRenderer.pushToMute = להשתיק {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = לנעול {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = לבטל נעילה {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = להעיף {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = שיתוף מצלמת אינטרנט
bbb.users.usersGrid.mediaItemRenderer.micOff = מיקרופון כבוי
bbb.users.usersGrid.mediaItemRenderer.micOn = מיקרופון מופעל
bbb.users.usersGrid.mediaItemRenderer.noAudio = לא בשיחת ועידה אודיו
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = מצגת
bbb.presentation.titleWithPres = הצגה: {0}
-bbb.presentation.quickLink.label = Presentation Window
+bbb.presentation.quickLink.label =
bbb.presentation.fitToWidth.toolTip = התמה הצגה לרוחב
bbb.presentation.fitToPage.toolTip = התמה הצגה לעמוד
bbb.presentation.uploadPresBtn.toolTip = העלת ההצגה
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = שקופית קודמת
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
+bbb.presentation.btnSlideNum.accessibilityName =
bbb.presentation.btnSlideNum.toolTip = בחר שקופית
bbb.presentation.forwardBtn.toolTip = שקופית הבאה
bbb.presentation.maxUploadFileExceededAlert = שגיאה: קובץ גדול מהמותר
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = העלאה הסתיימה בהצלחה. אנא
bbb.presentation.uploaded = הועלה
bbb.presentation.document.supported = סוג המסמך נתמך, מתחיל להמיר..
bbb.presentation.document.converted = מסמך הומר בהצלחה
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = שגיאת IO: אנא צור קשר עם מנהל המערכת
bbb.presentation.error.security = שגיאת אבטחה: אנא צור קשר עם מנהל המערכת
bbb.presentation.error.convert.notsupported = שגיאה: סוג הקובץ שהועלה אינו נתמך, אנא העלה קובץ נתמך
@@ -264,8 +266,8 @@ bbb.presentation.error.convert.nbpage = שגיאה: לא הייתה אפשרות
bbb.presentation.error.convert.maxnbpagereach = שגיאה: למסמך שהועלה יותר מדי עמודים
bbb.presentation.converted = הומרו {0} מתוך {1} שקופיות
bbb.presentation.slider = רמת הזום של המצגה
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = קובץ המצגת
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
@@ -276,79 +278,80 @@ bbb.presentation.minimizeBtn.accessibilityName = הקטן את החלון ההצ
bbb.presentation.maximizeRestoreBtn.accessibilityName = הגדל את החלון ההצגה
bbb.presentation.closeBtn.accessibilityName = סגור את החלון ההצגה
bbb.fileupload.title = העלה מצגת
-bbb.fileupload.lblFileName.defaultText = No file selected
+bbb.fileupload.lblFileName.defaultText =
bbb.fileupload.selectBtn.label = בחר קובץ
bbb.fileupload.selectBtn.toolTip = עיון
bbb.fileupload.uploadBtn = העלה קובץ
bbb.fileupload.uploadBtn.toolTip = העלה קובץ
bbb.fileupload.deleteBtn.toolTip = מחק מצגת
bbb.fileupload.showBtn = הצג
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = הפעל מצגת
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = מייצר תמונות מוקטנות...
bbb.fileupload.progBarLbl = התקדמות:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = צ'אט
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = צבע טקסט
bbb.chat.input.accessibilityName = שדה לעריכת הודעת צ'אט
bbb.chat.sendBtn.toolTip = שלח הודעה
bbb.chat.sendBtn.accessibilityName = שלח הודעה בצ'אט
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = הכל
bbb.chat.optionsTabName = אפשרויות
bbb.chat.privateChatSelect = בחר אדם איתו תרצה לשוחח באופן פרטי
bbb.chat.private.userLeft = המשתמש יצאה
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = בחר המשתמש לפתיחת שיחה פרטית
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = אפשרויות צ'אט
bbb.chat.fontSize = גודל טקסט
bbb.chat.cmbFontSize.toolTip = בחר את גודל הטקסט בצ׳אט
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = הקטן את חלון הצ׳אט
bbb.chat.maximizeRestoreBtn.accessibilityName = הגדלת למקסימום את חלון הצ׳אט
bbb.chat.closeBtn.accessibilityName = סגור את חלון הצ׳אט
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = שנה את מצלמת האינטרנט
bbb.publishVideo.changeCameraBtn.toolTip = פתח את חלון המצלמת האינטרנט
bbb.publishVideo.cmbResolution.tooltip = בחר את הרזולוציה של המצלמת האינטרנט
bbb.publishVideo.startPublishBtn.labelText = תתחיל לשתף
bbb.publishVideo.startPublishBtn.toolTip = שתף ווידאו
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = עגינת ווידאו
-bbb.videodock.quickLink.label = Webcams Window
+bbb.videodock.quickLink.label =
bbb.video.minimizeBtn.accessibilityName = הקטן את החלון של המצלמת האינטרנט
bbb.video.maximizeRestoreBtn.accessibilityName = הגדל למקסימום את החלון של המצלמת האינטרנט
bbb.video.controls.muteButton.toolTip = השתיק או בטל ההשתקה {0}
@@ -366,538 +369,503 @@ bbb.video.publish.hint.publishing = מפרסם...
bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
bbb.video.publish.closeBtn.label = ביטול
bbb.video.publish.titleBar = פרסם את חלון המצלמה
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = מדגיש
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
+bbb.highlighter.toolbar.pencil.accessibilityName =
bbb.highlighter.toolbar.ellipse = עיגול
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
+bbb.highlighter.toolbar.ellipse.accessibilityName =
bbb.highlighter.toolbar.rectangle = מרובע
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
bbb.highlighter.toolbar.color = בחר צבע
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = שנה עובי
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = אישור
bbb.logout.appshutdown = התוכנה נסגרה בצד שרת
bbb.logout.asyncerror = התרחשה שגיאה א-סינכרונית
bbb.logout.connectionclosed = נסגר הקשר לשרת המרוחק
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = נדחה הקשר מהשרת המרוחק
bbb.logout.invalidapp = אפליקצית רד5 לא קיימת
bbb.logout.unknown = הלקוח איבד קשר עם השרת
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = נותקת מהוועידה
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = לחץ על Allow בחלון שיקפוץ כדי לבדוק האם שיתוף שולחן העבודה עובד בצורה תקינה אצלך
bbb.settings.deskshare.start = בדוק את שיתוף שולחן העבודה
bbb.settings.voice.volume = פעילות מיקרופון
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = שגיאה בגרסת פלאש
bbb.settings.flash.text = אצלך מותקנת גירסה {0}, אבל דרושה לפחות גירסה {1} של פלאש על מנת להפעיל את BighBlueButton.\nלחץ על הכפתור למטה על מנת להתקין את הגרסה החדשה ביותר של פלאש
bbb.settings.flash.command = התקן גרסה עדכנית של פלאש
bbb.settings.isight.label = שגיאת מצלמת iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = התקן Flash 10.2 RC2
bbb.settings.warning.label = אזהרה
bbb.settings.warning.close = סגורה אזהרה זו
bbb.settings.noissues = לא התגלו נושאים בלתי פתורים
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
bbb.shortcuthelp.title = מקשי קיצור
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
bbb.shortcutkey.chat.sendMessage.function = Translate\n\nSend chat message\nשלח הודעה בצ'אט
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = סגור
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = תתחיל לשתף
bbb.publishVideo.changeCameraBtn.labelText = שנה את מצלמת האינטרנט
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = ביטול
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/hi/bbbResources.properties b/bigbluebutton-client/locale/hi/bbbResources.properties
index e335debb7975..c64986623aa7 100644
--- a/bigbluebutton-client/locale/hi/bbbResources.properties
+++ b/bigbluebutton-client/locale/hi/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = सर्वर से कनेक्ट हो रहा है
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = क्षमा करें, हम सर्वर से कनेक्ट नहीं कर सकते
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = लॉग विंडो खोलें
@@ -9,17 +9,17 @@ bbb.mainshell.invalidAuthToken = अमान्य प्रमाणीकर
bbb.mainshell.resetLayoutBtn.toolTip = रीसेट लेआउट
bbb.mainshell.notification.tunnelling = टनेलिंग
bbb.mainshell.notification.webrtc = वेबआरटीसी ऑडियो
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = आपके पास , BigBlueButton का एक पुरानी भाषा अनुवाद हो सकता है।
bbb.oldlocalewindow.reminder2 = कृपया अपने ब्राउज़र का कैश साफ़ करें और फिर से प्रयास करें।
bbb.oldlocalewindow.windowTitle = चेतावनी: पुरानी भाषा अनुवाद
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = कनेक्ट किया जा
bbb.micSettings.webrtc.transferring = स्थानांतरण
bbb.micSettings.webrtc.endingecho = ऑडियो में शामिल हो रहा है
bbb.micSettings.webrtc.endedecho = इको टेस्ट समाप्त हुआ
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = फ़ायरफ़ॉक्स माइक्रोफोन अनुमतियां
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = क्रोम माइक्रोफ़ोन अनुमतियां
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = ऑडियो चेतावनी
bbb.micWarning.joinBtn.label = वैसे भी जुड़ें
bbb.micWarning.testAgain.label = फिर से परीक्षण करें
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = वेबआरटीसी
bbb.webrtcWarning.connection.dropped = वेबआरटीसी कनेक्शन गिरा दिया
bbb.webrtcWarning.connection.reconnecting = फिर से कनेक्ट करने का प्रयास
bbb.webrtcWarning.connection.reestablished = वेबआरटीसी कनेक्शन फिर से स्थापित
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = मदद
bbb.mainToolbar.logoutBtn = लोग आउट
bbb.mainToolbar.logoutBtn.toolTip = लॉग आउट करें
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = भाषा चुनिए
bbb.mainToolbar.settingsBtn = सेटिंग्स
bbb.mainToolbar.settingsBtn.toolTip = सेटिंग्स खोलें
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = रिकॉर्डिंग शु
bbb.mainToolbar.recordBtn.toolTip.stop = रिकॉर्डिंग बंद करें
bbb.mainToolbar.recordBtn.toolTip.recording = सत्र रिकॉर्ड किया जा रहा है
bbb.mainToolbar.recordBtn.toolTip.notRecording = सत्र रिकॉर्ड नहीं किया जा रहा है
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = रिकॉर्डिंग की पुष्टि करें
bbb.mainToolbar.recordBtn.confirm.message.start = क्या आप वाकई सत्र रिकार्ड करना शुरू करना चाहते हैं?
bbb.mainToolbar.recordBtn.confirm.message.stop = क्या आप वाकई सत्र रिकॉर्ड करना बंद करना चाहते हैं?
-bbb.mainToolbar.recordBtn..notification.title = रिकॉर्ड अधिसूचना
-bbb.mainToolbar.recordBtn..notification.message1 = आप इस मीटिंग को रिकॉर्ड कर सकते हैं
-bbb.mainToolbar.recordBtn..notification.message2 = आरंभ / अंत रिकॉर्डिंग के लिए आपको शीर्षक बार में रिकॉर्ड / रिकॉर्डिंग प्रारंभ करें को रोकना होगा।
+bbb.mainToolbar.recordBtn.notification.title = रिकॉर्ड अधिसूचना
+bbb.mainToolbar.recordBtn.notification.message1 = आप इस मीटिंग को रिकॉर्ड कर सकते हैं
+bbb.mainToolbar.recordBtn.notification.message2 = आरंभ / अंत रिकॉर्डिंग के लिए आपको शीर्षक बार में रिकॉर्ड / रिकॉर्डिंग प्रारंभ करें को रोकना होगा।
bbb.mainToolbar.recordingLabel.recording = रिकॉर्ड किया जा रहा है...
bbb.mainToolbar.recordingLabel.notRecording = रिकॉर्डिंग नहीं
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = विन्यास सूचनाएं
bbb.clientstatus.notification = अपठित सूचनाएं
bbb.clientstatus.close = बंद करे
@@ -150,10 +151,10 @@ bbb.clientstatus.webrtc.almostStrongStatus = आपका WebRTC ऑडियो
bbb.clientstatus.webrtc.almostWeakStatus = आपका WebRTC ऑडिओ कनेक्शन खराब है
bbb.clientstatus.webrtc.weakStatus = शायद आपके WebRTC ऑडियो कनेक्शन में कोई समस्या है
bbb.clientstatus.webrtc.message = बेहतर ऑडियो के लिए फ़ायरफ़ॉक्स या क्रोम का उपयोग करने की सलाह दें
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = छोटा करें
bbb.window.maximizeRestoreBtn.toolTip = बड़ा करें
bbb.window.closeBtn.toolTip = बंद करे
@@ -188,15 +189,15 @@ bbb.users.usersGrid.statusItemRenderer = स्थिति
bbb.users.usersGrid.statusItemRenderer.changePresenter = प्रस्तुतकर्ता को बनाने के लिए क्लिक करें
bbb.users.usersGrid.statusItemRenderer.presenter = प्रस्तुतकर्ता
bbb.users.usersGrid.statusItemRenderer.moderator = मंदक
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
bbb.users.usersGrid.statusItemRenderer.away = बाहर
bbb.users.usersGrid.statusItemRenderer.confused = अस्पष्ट
bbb.users.usersGrid.statusItemRenderer.neutral = निष्पक्ष
@@ -214,13 +215,13 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = अनम्यूट कर
bbb.users.usersGrid.mediaItemRenderer.pushToMute = मौन करें
bbb.users.usersGrid.mediaItemRenderer.pushToLock = ताला
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = अनलॉक
-bbb.users.usersGrid.mediaItemRenderer.kickUser = लात मारना
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = वेबकैम साझा करना
bbb.users.usersGrid.mediaItemRenderer.micOff = माइक्रोफ़ोन बंद
bbb.users.usersGrid.mediaItemRenderer.micOn = माइक्रोफ़ोन चालू है
bbb.users.usersGrid.mediaItemRenderer.noAudio = ऑडियो सम्मेलन में नहीं
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = साफ़ करें
bbb.users.emojiStatus.raiseHand = कहना चाहता हूँ
bbb.users.emojiStatus.happy = आनंदित
@@ -230,22 +231,23 @@ bbb.users.emojiStatus.confused = अस्पष्ट
bbb.users.emojiStatus.away = बाहर
bbb.users.emojiStatus.thumbsUp = शाबाश
bbb.users.emojiStatus.thumbsDown = नाकामयाब
-bbb.users.emojiStatus.applause = Applause
+bbb.users.emojiStatus.applause =
bbb.users.emojiStatus.agree = मै सहमत हुं
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = प्रेजेंटेशन
bbb.presentation.titleWithPres = {0}{/0} {1} {/1} {2}प्रजेन्टेशन{/2}
bbb.presentation.quickLink.label = प्रस्तुति विंडो
bbb.presentation.fitToWidth.toolTip = चौड़ाई के लिए प्रस्तुति फ़िट करें
bbb.presentation.fitToPage.toolTip = पेज के लिए प्रस्तुति फ़िट करें
bbb.presentation.uploadPresBtn.toolTip = प्रस्तुति अपलोड करें
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = -- पिछली स्लाइड --
bbb.presentation.btnSlideNum.accessibilityName = {1} का {0} स्लाइड
bbb.presentation.btnSlideNum.toolTip = एक स्लाइड चुनें
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = अपलोड पूरा हुआ कृ
bbb.presentation.uploaded = अपलोड सम्पूर्ण
bbb.presentation.document.supported = अपलोड किया गया दस्तावेज़ समर्थित है। कन्वर्ट करने के लिए शुरू ...
bbb.presentation.document.converted = कार्यालय दस्तावेज़ को सफलतापूर्वक रूपांतरित किया।
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = कृपया इस दस्तावेज़ को पीडीएफ में पहली बार कनवर्ट करें।
bbb.presentation.error.io = आईओ त्रुटि: व्यवस्थापक से संपर्क करें।
bbb.presentation.error.security = सुरक्षा त्रुटि: कृपया व्यवस्थापक से संपर्क करें।
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = अपलोड
bbb.fileupload.uploadBtn.toolTip = चयनित फ़ाइल अपलोड करें
bbb.fileupload.deleteBtn.toolTip = प्रस्तुति हटाएं
bbb.fileupload.showBtn = दिखाएँ
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = प्रस्तुति दिखाएं
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = जनरेटिंग थंबनेल ..
bbb.fileupload.progBarLbl = progress
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = चैट
bbb.chat.quickLink.label = चैट विंडो
bbb.chat.cmpColorPicker.toolTip = टेक्स्ट का रंग
bbb.chat.input.accessibilityName = चैट संदेश संपादन फ़ील्ड
bbb.chat.sendBtn.toolTip = मेसेज भेजें
bbb.chat.sendBtn.accessibilityName = चैट संदेश भेजें
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
bbb.chat.copyBtn.toolTip = बातचीत की नकल करे
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = सभी पाठ को कॉपी करें
bbb.chat.publicChatUsername = सार्वजनिक
bbb.chat.optionsTabName = विकल्प
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = शेयरिंग शुरू
bbb.publishVideo.startPublishBtn.toolTip = अपने वेबकैम को साझा करना शुरू करें
bbb.publishVideo.startPublishBtn.errorName = वेबकैम को साझा नहीं किया जा सकता कारण
bbb.webcamPermissions.chrome.title = क्रोम वेबकैम अनुमतियां
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = वेबकैम
bbb.videodock.quickLink.label = वेबकैम विंडो
bbb.video.minimizeBtn.accessibilityName = वेबकैम विंडो को छोटा करें
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = वेबकैम सेटिंग्
bbb.video.publish.closeBtn.label = रद्द करना
bbb.video.publish.titleBar = वेबकैम विंडो प्रकाशित करें
bbb.video.streamClose.toolTip = के लिए स्ट्रीम बंद करें: {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = स्क्रीन साझाकरण: प्रस्तुतकर्ता का पूर्वावलोकन
bbb.screensharePublish.pause.tooltip = स्क्रीन शेयर रोकें
bbb.screensharePublish.pause.label = विराम
@@ -428,8 +432,8 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = स्क्रीन
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = ऐसा लगता है कि आप गुप्त या निजी ब्राउज़िंग का उपयोग कर सकते हैं। सुनिश्चित करें कि आपके एक्सटेंशन सेटिंग्स के अंतर्गत आप एक्सटेंशन को गुप्त / निजी ब्राउज़िंग में चलाने की अनुमति देते हैं।
bbb.screensharePublish.WebRTCExtensionInstallButton.label = स्थापित करने के लिए यहां क्लिक करें
bbb.screensharePublish.WebRTCUseJavaButton.label = जावा स्क्रीन साझाकरण का उपयोग करें
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = स्क्रीन साझा करना
bbb.screenshareView.fitToWindow = खिड़की के लिए फिट
bbb.screenshareView.actualSize = वास्तविक आकार प्रदर्शित करें
@@ -443,12 +447,13 @@ bbb.toolbar.phone.toolTip.unmute = सम्मेलन सुनना शु
bbb.toolbar.phone.toolTip.nomic = कोई माइक्रोफ़ोन नहीं मिला
bbb.toolbar.deskshare.toolTip.start = ओपन स्क्रीन शेयर प्रकाशित करें विंडो
bbb.toolbar.deskshare.toolTip.stop = अपनी स्क्रीन को साझा करना बंद करो
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = आपका वेबकैम साझा करें
bbb.toolbar.video.toolTip.stop = आपका वेबकैम साझा करना बंद करो
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = सूची में कस्टम लेआउट जोड़ें
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
bbb.layout.broadcastButton.toolTip = सभी दर्शकों के लिए वर्तमान दिखावट लागू करें
bbb.layout.combo.toolTip = अपना लेआउट बदलें
bbb.layout.loadButton.toolTip = फ़ाइल से लेआउट को लोड करें
@@ -459,23 +464,26 @@ bbb.layout.combo.custom = * कस्टम लेआउट
bbb.layout.combo.customName = कस्टम लेआउट
bbb.layout.combo.remote = रिमोट
bbb.layout.window.name = दिखावट का नाम
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = लेआउट सफलतापूर्वक सहेजे गए थे
+bbb.layout.save.ioerror =
bbb.layout.load.complete = लेआउट सफलतापूर्वक लोड किए गए थे
bbb.layout.load.failed = लेआउट लोड करने में असमर्थ
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = मूलभूत ढांचा
bbb.layout.name.closedcaption = बंद शीर्षक
bbb.layout.name.videochat = वीडियोचैट
bbb.layout.name.webcamsfocus = वेबकैम बैठक
bbb.layout.name.presentfocus = प्रस्तुति बैठक
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = व्याख्यान सहायक
bbb.layout.name.lecture = व्याख्यान.
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = पेंसिल
bbb.highlighter.toolbar.pencil.accessibilityName = सफेदबोर्ड कर्सर को पेंसिल पर स्विच करें
bbb.highlighter.toolbar.ellipse = गोला
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = रंग चुनो
bbb.highlighter.toolbar.color.accessibilityName = व्हाइटबोर्ड चिह्न रंग आकर्षित
bbb.highlighter.toolbar.thickness = मोटाई बदलें
bbb.highlighter.toolbar.thickness.accessibilityName = व्हाइटबोर्ड आकर्षित मोटाई
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = लॉग आउट
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = ठीक
bbb.logout.appshutdown = सर्वर ऐप बंद कर दिया गया है
bbb.logout.asyncerror = एक एसिंन्क त्रुटि हुई
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = सर्वर से कनेक्शन स
bbb.logout.rejected = सर्वर से कनेक्शन अस्वीकार कर दिया गया है
bbb.logout.invalidapp = लाल 5 ऐप मौजूद नहीं है
bbb.logout.unknown = आपके ग्राहक ने सर्वर से कनेक्शन खो दिया है
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = आपने सम्मेलन से लॉग आउट किया है
bbb.logour.breakoutRoomClose = आपकी ब्राउज़र विंडो बंद हो जाएगी
-bbb.logout.ejectedFromMeeting = एक मॉडरेटर ने आपको बैठक से निकाल दिया है
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = यदि यह लॉगआउट अप्रत्याशित था तो फिर से कनेक्ट करने के लिए नीचे दिए गए बटन पर क्लिक करें।
bbb.logout.refresh.label = फिर से जुड़ें
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = लॉगआउट की पुष्टि करें
bbb.logout.confirm.message = क्या आप वाकई में लॉग आउट करना चाहते हैं?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = हाँ
bbb.logout.confirm.no = नहीं
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=पता लगाया कनेक्टिविटी समस्याएं
bbb.connection.reconnecting=पुन: कनेक्ट
bbb.connection.reestablished=कनेक्शन पुन: स्थापित किया गया
@@ -530,59 +539,60 @@ bbb.notes.title = टिप्पणियाँ
bbb.notes.cmpColorPicker.toolTip = टेक्स्ट का रंग
bbb.notes.saveBtn = सेव करे
bbb.notes.saveBtn.toolTip = नोट सहेजें
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = डेस्कटॉप प्रस्तुति आपके लिए ठीक तरह से काम कर रहा है यह जांचने के लिए पॉप अप करने के लिए अनुमति दें चुनें
bbb.settings.deskshare.start = डेस्कटॉप शेयरिंग की जांच करें
bbb.settings.voice.volume = माइक्रोफोन गतिविधि
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = फ्लैश संस्करण त्रुटि
bbb.settings.flash.text = आपके पास फ्लैश {0} इंस्टॉल है, लेकिन BigBlueButton को ठीक से चलाने के लिए आपको कम से कम संस्करण {1} की आवश्यकता है नीचे दिया गया बटन नवीनतम एडोब फ़्लैश संस्करण स्थापित करेगा।
bbb.settings.flash.command = नवीनतम फ्लैश स्थापित करें
bbb.settings.isight.label = ISight वेबकैम त्रुटि
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = फ़्लैश 10.2 आरसी 2 स्थापित करें
bbb.settings.warning.label = चेतावनी
bbb.settings.warning.close = इस चेतावनी को बंद करें
bbb.settings.noissues = कोई बकाया मुद्दों का पता नहीं लगाया गया है।
bbb.settings.instructions = फ़्लैश प्रॉम्प्ट स्वीकार करें जो आपको वेबकैम अनुमति के लिए कहता है यदि अपेक्षित परिणाम से मेल खाता आउटपुट मिलता है, तो आपके ब्राउज़र को सही ढंग से सेट किया गया है अन्य संभावित मुद्दों के नीचे हैं संभव समाधान खोजने के लिए उन्हें जांचें
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
bbb.bwmonitor.current = मौजूदा
bbb.bwmonitor.available = मौजूद
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = त्रिभुज
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = व्हाइटबोर्ड कर्सर त्रिकोण पर स्विच करें
ltbcustom.bbb.highlighter.toolbar.line = रेखा
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = आपने नवीनतम
bbb.accessibility.chat.chatBox.navigatedLatestRead = आपने पढ़ा है सबसे हाल के संदेश को नेविगेट किया है।
bbb.accessibility.chat.chatwindow.input = चैट इनपुट
bbb.accessibility.chat.chatwindow.audibleChatNotification = श्रव्य चैट अधिसूचना
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = चैट संदेशों के माध्यम से नेविगेट करने के लिए कृपया तीर कुंजियों का उपयोग करें।
bbb.accessibility.notes.notesview.input = नोट्स इनपुट
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = पृष्ठ पर स्ला
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = चयनित व्यक्ति प्रस्तोता को बनाएं
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = बैठक से चुने हुए व्यक्ति को हटा दें
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = चयनित व्यक्ति को म्यूट या अनम्यूट करें
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = प्रकाशित करें
bbb.polling.closeButton.label = बंद करे
bbb.polling.customPollOption.label = कस्टम मतदान ...
bbb.polling.pollModal.title = लाइव पोल परिणाम
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = मतदान विकल्प दर्ज करें
bbb.polling.respondersLabel.novotes = प्रतिक्रियाओं की प्रतीक्षा कर रहा है
bbb.polling.respondersLabel.text = {0} उपयोगकर्ताओं ने जवाब दिया
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = लॉक सेटिंग लागू कर
bbb.lockSettings.cancel = रद्द करना
bbb.lockSettings.cancel.toolTip = बिना सहेजे इस विंडो को बंद करें
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = मॉडरेटर लॉकिंग
bbb.lockSettings.privateChat = गोपनीय बातचीत
bbb.lockSettings.publicChat = सार्वजनिक चैट
bbb.lockSettings.webcam = वेबकैम
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = माइक्रोफोन
bbb.lockSettings.layout = लेआउट (अभिन्यास)
bbb.lockSettings.title=लॉक व्यूअर
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=जुड़ें लॉक करें
bbb.users.breakout.breakoutRooms = ब्रेकआउट रूम
bbb.users.breakout.updateBreakoutRooms = ब्रेकआउट रूम अपडेट करें
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = ब्रेकआउट रूम के लिए समय बचे
bbb.users.breakout.calculatingRemainingTime = शेष समय की गणना ...
bbb.users.breakout.closing = समापन
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = कमरे
bbb.users.breakout.roomsCombo.accessibilityName = बनाने के लिए कमरों की संख्या
bbb.users.breakout.room = रूम
-bbb.users.breakout.randomAssign = बेतरतीब उपयोगकर्ता असाइन करें
bbb.users.breakout.timeLimit = समय सीमा
bbb.users.breakout.durationStepper.accessibilityName = मिनटों में समय सीमा
bbb.users.breakout.minutes = मिनट
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = आमंत्रित करें
bbb.users.breakout.close = बंद करे
bbb.users.breakout.closeAllRooms = सभी ब्रेकआउट कमरे बंद करें
bbb.users.breakout.insufficientUsers = अपर्याप्त उपयोगकर्ता आपको एक ब्रेकआउट रूम में कम से कम एक उपयोगकर्ता रखना चाहिए।
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = रूम
bbb.users.roomsGrid.users = उपयोगकर्ता
bbb.users.roomsGrid.action = कार्रवाई
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = ऑडियो ट्रांसफर कर
bbb.users.roomsGrid.join = जुड़ें
bbb.users.roomsGrid.noUsers = कोई भी उपयोगकर्ता इस कमरे में नहीं है
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=फार्सी
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=हीब्रू
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=सिन्हल
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=स्पैनिश
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/hi_IN/bbbResources.properties b/bigbluebutton-client/locale/hi_IN/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/hi_IN/bbbResources.properties
+++ b/bigbluebutton-client/locale/hi_IN/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/hr_HR/bbbResources.properties b/bigbluebutton-client/locale/hr_HR/bbbResources.properties
index 01ff7388beec..c78c6e98ee45 100644
--- a/bigbluebutton-client/locale/hr_HR/bbbResources.properties
+++ b/bigbluebutton-client/locale/hr_HR/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Povezivanje se sa serverom
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Nažalost nije moguće uspostaviti vezu sa serverom.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Otvori log prozor.
bbb.mainshell.meetingNotFound = Sastanak nije nađen
bbb.mainshell.invalidAuthToken = Autentifikacijski token nije valjan
bbb.mainshell.resetLayoutBtn.toolTip = Resetiraj izgled
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Moguće je da imate staru verziju prijevoda.
bbb.oldlocalewindow.reminder2 = Molimo ispraznite keš pretraživača i pokušajte ponovo.
bbb.oldlocalewindow.windowTitle = Upozorenje: Stara verzija prijevoda
@@ -35,7 +35,7 @@ bbb.micSettings.microphone.header = Testiraj mikrofon
bbb.micSettings.playSound = Testirajte zvučnike.
bbb.micSettings.playSound.toolTip = Pustite muziku kako biste testirali vaše zvučnike.
bbb.micSettings.hearFromHeadset = Trebalo bi da čujete zvuk u vašim slušalicama, a ne na zvučnicima vašeg računara.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
+bbb.micSettings.speakIntoMic =
bbb.micSettings.echoTestMicPrompt = Ovo je privatni echo test. Reci nekoliko riječi. Jesi li čuo audio?
bbb.micSettings.echoTestAudioYes = Da
bbb.micSettings.echoTestAudioNo = Ne
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Otkaži
bbb.micSettings.connectingtoecho = Povezivanje
bbb.micSettings.connectingtoecho.error = Echo Test Greška: Molimo kontrolirajte administratora.
bbb.micSettings.cancel.toolTip = Isključite se iz audio konferencije.
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Podešavanja zvuka. Fokus će ostati na prozoru za podešavanje zvuka, sve dok ga ne zatvorite.
bbb.micSettings.webrtc.title = WebRTC podrška
bbb.micSettings.webrtc.capableBrowser = Vaš browser podržava WebRTC.
@@ -66,94 +66,95 @@ bbb.micSettings.webrtc.waitingforice = Povezivanje
bbb.micSettings.webrtc.transferring = Prenošenje
bbb.micSettings.webrtc.endingecho = Pridružujem se audiu
bbb.micSettings.webrtc.endedecho = Echo test je završio.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox Dopuštenja Mikrofona
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome Dopuštenja Mikrofona
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Audio upozorenje
bbb.micWarning.joinBtn.label = Svejedno se pridruži
bbb.micWarning.testAgain.label = Testiraj ponovo
bbb.micWarning.message = Vaš mikrofon nije aktivan, ostali vas vjerovatno neće moći čuti tokom sesije.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
bbb.webrtcWarning.failedError.1001 = Greška 1001: WebSocket je odspojen
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
bbb.webrtcWarning.failedError.1005 = Greška 1005: Poziv je neočekivano završio
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
bbb.webrtcWarning.failedError.1008 = Greška 1008: Prijenos nije uspio
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
bbb.webrtcWarning.failedError.unknown = Greška {0}: Nepoznat kod greške
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Pomoć
bbb.mainToolbar.logoutBtn = Odjava
bbb.mainToolbar.logoutBtn.toolTip = Odjavi se
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Odaberi jezik
bbb.mainToolbar.settingsBtn = Postavke
bbb.mainToolbar.settingsBtn.toolTip = Otvori postavke
bbb.mainToolbar.shortcutBtn = Kratice Tipkovnice
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
+bbb.mainToolbar.shortcutBtn.toolTip =
bbb.mainToolbar.recordBtn.toolTip.start = Započni snimanje
bbb.mainToolbar.recordBtn.toolTip.stop = Zaustavi snimanje
bbb.mainToolbar.recordBtn.toolTip.recording = Ova sesija se snima
bbb.mainToolbar.recordBtn.toolTip.notRecording = Ova sesija se ne snima
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Potvrdi snimanje
bbb.mainToolbar.recordBtn.confirm.message.start = Da li ste sigurni da želite započeti snimanje sesije?
bbb.mainToolbar.recordBtn.confirm.message.stop = Da li ste sigurni da želite zaustaviti snimanje sesije?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = Možeš snimati ovaj sastanak.
-bbb.mainToolbar.recordBtn..notification.message2 = Moraš kliknuti na Počni/Prestani Snimati gumb kako bi počeo/prestao snimati.
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 = Možeš snimati ovaj sastanak.
+bbb.mainToolbar.recordBtn.notification.message2 = Moraš kliknuti na Počni/Prestani Snimati gumb kako bi počeo/prestao snimati.
bbb.mainToolbar.recordingLabel.recording = (Snimanje)
bbb.mainToolbar.recordingLabel.notRecording = Ne snima se
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
bbb.clientstatus.notification = Nepročitane notifikacije
bbb.clientstatus.close = Zatvori
bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
+bbb.clientstatus.tunneling.message =
bbb.clientstatus.browser.title = Verzija Web Preglednika
bbb.clientstatus.browser.message = Tvoj web preglednik ({0}) nije ažuriran. Preporučuje se korištenje najnovije verzije.
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Tvoj Flash Player plugin ({0}) nije ažuriran. Preporučuje se ažuriranje na najnoviju verziju.
bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Preporučuje se korištenje Firefoxa ili Chromea za bolji audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Smanji
bbb.window.maximizeRestoreBtn.toolTip = Povećaj
bbb.window.closeBtn.toolTip = Zatvori
@@ -173,7 +174,7 @@ bbb.users.settings.muteAllExcept = Utišaj sve korisnike izuzev prezentatora
bbb.users.settings.unmuteAll = Uključi sve korisnike
bbb.users.settings.clearAllStatus = Očisti sve status ikone
bbb.users.emojiStatusBtn.toolTip = Ažuriraj moju status ikonu
-bbb.users.roomMuted.text = Viewers Muted
+bbb.users.roomMuted.text =
bbb.users.roomLocked.text = Gledatelji Zaključani
bbb.users.pushToTalk.toolTip = Pričaj
bbb.users.pushToMute.toolTip = Utišaj sebe
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Klikni da stvoriš Prezentatora
bbb.users.usersGrid.statusItemRenderer.presenter = Prezentator
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Očisti status
bbb.users.usersGrid.statusItemRenderer.viewer = Preglednik
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Dijeljenje webkamere.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Uključi {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Isključi {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Zaključaj {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Otključaj {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Trzni {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Dijeljenje web kamere
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon isključen
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon uključen
bbb.users.usersGrid.mediaItemRenderer.noAudio = Nije u audio konferenciji
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Očisti
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentacija
bbb.presentation.titleWithPres = Prezentacija
bbb.presentation.quickLink.label = Prozor "Prezentacija"
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
bbb.presentation.uploadPresBtn.toolTip = Učitaj Prezentaciju
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Prethodni slajd
bbb.presentation.btnSlideNum.accessibilityName = Slajd {0} od {1}
bbb.presentation.btnSlideNum.toolTip = Izaberi slajd
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Prebacivanje završeno. Molimo pričekajte dok
bbb.presentation.uploaded = Prebačeno.
bbb.presentation.document.supported = Prebačeni dokument je podržan. Počinje konvertiranje...
bbb.presentation.document.converted = Uspješno konvertiran office dokument.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO greška: Molimo kontaktirajte administratora.
bbb.presentation.error.security = Sigurnosna greška: Molimo kontaktirajte administratora.
bbb.presentation.error.convert.notsupported = Greška: Prebačeni dokument nije podržan. Molimo prebacite kompatibilnu datoteku.
@@ -283,61 +285,62 @@ bbb.fileupload.uploadBtn = Prebaci
bbb.fileupload.uploadBtn.toolTip = Prebaci označenu datoteku
bbb.fileupload.deleteBtn.toolTip = Izbriši prezentaciju
bbb.fileupload.showBtn = Prikaži
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Prikaži prezentaciju
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Generisanje sličica..
bbb.fileupload.progBarLbl = Progres:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chat
bbb.chat.quickLink.label = Prozor "Chat"
bbb.chat.cmpColorPicker.toolTip = Boja teksta
bbb.chat.input.accessibilityName = Polje za uređivanje poruke
bbb.chat.sendBtn.toolTip = Pošalji poruku
bbb.chat.sendBtn.accessibilityName = Pošalji poruku
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopiraj sav tekst
bbb.chat.publicChatUsername = Javno
bbb.chat.optionsTabName = Opcije
bbb.chat.privateChatSelect = Izaberite osobu sa kojom želite privatno ćaskati
bbb.chat.private.userLeft = Korisnik je otišao.
bbb.chat.private.userJoined = Korisnik se pridružio.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Odaberi korisnika kako bi otvorio privatni chat
bbb.chat.usersList.accessibilityName = Odaberi korisnika kako bi otvorio privatni chat. Koristi strelice na tipkovnici za navigaciju.
bbb.chat.chatOptions = Podešavanja Chat-a
bbb.chat.fontSize = Veličina fonta "Chat" poruke
bbb.chat.cmbFontSize.toolTip = Odaberi veličinu fonta za chat poruke
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Smanji prozor za chat
bbb.chat.maximizeRestoreBtn.accessibilityName = Povećaj prozor za chat
bbb.chat.closeBtn.accessibilityName = Zatvori prozor za chat
bbb.chat.chatTabs.accessibleNotice = Nove poruke u ovom tabu.
bbb.chat.chatMessage.systemMessage = Sustav
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Poruka je {0} znakova preduga
bbb.publishVideo.changeCameraBtn.labelText = Promijeni web kameru
bbb.publishVideo.changeCameraBtn.toolTip = Otvori dijaloški okvir za promjenu web kamere
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Počni dijeliti
bbb.publishVideo.startPublishBtn.toolTip = Počni dijeliti web kameru
bbb.publishVideo.startPublishBtn.errorName = Ne mogu podijeliti web kameru. Razog: {0}
bbb.webcamPermissions.chrome.title = Chrome Dopuštenja Webkamere
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Web kamere
bbb.videodock.quickLink.label = Prozor "Web kamere"
bbb.video.minimizeBtn.accessibilityName = Smanji prozor web kamere
@@ -366,90 +369,92 @@ bbb.video.publish.hint.publishing = Objavljivanje...
bbb.video.publish.closeBtn.accessName = Zatvorite dijaloški okvir za podešavanje web kamere
bbb.video.publish.closeBtn.label = Otkaži
bbb.video.publish.titleBar = Objavi prozor web kamere
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Prestani slušati konferenciju
bbb.toolbar.phone.toolTip.unmute = Počni slušati konferenciju
bbb.toolbar.phone.toolTip.nomic = Mikrofon nije detektiran
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Podijeli svoju video kameru
bbb.toolbar.video.toolTip.stop = Prestani dijeliti svoju video kameru
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Dodajte prilagođeni raspored elemenata na listu
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Promijeni svoj layout
bbb.layout.loadButton.toolTip = Učitaj rasporede iz datoteke
bbb.layout.saveButton.toolTip = Sačuvaj rasporede kao datoteku
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Primijeni raspored
bbb.layout.combo.custom = * Prilagođeni raspored
bbb.layout.combo.customName = Prilagođeni raspored
bbb.layout.combo.remote = Udaljen
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Rasporedi su uspješno sačuvani
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Rasporedi su uspješno učitani
bbb.layout.load.failed = Nemoguće je učitati layoute
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Video Chat
bbb.layout.name.webcamsfocus = Webcam Sastanak
bbb.layout.name.presentfocus = Prezentacijski Sastanak
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
bbb.layout.name.lecture = Predavanje
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Olovka
bbb.highlighter.toolbar.pencil.accessibilityName = Promijenite kursor u olovku
bbb.highlighter.toolbar.ellipse = Krug
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Izaberi boju
bbb.highlighter.toolbar.color.accessibilityName = Boja olovke za crtanje
bbb.highlighter.toolbar.thickness = Promijeni debljinu
bbb.highlighter.toolbar.thickness.accessibilityName = Debljina olovke za crtanje
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Odjavljen/a
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Serverska aplikacija je isključena
bbb.logout.asyncerror = Došlo je do greške u sinkronizaciji
@@ -502,87 +509,90 @@ bbb.logout.connectionfailed = Veza sa serverom je završena
bbb.logout.rejected = Veza sa serverom odbačena
bbb.logout.invalidapp = red5 aplikacija ne postoji
bbb.logout.unknown = Izgubljena veza sa serverom
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Uspješno ste izašli iz konferencije
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Moderator te je izbacio sa sastanka.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Ako je ova odjava bila neočekivana klikni gumb ispod kako bi se ponovo povezao.
bbb.logout.refresh.label = Ponovo se poveži
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Potvrdi odjavu
bbb.logout.confirm.message = Da li ste sigurni da se želite odjaviti?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Da
bbb.logout.confirm.no = Ne
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Detektirani Problemi sa Spojivošću
bbb.connection.reconnecting=Ponovo povezivanje
bbb.connection.reestablished=Veza je opet uspostavljena
bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
+bbb.connection.sip=
bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.connection.deskshare=
bbb.notes.title = Bilješke
bbb.notes.cmpColorPicker.toolTip = Boja teksta
bbb.notes.saveBtn = Sačuvaj
bbb.notes.saveBtn.toolTip = Sačuvaj bilješke
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Odaberite opciju "Dopusti" kako biste provjerili da li dijeljenje radne ploče funkcioniše kako treba
bbb.settings.deskshare.start = Provjerite dijeljenje radne ploče
bbb.settings.voice.volume = Status mikrofona
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Greška u verziji Flash-a
bbb.settings.flash.text = Imate instaliranu Flash verziju {0}. Da biste mogli koristiti BigBlueButton morate instalirati najmanje verziju {1}. Klikom na dugme ispod možete instalirati noviju verziju Adobe Flash-a.
bbb.settings.flash.command = Instaliraj noviju verziju Flash-a
bbb.settings.isight.label = Greška iSight web kamere
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instaliraj Flash 10.2 RC2
bbb.settings.warning.label = Upozorenje
bbb.settings.warning.close = Zatvori ovo upozorenje
bbb.settings.noissues = Nisu uočeni neuobičajeni problemi.
bbb.settings.instructions = Potvrdite Flash naredbu koja traži dozvolu za pristup web kameri. Ukoliko izlaz odgovara onome što se očekuje, vaš browser je ispravno podešen. Ostali potencijalni problemi su prikazani ispod. Ispitajte ih kako biste pronašli moguće rješenje.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Trokut
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Promijenite kursor u trokut
ltbcustom.bbb.highlighter.toolbar.line = Linija
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Tekst
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Promijenite kursor u tekst
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Boja teksta
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Veličina fonta
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Spreman
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Došli ste do prve poruke.
bbb.accessibility.chat.chatBox.navigatedLatest = Došli ste do posljednje poruke.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Došli ste do posljednje poruke koju ste pročitali.
bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Molimo koristite tipke sa strelicama kako biste navigirali kroz chat poruke.
bbb.accessibility.notes.notesview.input = Unos bilješki
bbb.shortcuthelp.title = Kratice Tipkovnice
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Smanjite prozor prečice "Pomoć"
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Povećajte prozor prečice "Pomoć"
bbb.shortcuthelp.closeBtn.accessibilityName = Zatvorite prozor prečice "Pomoć"
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Prečice
bbb.shortcuthelp.dropdown.presentation = Prečice prezentacije
bbb.shortcuthelp.dropdown.chat = Chat prečice
bbb.shortcuthelp.dropdown.users = Prečice korisnika
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Prečica
bbb.shortcuthelp.headers.function = Funkcija
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Smanji trenutni prozor
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Povećaj trenutni prozor
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Izađite iz Flash prozora
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Isključivanje i uključivanje mikrofona
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Prijeđi na prozor "Prezentacija"
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Prijeđi na prozor "Ćaskanje"
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Otvori prozor za dijeljenje radne ploče
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Odjavite se sa ovog sastanka
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Podigni ruku
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Prenesi prezentaciju
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Idi na prethodni slajd
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Idi na naredni slajd
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Podesi slajdove po širini
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Podesi slajdove prema stranici
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Dodaj ulogu prezentatora za označenu osobu
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Izbaci odabranu osobu sa sastanka
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Utišaj ili uključi odabranu sobu
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Utišaj ili uključi sve korisnike
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Utišaj sve sudionike osim prezentatora
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Fokus na chat tabove
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Fokus na odabir boje fonta.
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,16 +756,17 @@ bbb.shortcutkey.chat.chatbox.goread.function = Idite na posljednju poruku koju s
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Privremeno uklonite hotkey
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Započni anketu
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = Objavi
bbb.polling.closeButton.label = Zatvori
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Rezultati Ankete Uživo
-bbb.polling.customChoices.title = Enter Polling Choices
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
bbb.polling.respondersLabel.novotes = Čekam odgovore
bbb.polling.respondersLabel.text = {0} Korisnika je odgovorilo
bbb.polling.respondersLabel.finished = Gotovo
@@ -791,21 +802,23 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Zatvori sve video klipove
bbb.users.settings.lockAll = Zaključaj sve korisnike
bbb.users.settings.lockAllExcept = Zaključaj sve korisnike osim prezentatora
bbb.users.settings.lockSettings = Zaključaj gledatelje...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Odključaj sve gledatelje
bbb.users.settings.roomIsLocked = Zaključano po zadanim postavkama
bbb.users.settings.roomIsMuted = Utišano po zadanim postavkama
bbb.lockSettings.save = Primijeni
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = Otkaži
bbb.lockSettings.cancel.toolTip = Zatvori prozor bez spašavanja
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Zaključavanje moderatora
bbb.lockSettings.privateChat = Privatno ćaskanje
bbb.lockSettings.publicChat = Javno ćaskanje
bbb.lockSettings.webcam = Web kamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Zaključaj Gledatelje
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Mogućnost
bbb.lockSettings.locked=Zaključano
bbb.lockSettings.lockOnJoin=Zaključaj pri pridruživanju
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/hu_HU/bbbResources.properties b/bigbluebutton-client/locale/hu_HU/bbbResources.properties
index ec2872e29dec..76252cf73498 100644
--- a/bigbluebutton-client/locale/hu_HU/bbbResources.properties
+++ b/bigbluebutton-client/locale/hu_HU/bbbResources.properties
@@ -21,7 +21,7 @@ bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
bbb.mainshell.quote.sentence.5 = A kutatás új tudást hoz létre.
bbb.mainshell.quote.attribution.5 = Neil Armstrong
bbb.oldlocalewindow.reminder1 = Valószínű régi BigBlueButton fordítása van.
-bbb.oldlocalewindow.reminder2 = Kérem ürítse böngészője gyorsítótárát és próbálja újra.
+bbb.oldlocalewindow.reminder2 = Kérem, ürítse böngészője gyorsítótárát és próbálja újra.
bbb.oldlocalewindow.windowTitle = Figyelmeztetés: Régiek a fordítások
bbb.audioSelection.title = Hogyan csatlakozik a beszélgetéshez?
bbb.audioSelection.btnMicrophone.label = Mikrofont is használok
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = Csatlakozás
bbb.micSettings.webrtc.transferring = Átvitel folyamatban
bbb.micSettings.webrtc.endingecho = Csatlakozás
bbb.micSettings.webrtc.endedecho = Hangteszt véget ért.
+bbb.micPermissions.message.browserhttp = Ez a szerver nem használ SSL-t, ezért {0} letiltja az Ön mikrofonjának megosztását.
bbb.micPermissions.firefox.title = Firefox mikrofon jogosultságok
bbb.micPermissions.firefox.message = Kattintson az Engedélyezésre, hogy a Firefox hozzáférhessen a mikrofonjához.
bbb.micPermissions.chrome.title = Chrome mikrofon jogosultságok
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Ez a munkamenet nem rögzíthető
bbb.mainToolbar.recordBtn.confirm.title = Felvétel jóváhagyása
bbb.mainToolbar.recordBtn.confirm.message.start = Biztos indítja a találkozó felvételét?
bbb.mainToolbar.recordBtn.confirm.message.stop = Biztos leállítja a találkozó felvételét?
-bbb.mainToolbar.recordBtn..notification.title = Megjegyzés a felvételhez
-bbb.mainToolbar.recordBtn..notification.message1 = Ezt az előadást rögzítheti.
-bbb.mainToolbar.recordBtn..notification.message2 = A címsorban lévő Felvétel indítása/leállítása gombra kell kattintani a felvétel elkezdéséhez és befejezéséhez.
+bbb.mainToolbar.recordBtn.notification.title = Megjegyzés a felvételhez
+bbb.mainToolbar.recordBtn.notification.message1 = Ezt az előadást rögzítheti.
+bbb.mainToolbar.recordBtn.notification.message2 = A címsorban lévő Felvétel indítása/leállítása gombra kell kattintani a felvétel elkezdéséhez és befejezéséhez.
bbb.mainToolbar.recordingLabel.recording = (Felvétel)
bbb.mainToolbar.recordingLabel.notRecording = Nem készül felvétel
bbb.waitWindow.waitMessage.message = Ön egy vendég, kérem, várjon türelemmel egy moderátor jóváhagyására.
@@ -214,7 +215,7 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = {0} hangosítása
bbb.users.usersGrid.mediaItemRenderer.pushToMute = {0} némítása
bbb.users.usersGrid.mediaItemRenderer.pushToLock = {0} zárolása
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = {0} zárolásának feloldása
-bbb.users.usersGrid.mediaItemRenderer.kickUser = {0} kiléptetése
+bbb.users.usersGrid.mediaItemRenderer.kickUser = {0} eltávolítása
bbb.users.usersGrid.mediaItemRenderer.webcam = Webkamera megosztása
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon kikapcsolva
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon bekapcsolva
@@ -246,6 +247,7 @@ bbb.presentation.fitToWidth.toolTip = Prezentáció ablak szélességhez igazít
bbb.presentation.fitToPage.toolTip = Prezentáció ablak oldalhoz igazítása
bbb.presentation.uploadPresBtn.toolTip = Prezentációs fájl feltöltése
bbb.presentation.downloadPresBtn.toolTip = Prezentációk letöltése
+bbb.presentation.poll.response = Válasz a szavazásra
bbb.presentation.backBtn.toolTip = Előző dia
bbb.presentation.btnSlideNum.accessibilityName = {0} / {1} dia
bbb.presentation.btnSlideNum.toolTip = Kattintson a dia kiválasztásához
@@ -309,6 +311,7 @@ bbb.chat.saveBtn.toolTip = Beszélgetés mentése
bbb.chat.saveBtn.accessibilityName = Beszélgetés mentése fájlba
bbb.chat.saveBtn.label = Mentés
bbb.chat.save.complete = A beszélgetést sikeresen mentette
+bbb.chat.save.ioerror = A beszélgetést nem sikerült menteni. Próbálja újra.
bbb.chat.save.filename = nyilvános beszélgetés
bbb.chat.copyBtn.toolTip = Beszélgetés másolása
bbb.chat.copyBtn.accessibilityName = Beszélgetés másolása a vágólapra
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Webkamera beállítások bezárása
bbb.video.publish.closeBtn.label = Mégsem
bbb.video.publish.titleBar = Webkamera ablak közzététele
bbb.video.streamClose.toolTip = Folyam lezárása: {0}
+bbb.video.message.browserhttp = Ez a szerver nem használ SSL-t, ezért {0} letiltja az Ön webkamerájának megosztását.
bbb.screensharePublish.title = Képernyőmegosztás: Előadó nézete
bbb.screensharePublish.pause.tooltip = Képernyőmegosztás szüneteltetése
bbb.screensharePublish.pause.label = Szüneteltetés
@@ -446,6 +450,7 @@ bbb.toolbar.deskshare.toolTip.stop = Képernyőmegosztás befejezése
bbb.toolbar.sharednotes.toolTip = Megosztott jegyzetek megnyitása
bbb.toolbar.video.toolTip.start = Webkamerám megosztása
bbb.toolbar.video.toolTip.stop = Webkamerám megosztásának befejezése
+bbb.layout.addButton.label = Hozzáadás
bbb.layout.addButton.toolTip = Egyéni elrendezés hozzáadása a listához
bbb.layout.overwriteLayoutName.title = Elrendezés felülírása
bbb.layout.overwriteLayoutName.text = Ez a név már létezik. Biztos, hogy felülírja?
@@ -459,7 +464,10 @@ bbb.layout.combo.custom = * Egyéni elrendezés
bbb.layout.combo.customName = Egyéni elrendezés
bbb.layout.combo.remote = Táv
bbb.layout.window.name = Elrendezés neve
+bbb.layout.window.close.tooltip = Bezárás
+bbb.layout.window.close.accessibilityName = Új elrendezés hozzáadása ablak bezárása
bbb.layout.save.complete = Elrendezés sikeresen mentve
+bbb.layout.save.ioerror = Kinézetet nem sikerült menteni. Próbálja újra.
bbb.layout.load.complete = Elrendezés sikeres betöltve
bbb.layout.load.failed = Nem sikerült az elrendezést betölteni
bbb.layout.sync = Elrendezését elküldtük az összes felhasználónak
@@ -493,7 +501,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Rajztáblához kijelölőszín
bbb.highlighter.toolbar.thickness = Vastagság változtatása
bbb.highlighter.toolbar.thickness.accessibilityName = Rajztáblához kurzorvastagság
bbb.highlighter.toolbar.multiuser = Többfelhasználós rajzolás
-bbb.logout.title = Kijelentkeztél
bbb.logout.button.label = OK
bbb.logout.appshutdown = A szerveralkalmazást leállították
bbb.logout.asyncerror = Async hiba
@@ -505,9 +512,11 @@ bbb.logout.unknown = Kapcsolat a szerverrel megszakadt
bbb.logout.guestkickedout = A moderátor nem engedélyezte Önnek a csatlakozást ehhez előadáshoz
bbb.logout.usercommand = Kijelentkezett a beszélgetésből
bbb.logour.breakoutRoomClose = Böngészője ablakát bezárjuk
-bbb.logout.ejectedFromMeeting = Egy moderátor kitett az előadásról.
+bbb.logout.ejectedFromMeeting = Ön kijelentkeztették az előadásról.
bbb.logout.refresh.message = Amennyiben kilépése nem szándékos volt, kattintson az újracsatlakozás gombra.
bbb.logout.refresh.label = Újracsatlakozás
+bbb.logout.feedback.hint = Hogyan tehetnénk a BigBlueButton-t még jobbá?
+bbb.logout.feedback.label = Örömmel vesszük, ha ír néhány szót a BigBlueButton használatának tapasztalatairól (nem kötelező)
bbb.settings.title = Beállítások
bbb.settings.ok = OK
bbb.settings.cancel = Mégsem
@@ -540,6 +549,7 @@ bbb.sharedNotes.typing.double = {0} és {1} éppen ír...
bbb.sharedNotes.typing.multiple = Sok ember ír éppen...
bbb.sharedNotes.save.toolTip = Jegyzetek mentése fájlba
bbb.sharedNotes.save.complete = Jegyzetek sikeresen mentette
+bbb.sharedNotes.save.ioerror = Jegyzetet nem sikerült menteni. Próbálja újra.
bbb.sharedNotes.save.htmlLabel = Formázott szöveg (.html)
bbb.sharedNotes.save.txtLabel = Egyszerű szöveg (.txt)
bbb.sharedNotes.new.label = Létrehozás
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Közzététel
bbb.polling.closeButton.label = Bezárás
bbb.polling.customPollOption.label = Egyéni szavazás...
bbb.polling.pollModal.title = Szavazás jelenlegi állása
+bbb.polling.pollModal.hint = Hagyja nyitva ezt az ablakot, hogy a résztvevők leadhassák szavazatukat. A szavazás befejezéséhez válassza a Közzététel vagy a Bezárás gombot.
bbb.polling.customChoices.title = Adja meg a szavazási lehetőségeket
bbb.polling.respondersLabel.novotes = Válaszokra várakozás
bbb.polling.respondersLabel.text = {0} felhasználó válaszolt
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Zárolási beállítások jóváhagyása
bbb.lockSettings.cancel = Mégsem
bbb.lockSettings.cancel.toolTip = Az ablak bezárása mentés nélkül
+bbb.lockSettings.hint = Ezek az opciókkal letilthatod a résztvevők néhány lehetőségét, mint például a privát csevegés használata. (Ezek a tiltások nem érintik a moderátorokat)
bbb.lockSettings.moderatorLocking = Moderátor zárolása
bbb.lockSettings.privateChat = Privát üzenetek
bbb.lockSettings.publicChat = Nyilvános üzenetek
bbb.lockSettings.webcam = Webkamera
+bbb.lockSettings.webcamsOnlyForModerator = Többiek webkamerájának elrejtése
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Elrendezés
bbb.lockSettings.title=Résztvevők zárolása
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Csatlakozáskor zárolás
bbb.users.breakout.breakoutRooms = Csapatszobák
bbb.users.breakout.updateBreakoutRooms = Csapatszobák frissítése
+bbb.users.breakout.timerForRoom.toolTip = Csapatszoba hátralévő ideje
bbb.users.breakout.timer.toolTip = Csapatszobák hátralévő ideje
bbb.users.breakout.calculatingRemainingTime = Hátralévő idő számítása...
bbb.users.breakout.closing = Bezárás
+bbb.users.breakout.closewarning.text = A csapatszobák egy percen belül bezárnak.
bbb.users.breakout.rooms = Szobák
bbb.users.breakout.roomsCombo.accessibilityName = Létrehozandó szobák száma
bbb.users.breakout.room = Szoba
-bbb.users.breakout.randomAssign = Véletlenszerűen rendeljen hozzá felhasználókat
bbb.users.breakout.timeLimit = Időkorlát
bbb.users.breakout.durationStepper.accessibilityName = Időkorlát percben
bbb.users.breakout.minutes = perc
@@ -850,54 +864,8 @@ bbb.users.roomsGrid.join = Csatlakozás
bbb.users.roomsGrid.noUsers = Egy felhasználó sincs ebben a szobában
bbb.langSelector.default=Alapértelmezett nyelv
-bbb.langSelector.ar=Arab
-bbb.langSelector.az_AZ=Azerbajdzsáni
-bbb.langSelector.eu_EU=Baszk
-bbb.langSelector.bn_BN=Bengáli
-bbb.langSelector.bg_BG=Bulgár
-bbb.langSelector.ca_ES=Katalán
-bbb.langSelector.zh_CN=Kína (egyszerűsített)
-bbb.langSelector.zh_TW=Kínai (tradicionális)
-bbb.langSelector.hr_HR=Horvát
-bbb.langSelector.cs_CZ=Cseh
-bbb.langSelector.da_DK=Dán
-bbb.langSelector.nl_NL=Holland
-bbb.langSelector.en_US=Angol
-bbb.langSelector.et_EE=Észtország
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finn
-bbb.langSelector.fr_FR=Francia
-bbb.langSelector.fr_CA=Francia (kanadai)
-bbb.langSelector.ff_SN=Fulbe
-bbb.langSelector.de_DE=Német
-bbb.langSelector.el_GR=Görög
-bbb.langSelector.he_IL=Héber
-bbb.langSelector.hu_HU=Magyar
-bbb.langSelector.id_ID=Indonéz
-bbb.langSelector.it_IT=Olasz
-bbb.langSelector.ja_JP=Japán
-bbb.langSelector.ko_KR=Koreai
-bbb.langSelector.lv_LV=Litván
-bbb.langSelector.lt_LT=Litvánia
-bbb.langSelector.mn_MN=Mongol
-bbb.langSelector.ne_NE=Nepáli
-bbb.langSelector.no_NO=Norvég
-bbb.langSelector.pl_PL=Lengyel
-bbb.langSelector.pt_BR=Portugál (brazil)
-bbb.langSelector.pt_PT=Portugál
-bbb.langSelector.ro_RO=Román
-bbb.langSelector.ru_RU=Orosz
-bbb.langSelector.sr_SR=Szerb (cirill)
-bbb.langSelector.sr_RS=Szerb (latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Szlovákia
-bbb.langSelector.sl_SL=Szlovén
-bbb.langSelector.es_ES=Spanyol
-bbb.langSelector.es_LA=Spanyol (latin-amerikai)
-bbb.langSelector.sv_SE=Svéd
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Török
-bbb.langSelector.uk_UA=Ukrán
-bbb.langSelector.vi_VN=Vietnámi
-bbb.langSelector.cy_GB=Welszi
-bbb.langSelector.oc=Okszitán
+
+bbb.alert.cancel = Mégsem
+bbb.alert.ok = OK
+bbb.alert.no = Nem
+bbb.alert.yes = Igen
diff --git a/bigbluebutton-client/locale/hy/bbbResources.properties b/bigbluebutton-client/locale/hy/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/hy/bbbResources.properties
+++ b/bigbluebutton-client/locale/hy/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/hy_AM/bbbResources.properties b/bigbluebutton-client/locale/hy_AM/bbbResources.properties
index 0941cafa9e1e..ec86d8d74a6f 100644
--- a/bigbluebutton-client/locale/hy_AM/bbbResources.properties
+++ b/bigbluebutton-client/locale/hy_AM/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Միացում սերվերին
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Կներեք, հնարավոր չէ միանալ սերվերին
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Բացել տեղեկամատյանի պատուհանը
bbb.mainshell.meetingNotFound = Չհաջողվեց գտնել վեբինարը
bbb.mainshell.invalidAuthToken = Մուտքի սխալ տվյալներ
bbb.mainshell.resetLayoutBtn.toolTip = Վերադառնալ սկզբնական շարակարգին
bbb.mainshell.notification.tunnelling = Կանալի կարգաբերում
bbb.mainshell.notification.webrtc = Ձայնի հեռարցակում WebRTC միջոցով
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Հնարավոր է Ձեր BigBlueButton-ի լեզվի թարգմանությունը հնացած է։
bbb.oldlocalewindow.reminder2 = Մաքրեք Ձեր զննիչի հիշողությունը և կրկին փորձեք
bbb.oldlocalewindow.windowTitle = Զգուշացում։ Լեզվի հին թարգմանություն
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Չեղարկել
bbb.micSettings.connectingtoecho = Կատարվում է միացում
bbb.micSettings.connectingtoecho.error = Արձագանքի թեսթի սխալ։ Խնդրում ենք կապնվել ադմինիստրատորի հետ։
bbb.micSettings.cancel.toolTip = Չեղարկել միացումը ձայնային կոնֆերանսին
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Ձայնի կարգաբերում։ Պատուհանը ակտիվ կմնա, մինչև դուք այն չփագեք։
bbb.micSettings.webrtc.title = WebRTC աջակցություն
bbb.micSettings.webrtc.capableBrowser = Ձեր զննիչը աջակցում է WebRTC
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Միանում է
bbb.micSettings.webrtc.transferring = Փոխանցում
bbb.micSettings.webrtc.endingecho = Կատարվում է միացում ձայնակոնֆերանսին
bbb.micSettings.webrtc.endedecho = Արձագանքի թեսթը ավարտված է
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Խոսափողի կարգաբերումները Firefox զննարկչում
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Խոսափողի կարգաբերումները Chrome զննարկչում
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Ձայնային զգուշացում
bbb.micWarning.joinBtn.label = Մուտք գործել բոլոր դեպքում
bbb.micWarning.testAgain.label = Ստուգել կրկին
@@ -84,23 +85,23 @@ bbb.webrtcWarning.failedError.1005 = Սխալ 1005․ Զանգը անսպասե
bbb.webrtcWarning.failedError.1006 = Սխալ 1006․ Զանգի ժամանակը ավարտված է
bbb.webrtcWarning.failedError.1007 = Սխալ 1007․ ICE-ի հետ կապը խափանվել է
bbb.webrtcWarning.failedError.1008 = Error 1008. Փոխանցում ձախողվեց
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
+bbb.webrtcWarning.failedError.1009 =
bbb.webrtcWarning.failedError.1010 = Սխալ 1010: ICE բանակցային ժամանակի սպառում
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
+bbb.webrtcWarning.failedError.1011 =
bbb.webrtcWarning.failedError.unknown = Սխալ {0}․ Անծանոթ սխալ կոդ
bbb.webrtcWarning.failedError.mediamissing = Չհաջողվեց գտնել ձեր միկրոֆոնը WebRTC զանգի համար
bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC արձագանքի փորձարկումը անսպասելի ավարտվել է
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
+bbb.webrtcWarning.connection.dropped =
bbb.webrtcWarning.connection.reconnecting = Վերամիացման փորձ
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Օգնություն
bbb.mainToolbar.logoutBtn = Ելք
bbb.mainToolbar.logoutBtn.toolTip = Ելք
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Ընտրեք լեզուն
bbb.mainToolbar.settingsBtn = Կարգաբերումներ
bbb.mainToolbar.settingsBtn.toolTip = Բացել կարգաբերումների պատուհանը
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = Սկսել ձայնագրությու
bbb.mainToolbar.recordBtn.toolTip.stop = Վերջացնել ձայնագրությունը
bbb.mainToolbar.recordBtn.toolTip.recording = Սեսիան ձայնագրվում է
bbb.mainToolbar.recordBtn.toolTip.notRecording = Սեսիան չի ձայնագրվում
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Հաստատել ձայնագրումը
bbb.mainToolbar.recordBtn.confirm.message.start = Դուք համոզված եք, որ Դուք ուզում եք ձայնագրել այս սեսիան
bbb.mainToolbar.recordBtn.confirm.message.stop = Դուք համոզված եք, որ Դուք ուզում եք վերջացնել այս սեսիաի ձայնագրությունը
-bbb.mainToolbar.recordBtn..notification.title = Ձայնագրման մասին զգուշացում
-bbb.mainToolbar.recordBtn..notification.message1 = Այս վեբինարը կարելի է ձայնագրել
-bbb.mainToolbar.recordBtn..notification.message2 = Որպեսզի սկսեք կամ դադարացնել ձայնագրումը, սխմեք «սկսել/դադարացնել ձայանգրումը» ստեղնը վերեվի վահանակի վրա։
+bbb.mainToolbar.recordBtn.notification.title = Ձայնագրման մասին զգուշացում
+bbb.mainToolbar.recordBtn.notification.message1 = Այս վեբինարը կարելի է ձայնագրել
+bbb.mainToolbar.recordBtn.notification.message2 = Որպեսզի սկսեք կամ դադարացնել ձայնագրումը, սխմեք «սկսել/դադարացնել ձայանգրումը» ստեղնը վերեվի վահանակի վրա։
bbb.mainToolbar.recordingLabel.recording = (ձայնագրվում է)
bbb.mainToolbar.recordingLabel.notRecording = Չի ձայնագրվում
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Ծանուցումների կարգավորում
bbb.clientstatus.notification = Չկարդացված զգուշացումներ
bbb.clientstatus.close = փակել
bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
+bbb.clientstatus.tunneling.message =
bbb.clientstatus.browser.title = Բրաուզերի տարբերակ
bbb.clientstatus.browser.message = Ձեր բրաուզերը ({0}) հնացած է. Խորհուրդ են տալիս թարմացնելու այն մինջեւ վերջին տարբերակը.
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Ձեր Flash Player plugin ({0}) հնացած է; Խորհուրդ են տալիս թարմացնելու այն մինջեւ վերջին տարբերակը.
bbb.clientstatus.webrtc.title = Ձայն
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Խորհուրդ են տալիս օգտագործել կամ Firefox կամ Chrome ավելի լավ աուդիոի համար.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Փոքրացնել
bbb.window.maximizeRestoreBtn.toolTip = Մեծացնել
bbb.window.closeBtn.toolTip = Փակել
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Իրավիճակ
bbb.users.usersGrid.statusItemRenderer.changePresenter = Սխմեք, ներկայացնող դարձնելու համար
bbb.users.usersGrid.statusItemRenderer.presenter = Ներկայացնող
bbb.users.usersGrid.statusItemRenderer.moderator = Կարգավորիչ
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = մաքրել կարգավիճակը
bbb.users.usersGrid.statusItemRenderer.viewer = Մասնակից
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = օգտագործում է վեբ տեսախցիկ
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Խոսափողը միացրա
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Խոսափողը անջատած է {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Արգելափակել {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Արգելափակումից հանել {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Դուրս հանել {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Վեբ խցիկի բաշխում
bbb.users.usersGrid.mediaItemRenderer.micOff = Խոսափողը անջատել
bbb.users.usersGrid.mediaItemRenderer.micOn = Խոսափողը միացնել
bbb.users.usersGrid.mediaItemRenderer.noAudio = Ձայնա կոնֆերանսի մեջ չեք
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = մաքրել
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Շնոերհանդես
bbb.presentation.titleWithPres = Շնորհանդես: {0}
bbb.presentation.quickLink.label = Շնորհանդեսի պատուհան
bbb.presentation.fitToWidth.toolTip = Տեղավորել շնորհանդեսը, ըստ լայնության
bbb.presentation.fitToPage.toolTip = Տեղավորել շնորհանդեսը ըստ էջի չափի
bbb.presentation.uploadPresBtn.toolTip = Բեռնել շնորհանդես
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = նախորդ սլայդը
bbb.presentation.btnSlideNum.accessibilityName = {0} սլայդ {1}-ից
bbb.presentation.btnSlideNum.toolTip = Ընտրել սլայդը
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Բեռնումը ավարտված է։ Խնդ
bbb.presentation.uploaded = բեռնված է
bbb.presentation.document.supported = Բեռնված փաստաթուղթը համապատասխանում է։ Ձևափոխությունը սկսված է...
bbb.presentation.document.converted = Փաստաթուղթը հաջողությամբ ձևափոխված է
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = ՄԵ սխալ։ Կապ հաստատեք ադմինիստրատորի հետ։
bbb.presentation.error.security = Անվտանգության սխալ։ Կապ հաստատեք ադմինիստրատորի հետ։
bbb.presentation.error.convert.notsupported = Սխալ։ Բեռնված փաստաթուղթը չի համապատասխանում, ընտրեք ճիշտ ձևաչափի փաստաթուղթ։
@@ -283,62 +285,63 @@ bbb.fileupload.uploadBtn = Վերբեռնել
bbb.fileupload.uploadBtn.toolTip = Վերբեռնել նշված ֆայլը
bbb.fileupload.deleteBtn.toolTip = Ջնջել շնորհանդեսը
bbb.fileupload.showBtn = Ցուցադրել
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Ցուցադրել շնորհանդեսը
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Մատնապատկերների ստեղծում
bbb.fileupload.progBarLbl = Ընթացք
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Զրուցարան
bbb.chat.quickLink.label = Զրուցարանի պատուհան
bbb.chat.cmpColorPicker.toolTip = Տեքստի գույնը
bbb.chat.input.accessibilityName = Զրուցարանի հաղորդագրության ուղղման դաշտ
bbb.chat.sendBtn.toolTip = Ուղարկել հաղորդագրություն
bbb.chat.sendBtn.accessibilityName = Ուղարկել զրուցարանի հաղորդագրությունը
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Պատճենել ամբողջ տեքստը
bbb.chat.publicChatUsername = Ընդհանուր
bbb.chat.optionsTabName = Կարգաբերումներ
bbb.chat.privateChatSelect = Ընտրեք մասնակցին անհատական զրույցի համար
bbb.chat.private.userLeft = Մասնակիցը հեռացավ
bbb.chat.private.userJoined = Օգտագործողը միացավ
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Ընտրեք մասնակցին անհատական զրույցի համար
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Զրուցարանի կարգաբերումներ
bbb.chat.fontSize = Զրուցարանի հաղորդագրության տառաշարի չափի ընտրություն
bbb.chat.cmbFontSize.toolTip = Ընտրեք զրուցարանի հաղորդագրության տառաշարի չափը
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Փոքրացնել զրուցարանի պատուհանը
bbb.chat.maximizeRestoreBtn.accessibilityName = Մեծացնել զրուցարանի պատուհանը
bbb.chat.closeBtn.accessibilityName = Փակել զրուցարանի պատուհանը
bbb.chat.chatTabs.accessibleNotice = Նոր հաղորդագրություն այս էջանշանի վրա
bbb.chat.chatMessage.systemMessage = համակարգ
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Փոխեք վեբ խցիկը
bbb.publishVideo.changeCameraBtn.toolTip = Բացեք վեբ խցիկի փոխելու պատուհանը
bbb.publishVideo.cmbResolution.tooltip = Ընտրեք վեբ խցիկի լուծումլուծույթը
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Սկսել բաշխումը
bbb.publishVideo.startPublishBtn.toolTip = Սկսել Ձեր վեբ խցիկի բաշխումը
bbb.publishVideo.startPublishBtn.errorName = չի կարող կիսել տեսախցիկը. Պատճառն: {0}
bbb.webcamPermissions.chrome.title = Վեբ-խցիկի կարգաբերումները Chrome զննարկչում
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Տեսախցիկներ
bbb.videodock.quickLink.label = Վեբխցիկի պատուհան
bbb.video.minimizeBtn.accessibilityName = Փոքրացնել վեբ խցիկի պատուհանը
@@ -361,95 +364,97 @@ bbb.video.publish.hint.waitingApproval = Սպասել հաստատմանը
bbb.video.publish.hint.videoPreview = Վեբ խցիկի նախադիտում
bbb.video.publish.hint.openingCamera = Բացում ենք վեբ խցիկը...
bbb.video.publish.hint.cameraDenied = Վեբ խցիկի օգտագործումը արգելափակված է
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Հրատարակում ենք...
bbb.video.publish.closeBtn.accessName = Փակել վեբ խցիկի կարգաբերումների պատուհանը
bbb.video.publish.closeBtn.label = Չեղարկել
bbb.video.publish.titleBar = Հրատարակել վեբ խցիկի պատուհանը
bbb.video.streamClose.toolTip = Փակել հոսքը {0} -ի համար:
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Դադարեցնել լսել կոնֆերանսը
bbb.toolbar.phone.toolTip.unmute = Սկսել լսել կոնֆերանսը
bbb.toolbar.phone.toolTip.nomic = Խոսափող չի հատնաբերվել
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Բաշխել իմ վեբ խցիկը
bbb.toolbar.video.toolTip.stop = Դադարեցնել իմ վեբ խցիկը բաշխումը
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Ավելացնել նոր տեսքի նախագիծ ցանկի մեջ
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Փոխել ներկա տեսքի նախագիծը
bbb.layout.loadButton.toolTip = Բեռնել տեսքի նախագիծ ֆայլից
bbb.layout.saveButton.toolTip = Հիշել տեսքի նախագիծը ֆայլի մեջ
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Կիրառել տեսքի նախագիծը
bbb.layout.combo.custom = * Օգտվողի տեսքի նախագիծ
bbb.layout.combo.customName = Օգտվողի տեսքի նախագիծ
bbb.layout.combo.remote = Հեռակա
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Տեսքի նախագիծը գրանցված է
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Տեսքի նախագիծը բեռնված է
bbb.layout.load.failed = անհնար է բեռնել դասավորության
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Լռությամբ ընդունվող դասավորություն
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Վիդեո զրույց
bbb.layout.name.webcamsfocus = Webcam հանդիպում
bbb.layout.name.presentfocus = Շնորհանդեսային հանդիպում
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Դասախոսությոան օգնական
bbb.layout.name.lecture = Դասախոսություն
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Մատիտ
bbb.highlighter.toolbar.pencil.accessibilityName = Փոխել գրատախտակի կուրսորը մատիտի
bbb.highlighter.toolbar.ellipse = Շրջան
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Ընտրել գույն
bbb.highlighter.toolbar.color.accessibilityName = Գրատախտակի մարկերի գույնը
bbb.highlighter.toolbar.thickness = Փոխել հաստությունը
bbb.highlighter.toolbar.thickness.accessibilityName = Գրատախտակի վրա նկարելու հաստությունը
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Ելք
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = Հաստատել
bbb.logout.appshutdown = Սերվերային ծրագիրը անջատվել է
bbb.logout.asyncerror = Սինքրոնացման սխալ
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Միացումը սերվերին ավարտվել
bbb.logout.rejected = Միացումը սերվերին մերժվեց
bbb.logout.invalidapp = RED5 ծրագիրը գոյություն չունի
bbb.logout.unknown = Դուք կորցրեցիք միացումը սերվերին
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Դուք լքեցիք կոնֆերանսը
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = մոդերատոր ձեզ դուրս է հանել.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Եթե անջատումը կատարվել է ձեզնից անկախ, սխմեք ներքևում գտնվող կոճակը, կապը վերականգնելու համար
bbb.logout.refresh.label = Վերականգնել միացումը
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Հաստատել ելքը
bbb.logout.confirm.message = Դուք համոզված եք, որ ուզում եք դուրս գալ համակարգից
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Այո
bbb.logout.confirm.no = Ոչ
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Հայտնաբերել Ինտերնետ կապի խնդիրներ
bbb.connection.reconnecting=միացումը վերականգնվում է
bbb.connection.reestablished=միացումը վերականգնվել է
@@ -530,59 +539,60 @@ bbb.notes.title = Նշումներ
bbb.notes.cmpColorPicker.toolTip = Տեքստի գույնը
bbb.notes.saveBtn = Պահպանել
bbb.notes.saveBtn.toolTip = Պահպանել նշումները
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Սեղմեք թույլատրել կոճակը հայտնվող պատուհանի վրա, որպեսզի համոզվեք, որ էկրանի բաշխումը ընթանում է ճիշտ
bbb.settings.deskshare.start = Ընտրել Էկրանի բաշխումը
bbb.settings.voice.volume = Խոսափողի ակտիվություն
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash -ի տարբերակի սխալ
bbb.settings.flash.text = Ձեր մոտ տեղադրված է Flash {0}, բայց Ձեզ անհրաժեշտ է առնվազն Flash {1} օգտագործման համար։ Ստորին կոճակը սեղմելով Դուք կտեղադրեք նորագույն Adobe Flash տարբերակը։
bbb.settings.flash.command = Տեղադրել նորագույն Adobe Flash
bbb.settings.isight.label = iSight տեսախցիկի սխալ
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Տեղադրել Flash 10.2 RC2
bbb.settings.warning.label = Զգուշացում
bbb.settings.warning.close = Փակել զգուշացումը
bbb.settings.noissues = Սխալ չի հայտնաբերվել
bbb.settings.instructions = Թույլատրել Flash -ին դիմել տեսախցիկին։ Եթե Դուք տեսնում և լսում եք Ձեզ, ապա Ձեր զննիչը կարգավորված է ճիշտ։ Մնացած հնարավոր սխալները բերված են ստորև։ Փնտրեք այնտեղ հնարավոր սխալները։
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Եռանկյունի
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Փոխել գրատախտակի կուրսորը եռանկյունու
ltbcustom.bbb.highlighter.toolbar.line = Գիծ
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Տեքստ
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Փոխել գրատախտակի կուրսորը տեքստի
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Տեքստի գույնը
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Տառաշարի չափը
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Պատրաստ
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Դուք տեղաշարժվու
bbb.accessibility.chat.chatBox.navigatedLatestRead = Դուք տեղաշարժվում եք դեպի վերջին հաղորդագրությունը, որը դուք կարդացել եք
bbb.accessibility.chat.chatwindow.input = Հաղորդագրության մուտքագրում
bbb.accessibility.chat.chatwindow.audibleChatNotification = չատի ձայնային ազդանշան
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Խնդրում ենք օգտագործել ստեղնաշարի վրայի սլաքների կոճակները հաղորդագրություններով տեղաշարժվելու համար։
bbb.accessibility.notes.notesview.input = Նշումների մուտքագրում
bbb.shortcuthelp.title = Դյուրանցման ստեղներ
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Փոքրացնել դյուրանցման օգնության պատուհանը
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Մեծացնել դյուրանցման օգնության պատուհանը
bbb.shortcuthelp.closeBtn.accessibilityName = Փակել դյուրանցման օգնության պատուհանը
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Ընդհանուր դյուրանցումներ
bbb.shortcuthelp.dropdown.presentation = Շնորհանդեսի դյուրանցումներ
bbb.shortcuthelp.dropdown.chat = Զրուցարանի դյուրանցումներ
bbb.shortcuthelp.dropdown.users = Օգտագործողների դյուրանցումներ
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Դյուրանցում
bbb.shortcuthelp.headers.function = Ֆունկցիա
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Փոքրացնել ներկա պատ
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Մեծացնել ներկա պատուհանը
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Լքել Flash -ի պատուհանը
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Միացնել կամ անջատել Ձեր խոսափողը
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Անցնել շնորհանդեսի պատուհանին
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Անցնել զրուցարանի պատուհանին
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Բացել էկրանի բաշխման պատուհանին
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Լքել այս հանդիպումը
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Բարձրացնել ձեր ձեռքը
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Բեռնել շնորհանդես
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Անցնել հաջորդ սլադին
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Անցնել հաջորդ սլայդին
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Տեղավորել սլայդը լայնքով
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Տեղավորել սլայդը էջով մեկ
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Դարձնել նշված անձին ներկայացնող
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Հեռացնել նշված անձին հանդիպումից
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 8383
bbb.shortcutkey.users.mute.function = Ձայնը անջատել կամ միացնել նշված անձի համար
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Անջատել կամ միացնել բոլորի խոսափողները
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Անջատել բոլորի խասափողները, բացի ներկայացնողից
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Անցնել զրուցարանի էջանշաններին
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Անցնել տառաշարի գույնի ընտրությանը
bbb.shortcutkey.chat.sendMessage = 8383
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Անցնել վերջին կար
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Ժամանակավոր դյուրանցմներ կարգաբերելու համար
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Սկսել քվեարկությունը
bbb.polling.startButton.label = Սկսել քվեարկությունը
bbb.polling.publishButton.label = Հրապարակել
bbb.polling.closeButton.label = Փակել
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = քվեարկության արդյունքները
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = մուտքագրեք քվեարկելու ընտրությունը
bbb.polling.respondersLabel.novotes = Սպասել պատասխանին
bbb.polling.respondersLabel.text = {0} օգտագործող է պատասխանել
@@ -771,7 +782,7 @@ bbb.polling.answer.E = Ե
bbb.polling.answer.F = Զ
bbb.polling.answer.G = Է
bbb.polling.results.accessible.header = քվեարկության արդյունքները
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Սկսել բաշխումը
bbb.publishVideo.changeCameraBtn.labelText = Փոխեք վեբ խցիկը
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Փակել բոլոր պատու
bbb.users.settings.lockAll = Արգելափակել բոլոր մասնակիցներին
bbb.users.settings.lockAllExcept = Արգելափակել բոլոր մասնակիցներին, բացի ներկայացնողից
bbb.users.settings.lockSettings = Ամրացնել մասնակիցների կարգավիճակը
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Հանել արգելափակումը բոլոր մասնակիցներից
bbb.users.settings.roomIsLocked = Արգելափակված ըստ նախնական կարգաբերումների
bbb.users.settings.roomIsMuted = Խոսափողները անջատած են, ըստ նախնական կարգաբերումների
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Կիրառել արգելափակման կարգ
bbb.lockSettings.cancel = Չեղարկել
bbb.lockSettings.cancel.toolTip = Փակել այս պատուհանը առանց հիշելու
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Արգելափակված է մոդերատորի կողմից
bbb.lockSettings.privateChat = Անձնական զրուցարան
bbb.lockSettings.publicChat = Ընդհանուր զրուցարան
bbb.lockSettings.webcam = Տեսախցիկ
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Խոսափող
bbb.lockSettings.layout = Պատուհանների դասավորություն
bbb.lockSettings.title=Ամրագրել մասնակիցների կարգավիճակը
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Հավելյալ կարգաբերումներ
bbb.lockSettings.locked=Ամրագրված է
bbb.lockSettings.lockOnJoin=Միանալուց արգելափակել
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/id_ID/bbbResources.properties b/bigbluebutton-client/locale/id_ID/bbbResources.properties
index 97c6ebeb0dbf..b802c5ba4a88 100644
--- a/bigbluebutton-client/locale/id_ID/bbbResources.properties
+++ b/bigbluebutton-client/locale/id_ID/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Sedang menghubungi server
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Maaf, tidak dapat terhubung ke server.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Buka Jendela Log
@@ -9,17 +9,17 @@ bbb.mainshell.invalidAuthToken = Token Otentikasi Tidak Valid
bbb.mainshell.resetLayoutBtn.toolTip = Atur Ulang Tampilan
bbb.mainshell.notification.tunnelling = Tunneling
bbb.mainshell.notification.webrtc = Audio WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Penerjamah bahasa dari BigBlueButton anda mungkin sudah lawas
bbb.oldlocalewindow.reminder2 = Harap bersihkan cache browser anda kemudian coba lagi.
bbb.oldlocalewindow.windowTitle = Peringatan: Penerjemahan bahasa lawas
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Menghubungi
bbb.micSettings.webrtc.transferring = Memindahkan
bbb.micSettings.webrtc.endingecho = Bergabung audio
bbb.micSettings.webrtc.endedecho = Pengujian echo diakhiri.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Hak Akses Mikrofon Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Hak Akses Mikrofon Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Peringatan Audio
bbb.micWarning.joinBtn.label = Tetap bergabung
bbb.micWarning.testAgain.label = Coba lagi
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = tes echo webrtc berakhir tanpa
bbb.webrtcWarning.connection.dropped = Koneksi WebRTC gagal
bbb.webrtcWarning.connection.reconnecting = Berusaha mengkoneksikan ulang
bbb.webrtcWarning.connection.reestablished = Koneksi WebRTC dihubungkan ulang
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Bantuan
bbb.mainToolbar.logoutBtn = Keluar
bbb.mainToolbar.logoutBtn.toolTip = Keluar
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Pilih bahasa
bbb.mainToolbar.settingsBtn = Pengaturan
bbb.mainToolbar.settingsBtn.toolTip = Buka Pengaturan
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Mulai rekaman
bbb.mainToolbar.recordBtn.toolTip.stop = Akhiri rekaman
bbb.mainToolbar.recordBtn.toolTip.recording = Sesi ini sedang direkam
bbb.mainToolbar.recordBtn.toolTip.notRecording = Sesi ini tidak direkam
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Konfirmasi rekaman
bbb.mainToolbar.recordBtn.confirm.message.start = Apakah Anda yakin ingin mulai merekam sesi ini?
bbb.mainToolbar.recordBtn.confirm.message.stop = Apakah Anda yakin ingin mengakhiri rekaman sesi ini?
-bbb.mainToolbar.recordBtn..notification.title = Notifikasi Rekaman
-bbb.mainToolbar.recordBtn..notification.message1 = Anda dapat merekam pertemuan ini.
-bbb.mainToolbar.recordBtn..notification.message2 = Anda harus mengklik tombol Mulai/Akhiri Rekaman di batang judul untuk memulai/mengakhiri rekaman.
+bbb.mainToolbar.recordBtn.notification.title = Notifikasi Rekaman
+bbb.mainToolbar.recordBtn.notification.message1 = Anda dapat merekam pertemuan ini.
+bbb.mainToolbar.recordBtn.notification.message2 = Anda harus mengklik tombol Mulai/Akhiri Rekaman di batang judul untuk memulai/mengakhiri rekaman.
bbb.mainToolbar.recordingLabel.recording = (Merekam)
bbb.mainToolbar.recordingLabel.notRecording = Tidak Merekam
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Konfigurasi Notifikasi
bbb.clientstatus.notification = Notifikasi Belum Dibaca
bbb.clientstatus.close = Tutup
@@ -150,10 +151,10 @@ bbb.clientstatus.webrtc.almostStrongStatus = Koneksi WebRTC audio anda normal.
bbb.clientstatus.webrtc.almostWeakStatus = Koneksi audio WebRTC anda tidak sempurna.
bbb.clientstatus.webrtc.weakStatus = Mungkin terjadi masalah dengan koneksi WebRTC anda.
bbb.clientstatus.webrtc.message = Disarankan menggunakan Firefox atau Chrome agar kualitas suara lebih baik.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimalkan
bbb.window.maximizeRestoreBtn.toolTip = Maksimalkan
bbb.window.closeBtn.toolTip = Tutup
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Klik untuk menjadikan Presenter
bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Hapus status
bbb.users.usersGrid.statusItemRenderer.viewer = Pemirsa
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Berbagi kamera.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Bunyikan {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Bungkam {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Kunci {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Tak terkunci {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Tendang {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Berbagi Kamera
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon off
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon on
bbb.users.usersGrid.mediaItemRenderer.noAudio = Tidak berada di konferensi audio
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Hapus
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Presentasi
bbb.presentation.titleWithPres = Presentasi: {0}
bbb.presentation.quickLink.label = Jendela Presentasi
bbb.presentation.fitToWidth.toolTip = Atur Presentasi Berdasarkan Lebar Layar
bbb.presentation.fitToPage.toolTip = Atur Presentasi Berdasarkan Ukuran Layar
bbb.presentation.uploadPresBtn.toolTip = Unggah Presentasi
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Slide Sebelumnya
bbb.presentation.btnSlideNum.accessibilityName = Slide {0} dari {1}
bbb.presentation.btnSlideNum.toolTip = Pilih slide
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Pengunggahan selesai. Harap menunggu sambil ka
bbb.presentation.uploaded = Telah terunggah
bbb.presentation.document.supported = Dokumen yang diunggah didukung. Sedang memulai konversi...
bbb.presentation.document.converted = Berhasil Mengkonversi Dokumen Office.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = Silakan konversikan dokumen ini menjadi PDF terlebih dahulu.
bbb.presentation.error.io = IO Error: Silahkan Hubungi Administrator.
bbb.presentation.error.security = Sekuritas bermasalah: Silahkan hubungi Administrator.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Unggah
bbb.fileupload.uploadBtn.toolTip = Unggah berkas terpilih
bbb.fileupload.deleteBtn.toolTip = Hapus Presentasi
bbb.fileupload.showBtn = Tampilkan
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Tampilkan Presentasi
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Sedang membangun thumbnails
bbb.fileupload.progBarLbl = Hasil:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Obrolan
bbb.chat.quickLink.label = Jendela Obrolan
bbb.chat.cmpColorPicker.toolTip = Warna Teks
bbb.chat.input.accessibilityName = Kolom Penyuntingan Obrolan
bbb.chat.sendBtn.toolTip = Kirim Pesan
bbb.chat.sendBtn.accessibilityName = Kirim pesan obrolan
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Salin Semua Teks
bbb.chat.publicChatUsername = Publik
bbb.chat.optionsTabName = Opsi
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Mulai Berbagi
bbb.publishVideo.startPublishBtn.toolTip = Mulai membagikan kamera Anda
bbb.publishVideo.startPublishBtn.errorName = Tidak dapat membagikan kamera. Alasan: {0}
bbb.webcamPermissions.chrome.title = Hak Akses Kamera Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Kamera
bbb.videodock.quickLink.label = Jendela Kamera
bbb.video.minimizeBtn.accessibilityName = Kecilkan Jendela Kamera
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Tutup kotak dialog pengaturan kamera
bbb.video.publish.closeBtn.label = Batal
bbb.video.publish.titleBar = Siarkan Jendela Kamera
bbb.video.streamClose.toolTip = Menutup kiriman untuk: {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = Berbagi Layar: Preview Pemateri
bbb.screensharePublish.pause.tooltip = Hentikan sejenak Berbagi Layar
bbb.screensharePublish.pause.label = Hentikan sejenak
@@ -428,28 +432,29 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = Gagal mendeteksi ekst
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = Anda terpantau menggunakan mode peramban privat/incognito. Pastikan pada setting ekstensi peramban anda mengizinkan penggunaan peramban privat/incognito.
bbb.screensharePublish.WebRTCExtensionInstallButton.label = Klik disini untuk Menginstal
bbb.screensharePublish.WebRTCUseJavaButton.label = Gunakan Berbagi Layar dengan Java
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Berbagi Layar
bbb.screenshareView.fitToWindow = Sesuaikan dengan Ukuran Jendela
bbb.screenshareView.actualSize = Tampilkan ukuran sebenarnya
bbb.screenshareView.minimizeBtn.accessibilityName = Minimalkan Tampilan Jendela Berbagi Layar
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maksimalkan Tampilan Jendela Berbagi Layar
bbb.screenshareView.closeBtn.accessibilityName = Menutup Tampilan Jendela Berbagi Layar
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Berhenti mendengarkan konferensi
bbb.toolbar.phone.toolTip.unmute = Mulai mendengarkan konferensi
bbb.toolbar.phone.toolTip.nomic = Tidak ada mikrofon yang terdeteksi
bbb.toolbar.deskshare.toolTip.start = Buka Jendela yang dimunculkan pada berbagi layar
bbb.toolbar.deskshare.toolTip.stop = Berhenti Membagikan Layar Anda
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Bagikan Kamera Anda
bbb.toolbar.video.toolTip.stop = Berhenti Membagikan Kamera Anda
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Tambahkan tata letak kastem ke dalam daftar
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Ubah Tata Letak Anda
bbb.layout.loadButton.toolTip = Muat tata letak dari berkas
bbb.layout.saveButton.toolTip = Simpan tata letak ke berkas
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Terapkan tata letak
bbb.layout.combo.custom = * Tata letak kastem
bbb.layout.combo.customName = Tata letak kastem
bbb.layout.combo.remote = Jarak Jauh
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Tata letak berhasil disimpan
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Tata letak berhasil dimuat
bbb.layout.load.failed = Tidak dapat memuat tata letak
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Tata letak default
bbb.layout.name.closedcaption = Subtitle
bbb.layout.name.videochat = Obrolan Video
bbb.layout.name.webcamsfocus = Pertemuan Menggunakan Kamera
bbb.layout.name.presentfocus = Pertemuan Presentasi
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Asisten Pengajar
bbb.layout.name.lecture = Pengajar
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Penyorot
bbb.highlighter.toolbar.pencil.accessibilityName = Ganti kursor papan tulis ke pensil
bbb.highlighter.toolbar.ellipse = Lingkaran
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Pilih warna
bbb.highlighter.toolbar.color.accessibilityName = Warna gambar tanda papan tulis
bbb.highlighter.toolbar.thickness = Ubah ketebalan
bbb.highlighter.toolbar.thickness.accessibilityName = Ketebalan gambar papan tulis
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Keluar
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Server aplikasi telah dimatikan
bbb.logout.asyncerror = Terjadi Masalah sinkronisasi
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Hubungan ke server telah berakhir.
bbb.logout.rejected = Hubungan ke server ditolak
bbb.logout.invalidapp = Aplikasi red5 belum terpasang
bbb.logout.unknown = Klien anda telah kehilangan hubungan ke server.
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Anda telah keluar dari konferensi
bbb.logour.breakoutRoomClose = Jendela peramban Anda akan ditutup
-bbb.logout.ejectedFromMeeting = Moderator telah mengeluarkan Anda dari pertemuan.
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Jika Anda Keluar tanpa disengaja, silakan tekan tombol dibawah untuk menghubungkan ulang
bbb.logout.refresh.label = Menghubungkan ulang
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Konfirmasi Keluar
bbb.logout.confirm.message = Apakah Anda yakin ingin keluar?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Ya
bbb.logout.confirm.no = Tidak
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Terdeteksi Masalah Konektivitas
bbb.connection.reconnecting=Menghubungi kembali
bbb.connection.reestablished=koneksi dihubungkan ulang
@@ -530,59 +539,60 @@ bbb.notes.title = Catatan
bbb.notes.cmpColorPicker.toolTip = Warna Teks
bbb.notes.saveBtn = Simpan
bbb.notes.saveBtn.toolTip = Simpan Catatan
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Klik Ijinkan pada jendela pop up untuk memeriksa jika berbagi desktop berjalan sebagaimana mestinya.
bbb.settings.deskshare.start = Periksa fitur Berbagi Desktop.
bbb.settings.voice.volume = Aktifitas Mikrofon
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Kesalahan pada versi Flash
bbb.settings.flash.text = Anda sudah memiliki Flash {0} yang terpasang, tapi anda membutuhkan paling tidak versi {1} untuk dapat menjalankan BigBlueButton dengan baik. Klik tombol di bawah untuk memasang versi Adobe Flash terbaru.
bbb.settings.flash.command = Pasang Flash yang terbaru
bbb.settings.isight.label = Terjadi kesalahan pada kamera iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Pasang Flash 10.2.RC2
bbb.settings.warning.label = Peringatan
bbb.settings.warning.close = Tutup peringatan ini
bbb.settings.noissues = Tidak ada masalah mencolok yang terdeteksi.
bbb.settings.instructions = Terima konfirmasi Flash yang meminta izin atas kamera anda. Jika anda bisa melihat dan mendengar diri anda sendiri berarti peramban anda sudah diatur dengan benar. Masalah yang potensial lainnya ditampilkan di bawah. Klik untuk menemukan kemungkinan solusi dari masing-masing masalah.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Segitiga
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Ganti kursor papan tulis ke segitiga
ltbcustom.bbb.highlighter.toolbar.line = Garis
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Anda telah berpindah ke pesan t
bbb.accessibility.chat.chatBox.navigatedLatestRead = Anda telah berpindah ke pesan terbaru yang telah dibaca.
bbb.accessibility.chat.chatwindow.input = Masukan obrolan
bbb.accessibility.chat.chatwindow.audibleChatNotification = Notifikasi percakapan berbasis audio
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Gunakan tombol panah untuk bernavigasi dalam pesan obrolan.
bbb.accessibility.notes.notesview.input = Masukan catatan
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Atur slide berdasarkan ukuran halaman
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Jadikan orang terpilih sebagai presenter
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Keluarkan orang terpilih dari pertemuan
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Bungkam atau bunyikan orang terpilih
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Siarkan
bbb.polling.closeButton.label = Tutup
bbb.polling.customPollOption.label = Polling terkustomisasi
bbb.polling.pollModal.title = Hasil Jajak Pendapat
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Masukkan Pilihan Jajak Pendapat
bbb.polling.respondersLabel.novotes = Menunggu respon
bbb.polling.respondersLabel.text = {0} Pengguna Telah Merespon
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Terapkan aturan penguncian
bbb.lockSettings.cancel = Batal
bbb.lockSettings.cancel.toolTip = Tutup jendela ini tanpa menyimpan
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Moderator mengunci
bbb.lockSettings.privateChat = Obrolan Pribadi
bbb.lockSettings.publicChat = Obrolan Publik
bbb.lockSettings.webcam = Kamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Tata Letak
bbb.lockSettings.title=Kunci Pemirsa
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Kunci Saat Bergabung
bbb.users.breakout.breakoutRooms = Ruang Diskusi Kelompok
bbb.users.breakout.updateBreakoutRooms = Perbaharui Ruang Diskusi Kelompok
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = Waktu tersisa untuk Ruang Diskusi Kelompok
bbb.users.breakout.calculatingRemainingTime = Menghitung waktu tersisa...
bbb.users.breakout.closing = Sedang Menutup
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Ruang
bbb.users.breakout.roomsCombo.accessibilityName = Jumlah ruangan yang dibuat
bbb.users.breakout.room = Ruang
-bbb.users.breakout.randomAssign = Mendaftarkan pengguna secara acak
bbb.users.breakout.timeLimit = Batas waktu
bbb.users.breakout.durationStepper.accessibilityName = Batas waktu dalam menit
bbb.users.breakout.minutes = Menit
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = Undang
bbb.users.breakout.close = Menutup
bbb.users.breakout.closeAllRooms = Tutup Semua Ruang Diskusi Kelompok
bbb.users.breakout.insufficientUsers = Jumlah pengguna tidak cukup. Anda harus menempatkan minimal satu orang pengguna pada Ruang Diskusi Kelompok.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = Ruang
bbb.users.roomsGrid.users = Pengguna
bbb.users.roomsGrid.action = Aksi
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Mengirimkan audio
bbb.users.roomsGrid.join = Bergabung
bbb.users.roomsGrid.noUsers = TIdak ada Pengguna di ruangan ini
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/it_IT/bbbResources.properties b/bigbluebutton-client/locale/it_IT/bbbResources.properties
index 254522fa05fe..6442584db761 100644
--- a/bigbluebutton-client/locale/it_IT/bbbResources.properties
+++ b/bigbluebutton-client/locale/it_IT/bbbResources.properties
@@ -1,24 +1,24 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Connessione alla conferenza in corso...
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = Caricamento in corso
bbb.mainshell.statusProgress.cannotConnectServer = Errore di connessione.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Apri finestra di Log
bbb.mainshell.meetingNotFound = Conferenza non trovata
-bbb.mainshell.invalidAuthToken = Codice di autenticazione non valido.
+bbb.mainshell.invalidAuthToken = Codice di autenticazione non valido
bbb.mainshell.resetLayoutBtn.toolTip = Reimposta Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
+bbb.mainshell.notification.tunnelling = In connessione
bbb.mainshell.notification.webrtc = Audio WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
+bbb.mainshell.fullscreenBtn.toolTip = Passare a schermo intero
+bbb.mainshell.quote.sentence.1 = Non ci sono segreti per il successo. È il risultato della preparazione, del duro lavoro e dell'imparare dagli errori.
bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
+bbb.mainshell.quote.sentence.2 = Dimmi e dimentico. Insegnami e ricordo. Coinvolgimi e imparo.
bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
+bbb.mainshell.quote.sentence.3 = Ho imparato il valore del lavoro duro lavorando duramente.
bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
+bbb.mainshell.quote.sentence.4 = Sviluppare una passione per la conoscenza. Se lo fai, non cederai mai a invecchiare.
bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
+bbb.mainshell.quote.sentence.5 = La ricerca sta creando nuove conoscenze.
bbb.mainshell.quote.attribution.5 = Neil Armstrong
bbb.oldlocalewindow.reminder1 = Potresti avere una localizzazione obsoleta di BigBlueButton.
bbb.oldlocalewindow.reminder2 = Svuota la cache del tuo browser e riprova.
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Connesso
bbb.micSettings.webrtc.transferring = Transferimento
bbb.micSettings.webrtc.endingecho = Partecipazione in audio
bbb.micSettings.webrtc.endedecho = Test dell'eco terminato.
+bbb.micPermissions.message.browserhttp = Questo server non è configurato con SSL. Di conseguenza, {0} disattiva la condivisione del tuo microfono.
bbb.micPermissions.firefox.title = Configurazione del microfono in Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message = Fare clic su Consenti per autorizzare Firefox ad utilizzare il microfono.
bbb.micPermissions.chrome.title = Configurazione del microfono su Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message = Fare clic su Consenti per autorizzare Chrome ad utilizzare il microfono.
bbb.micWarning.title = Avviso per il microfono
bbb.micWarning.joinBtn.label = Partecipa comunque
bbb.micWarning.testAgain.label = Avvia di nuovo il test del microfono
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Il test audio WebRTC è termin
bbb.webrtcWarning.connection.dropped = Collegamento WebRTC interrotto
bbb.webrtcWarning.connection.reconnecting = Nuovo collegamento in corso
bbb.webrtcWarning.connection.reestablished = Collegamento WebRTC ristabilito
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title = Nessuna attività rilevata
+bbb.inactivityWarning.message = Questa conferenza sembra inattiva. Spegni automaticamente ...
+bbb.shuttingDown.message = Questa conferenza è stata chiusa perchè inattiva
+bbb.inactivityWarning.cancel = Annulla
bbb.mainToolbar.helpBtn = Aiuto generale
bbb.mainToolbar.logoutBtn = Esci dalla conferenza
bbb.mainToolbar.logoutBtn.toolTip = Clicca per uscire dalla conferenza.
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn = {0} | Azzera il timeout di logout
bbb.mainToolbar.langSelector = Seleziona la lingua
bbb.mainToolbar.settingsBtn = Parametri di configurazione
bbb.mainToolbar.settingsBtn.toolTip = Apri i parametri di configurazione
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Avvia la registrazione
bbb.mainToolbar.recordBtn.toolTip.stop = Arresta la registrazione
bbb.mainToolbar.recordBtn.toolTip.recording = La sessione viene registrata
bbb.mainToolbar.recordBtn.toolTip.notRecording = La sessione non viene registrata
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Solo i moderatori possono avviare e bloccare le registrazioni
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = Questa registrazione non può essere interrotta
+bbb.mainToolbar.recordBtn.toolTip.wontRecord = Questa sessione non può essere registrata
bbb.mainToolbar.recordBtn.confirm.title = Conferma l'avvio della registrazione
bbb.mainToolbar.recordBtn.confirm.message.start = Sei sicuro di voler avviare la registrazione della sessione?
bbb.mainToolbar.recordBtn.confirm.message.stop = Sei sicuro di voler arrestare la registrazione della sessione?
-bbb.mainToolbar.recordBtn..notification.title = Notifica di registrazione
-bbb.mainToolbar.recordBtn..notification.message1 = Stai registrando questa conferenza
-bbb.mainToolbar.recordBtn..notification.message2 = Premi il tasto Start/Stop nella barra principale per avviare o fermare la registrazione.
+bbb.mainToolbar.recordBtn.notification.title = Notifica di registrazione
+bbb.mainToolbar.recordBtn.notification.message1 = Stai registrando questa conferenza
+bbb.mainToolbar.recordBtn.notification.message2 = Premi il tasto Start/Stop nella barra principale per avviare o fermare la registrazione.
bbb.mainToolbar.recordingLabel.recording = (Registrazione in corso)
bbb.mainToolbar.recordingLabel.notRecording = Registrazione non in esecuzione.
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message = Per poter partecipare alla conferenza, devi attendere l'approvazione del moderatore.
+bbb.waitWindow.waitMessage.title = In attesa
+bbb.guests.title = Ospiti
+bbb.guests.message.singular = {0} utente che desidera partecipare a questa conferenza
+bbb.guests.message.plural = {0} utenti che desiderano partecipare a questa conferenza
+bbb.guests.allowBtn.toolTip = Permetti
+bbb.guests.allowEveryoneBtn.text = Permetti a tutti
+bbb.guests.denyBtn.toolTip = Nega
+bbb.guests.denyEveryoneBtn.text = Nega a tutti
+bbb.guests.rememberAction.text = Ricorda la scelta
+bbb.guests.alwaysAccept = Permetti sempre
+bbb.guests.alwaysDeny = Nega sempre
+bbb.guests.askModerator = Chiedere al moderatore
+bbb.guests.Management = Gestione ospiti
bbb.clientstatus.title = Configurazione notifiche
bbb.clientstatus.notification = Notifiche non lette
bbb.clientstatus.close = Chiudi
@@ -151,9 +152,9 @@ bbb.clientstatus.webrtc.almostWeakStatus = Il tuo collegamento audio WebRTC è c
bbb.clientstatus.webrtc.weakStatus = Forse c'è un problema con la tua connessione audio WebRTC.
bbb.clientstatus.webrtc.message = Per migliori prestazioni audio, si consiglia l'uso di Firefox o Chrome come browser.
bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.notdetected = Versione Java non rilevata.
+bbb.clientstatus.java.notinstalled = Non hai installato Java, per favore clicca qui HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.oldversion = Hai installato una versione obsoleta di Java, per favore clicca qui HERE to install the latest Java to use the desktop sharing feature.
bbb.window.minimizeBtn.toolTip = Minimizza
bbb.window.maximizeRestoreBtn.toolTip = Massimizza
bbb.window.closeBtn.toolTip = Chiudi
@@ -183,25 +184,25 @@ bbb.users.muteMeBtnTxt.muted = Muto
bbb.users.usersGrid.contextmenu.exportusers = Copia nome partecipante
bbb.users.usersGrid.accessibilityName = Lista dei partecipanti: utilizza i tasti freccia per navigare.
bbb.users.usersGrid.nameItemRenderer = Nome
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = tu
+bbb.users.usersGrid.nameItemRenderer.youIdentifier = Tu
bbb.users.usersGrid.statusItemRenderer = Stato
bbb.users.usersGrid.statusItemRenderer.changePresenter = Clicca per attivare un Conduttore
bbb.users.usersGrid.statusItemRenderer.presenter = Conduttore
bbb.users.usersGrid.statusItemRenderer.moderator = Moderatore
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Solo voce
+bbb.users.usersGrid.statusItemRenderer.raiseHand = Mano alzata
+bbb.users.usersGrid.statusItemRenderer.applause = Applauso
+bbb.users.usersGrid.statusItemRenderer.thumbsUp = Pollice su
+bbb.users.usersGrid.statusItemRenderer.thumbsDown = Pollice giù
+bbb.users.usersGrid.statusItemRenderer.speakLouder = Parla più forte
+bbb.users.usersGrid.statusItemRenderer.speakSofter = Parla più piano
+bbb.users.usersGrid.statusItemRenderer.speakFaster = Parla più velocemente
+bbb.users.usersGrid.statusItemRenderer.speakSlower = Parla più lentamente
+bbb.users.usersGrid.statusItemRenderer.away = Distratto
+bbb.users.usersGrid.statusItemRenderer.confused = Confuso
+bbb.users.usersGrid.statusItemRenderer.neutral = Indifferente
+bbb.users.usersGrid.statusItemRenderer.happy = Felice
+bbb.users.usersGrid.statusItemRenderer.sad = Triste
bbb.users.usersGrid.statusItemRenderer.clearStatus = Cancella stato
bbb.users.usersGrid.statusItemRenderer.viewer = Partecipante
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Condividi la webcam.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Parla {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Muta {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Blocca{0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Sblocca {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Espelli {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser = Rimuovi {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = Condividi videocamera
bbb.users.usersGrid.mediaItemRenderer.micOff = Microfono off
bbb.users.usersGrid.mediaItemRenderer.micOn = Microfono on
bbb.users.usersGrid.mediaItemRenderer.noAudio = Conferenza senza segnale audio
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promuovi {0} a moderatore
+bbb.users.usersGrid.mediaItemRenderer.demoteUser = Rimuovi {0} da moderatore
bbb.users.emojiStatus.clear = Cancella
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand = Alzare la mano
+bbb.users.emojiStatus.happy = Felice
+bbb.users.emojiStatus.neutral = Indifferente
+bbb.users.emojiStatus.sad = Triste
+bbb.users.emojiStatus.confused = Confuso
+bbb.users.emojiStatus.away = Distratto
+bbb.users.emojiStatus.thumbsUp = Pollice su
+bbb.users.emojiStatus.thumbsDown = Pollice giù
+bbb.users.emojiStatus.applause = Applauso
+bbb.users.emojiStatus.agree = sono d'accordo
+bbb.users.emojiStatus.disagree = Non sono d'accordo
+bbb.users.emojiStatus.none = Cancella
+bbb.users.emojiStatus.speakLouder = Puoi parlare più forte?
+bbb.users.emojiStatus.speakSofter = Puoi parlare più piano?
+bbb.users.emojiStatus.speakFaster = Puoi parlare più velocemente?
+bbb.users.emojiStatus.speakSlower = Puoi parlare più lentamente?
+bbb.users.emojiStatus.beRightBack = Torno subito
bbb.presentation.title = Presentazione
bbb.presentation.titleWithPres = Presentazione: {0}
bbb.presentation.quickLink.label = Finestra Presentazione
bbb.presentation.fitToWidth.toolTip = Adatta la presentazione alla larghezza
bbb.presentation.fitToPage.toolTip = Adatta la presentazione alla pagina
bbb.presentation.uploadPresBtn.toolTip = Carica un documento
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip = Scarica la presentazione
+bbb.presentation.poll.response = Rispondi al sondaggio
bbb.presentation.backBtn.toolTip = Diapositiva precedente
bbb.presentation.btnSlideNum.accessibilityName = Diapositiva {0} di {1}
bbb.presentation.btnSlideNum.toolTip = Seleziona una diapositiva
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Caricamento completato. Attendere la conversio
bbb.presentation.uploaded = Caricato.
bbb.presentation.document.supported = Il documento caricato è compatibile.
bbb.presentation.document.converted = Documento è stato convertito con successo.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed = Prova a convertire il documento in formato PDF e a ricaricarlo di nuovo.
bbb.presentation.error.document.convert.invalid = Il documento deve essere prima convertito in PDF.
bbb.presentation.error.io = Errore I/O: contattare l'amministratore del sistema.
bbb.presentation.error.security = Errore di sicurezza : contattare l'amministratore del sistema.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Carica
bbb.fileupload.uploadBtn.toolTip = Avvia il caricamento del file selezionato
bbb.fileupload.deleteBtn.toolTip = Elimina presentazione
bbb.fileupload.showBtn = Mostra
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = Prova un altro file
bbb.fileupload.showBtn.toolTip = Mostra presentazione
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = Chiudi
+bbb.fileupload.close.accessibilityName = Chiudi la finestra Caricamento file
bbb.fileupload.genThumbText = Generazione anteprime...
bbb.fileupload.progBarLbl = Completamento...
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint = È possibile caricare qualsiasi documento di Office o Portable Document Format (PDF). Per un miglior risultato si consiglia di caricare un PDF.
+bbb.fileupload.letUserDownload = Abilita lo scaricamento della presentazione
+bbb.fileupload.letUserDownload.tooltip = Controlla qui se vuoi che gli altri utenti scaricano la tua presentazione
+bbb.filedownload.title = Scaricamento della presentazione
+bbb.filedownload.close.tooltip = Chiudi
+bbb.filedownload.close.accessibilityName = Chiudi la finestra di Scaricamento del file
+bbb.filedownload.fileLbl = Interrompi lo scaricamento del file:
+bbb.filedownload.downloadBtn = Scaricamento
+bbb.filedownload.downloadBtn.toolTip = Scaricamento presentazione
+bbb.filedownload.thisFileIsDownloadable = Il file è scaricabile
bbb.chat.title = Chat
bbb.chat.quickLink.label = Finestra chat
bbb.chat.cmpColorPicker.toolTip = Colore del testo
bbb.chat.input.accessibilityName = Area di creazione del messaggio
bbb.chat.sendBtn.toolTip = Invia messaggio
bbb.chat.sendBtn.accessibilityName = Invia messaggio nella chat
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip = Salva la chat
+bbb.chat.saveBtn.accessibilityName = Salva la chat in un file di testo
+bbb.chat.saveBtn.label = Salva
+bbb.chat.save.complete = La chat è stata salvata
+bbb.chat.save.ioerror = La chat non è stata salvata. Riprova ancora.
+bbb.chat.save.filename = Chat pubblica
+bbb.chat.copyBtn.toolTip = Copia la chat
+bbb.chat.copyBtn.accessibilityName = Copia chat nella clipboard
+bbb.chat.copyBtn.label = Copia
+bbb.chat.copy.complete = La chat è stata copiata nella clipboard
+bbb.chat.clearBtn.toolTip = Cancella la chat pubblica
+bbb.chat.clearBtn.accessibilityName = Cancella la storia della chat pubblica
+bbb.chat.clearBtn.chatMessage = la storia della chat pubblica è stata cancellata dal moderatore
+bbb.chat.clearBtn.alert.title = Attenzione
+bbb.chat.clearBtn.alert.text = Stai eliminando la cronologia della chat pubblica e questa azione non può essere annullata. Vuoi procedere?
bbb.chat.contextmenu.copyalltext = Copia tutto il testo
bbb.chat.publicChatUsername = Tutti
bbb.chat.optionsTabName = Opzioni
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Partecipa con la videocamera
bbb.publishVideo.startPublishBtn.toolTip = Avvia la visualizzazione della videocamera nella conferenza
bbb.publishVideo.startPublishBtn.errorName = Non è possibile condividere la webcam. Errore: {0}
bbb.webcamPermissions.chrome.title = Autorizza Chrome ad utilizzare la webcam
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message = Fai clic su Consenti per autorizzare Chrome ad utilizzare la tua webcam.
bbb.videodock.title = Videocamere condivise
bbb.videodock.quickLink.label = Videocamere condivise
bbb.video.minimizeBtn.accessibilityName = Minimizza la finestra videocamera
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Chiudi la finestra di configurazione del
bbb.video.publish.closeBtn.label = Annulla
bbb.video.publish.titleBar = Condividi la finestra della videocamera
bbb.video.streamClose.toolTip = Ferma il flusso video a : {0}
+bbb.video.message.browserhttp = Questo server non è configurato in modalità SSL. Di conseguenza, {0} disattiva la condivisione della tua webcam.
bbb.screensharePublish.title = Condivisione dello schermo: Anteprima del Conduttore
bbb.screensharePublish.pause.tooltip = Metti in pausa la condivisione dello schermo
bbb.screensharePublish.pause.label = Metti in pausa
@@ -428,28 +432,29 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = Non è stata rilevata
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = Se stai utilizzando la navigazione in incognito (privata), assicurati che le impostazioni dell'estensione di condivisione dello schermo ti consentono di farlo.
bbb.screensharePublish.WebRTCExtensionInstallButton.label = Clicca qui per istallare
bbb.screensharePublish.WebRTCUseJavaButton.label = Usa la condivisione dello schermo Java
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label = Caricamento video in corso... Si prega di attendere
+bbb.screensharePublish.sharingMessage= Questo è il tuo schermo condiviso
bbb.screenshareView.title = Condivisione dello schermo
bbb.screenshareView.fitToWindow = Adatta alla finestra
bbb.screenshareView.actualSize = Visualizza alla grandezza attuale
bbb.screenshareView.minimizeBtn.accessibilityName = Minimizza la finestra di visualizzazione dello schermo
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Massimizza la finestra di visualizzazione dello schermo
bbb.screenshareView.closeBtn.accessibilityName = Chiudi la finestra di visualizzazione dello schermo
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start = Abilita Audio (microfono o solo ascolto)
+bbb.toolbar.phone.toolTip.stop = Disabilita Audio
bbb.toolbar.phone.toolTip.mute = Smetti di ascoltare la conferenza
bbb.toolbar.phone.toolTip.unmute = Inizia ad ascoltare la conferenza
bbb.toolbar.phone.toolTip.nomic = Nessun microfono individuato.
bbb.toolbar.deskshare.toolTip.start = Finestra di pubblicazione della condivisione dello schermo
bbb.toolbar.deskshare.toolTip.stop = Ferma la condivisione dello schermo
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip = Apri le note condivise
bbb.toolbar.video.toolTip.start = Attiva la condivisione della tua Webcam
bbb.toolbar.video.toolTip.stop = Ferma la condivisione della tua Webcam
+bbb.layout.addButton.label = Aggiungi
bbb.layout.addButton.toolTip = Aggiungi il layout personalizzato alla lista
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title = Sovrascrivi il layout
+bbb.layout.overwriteLayoutName.text = Nome già in uso. Vuoi sovrascriverlo?
+bbb.layout.broadcastButton.toolTip = Applica il layout corrente a tutti i partecipanti
bbb.layout.combo.toolTip = Cambia il tuo Layaout
bbb.layout.loadButton.toolTip = Apri il layout da un file
bbb.layout.saveButton.toolTip = Salva il layout su un file
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Applica al layout
bbb.layout.combo.custom = * layout modificato
bbb.layout.combo.customName = Layout modificato
bbb.layout.combo.remote = remoto
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layout correttamente salvato
-bbb.layout.load.complete = Layout correttamente caricato
+bbb.layout.window.name = nome del Layout
+bbb.layout.window.close.tooltip = Chiudi
+bbb.layout.window.close.accessibilityName = Chiudere la finestra Aggiungi layout
+bbb.layout.save.complete = Il layout è stato correttamente salvato.
+bbb.layout.save.ioerror = Il layout non è stato salvato. Riprova nuovamente.
+bbb.layout.load.complete = Il layout è stato correttamente caricato
bbb.layout.load.failed = Impossibile caricare il layout
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync = Il tuo layout è stato inviato a tutti i partecipanti
bbb.layout.name.defaultlayout = Layout base
bbb.layout.name.closedcaption = Didascalie
bbb.layout.name.videochat = Video Chat
bbb.layout.name.webcamsfocus = Video Conferenza
bbb.layout.name.presentfocus = Presentazione
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers = Presentazione + partecipanti
bbb.layout.name.lectureassistant = Lezione assistita
bbb.layout.name.lecture = Lezione
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes = Note condivise
+bbb.layout.addCurrentToFileWindow.title = Aggiungere il layout corrente al file
+bbb.layout.addCurrentToFileWindow.text = Vuoi salvare il layout corrente nel file?
+bbb.layout.denyAddToFile.toolTip = Negare l'aggiunta del layout corrente
+bbb.layout.confirmAddToFile.toolTip = Confermare l'aggiunta del layout corrente
bbb.highlighter.toolbar.pencil = Matita
bbb.highlighter.toolbar.pencil.accessibilityName = Cambia il cursore in matita
bbb.highlighter.toolbar.ellipse = Cerchio
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Seleziona colore
bbb.highlighter.toolbar.color.accessibilityName = Colore utilizzato per il disegno
bbb.highlighter.toolbar.thickness = Cambia spessore
bbb.highlighter.toolbar.thickness.accessibilityName = Spessore della linea del disegno
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Uscita
+bbb.highlighter.toolbar.multiuser = Disegno multiutente
bbb.logout.button.label = OK
bbb.logout.appshutdown = L'applicazione server è stata arrestata
bbb.logout.asyncerror = Si è verificato un errore Async
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = La connessione al server è fallita
bbb.logout.rejected = La connessione al server è stata respinta
bbb.logout.invalidapp = L'applicazione red5 non esiste
bbb.logout.unknown = Hai perso la connessione con il server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout = Il moderatore non ti ha permesso di partecipare a questa conferenza
bbb.logout.usercommand = Sei uscito dalla conferenza
bbb.logour.breakoutRoomClose = La finestra del browser verrà chiusa
-bbb.logout.ejectedFromMeeting = Un moderatore ti ha espulso dalla conferenza.
-bbb.logout.refresh.message = Clicca su questo pulsante per riconnettersi alla conferenza.
+bbb.logout.ejectedFromMeeting = Sei stato espulso dalla conferenza
+bbb.logout.refresh.message = Clicca su questo pulsante per riconnettersi alla conferenza
bbb.logout.refresh.label = Riconnetti
-bbb.settings.title = Settings
+bbb.logout.feedback.hint = Come possiamo rendere BigBlueButton migliore?
+bbb.logout.feedback.label = Ci piacerebbe conoscere la tua esperienza con BigBlueButton (opzionale)
+bbb.settings.title = Impostazioni
bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.settings.cancel = Cancella
+bbb.settings.btn.toolTip = Apri la finestra di configurazione
bbb.logout.confirm.title = Conferma Uscita
bbb.logout.confirm.message = Sei sicuro di voler uscire?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting = Sì e chiudere la sessione
bbb.logout.confirm.yes = Si
bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title = Attenzione
+bbb.endSession.confirm.message = Se chiudi la sessione, tutti i partecipanti verranno disconnessi. Vuoi procedere?
bbb.connection.failure=Rilevati problemi di connessione
bbb.connection.reconnecting=Riconnessione
bbb.connection.reestablished=Connessione ristabilita
@@ -530,59 +539,60 @@ bbb.notes.title = Note
bbb.notes.cmpColorPicker.toolTip = Colore del testo
bbb.notes.saveBtn = Salva
bbb.notes.saveBtn.toolTip = Salva Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title = Note condivise
+bbb.sharedNotes.quickLink.label = Finestra delle note condivise
+bbb.sharedNotes.createNoteWindow.label = Nome delle note
+bbb.sharedNotes.createNoteWindow.close.tooltip = Chiudi
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Chiudi Crea nuova finestra di note
+bbb.sharedNotes.typing.single = {0} sta scrivendo...
+bbb.sharedNotes.typing.double = {0} e {1} stanno digitando ...
+bbb.sharedNotes.typing.multiple = Diverse persone stanno digitando ...
+bbb.sharedNotes.save.toolTip = Salvare le note nel file
+bbb.sharedNotes.save.complete = Le note sono state salvate correttamente
+bbb.sharedNotes.save.ioerror = Le note non sono state salvate. Riprova di nuovo.
+bbb.sharedNotes.save.htmlLabel = Testo formattato in formato(.html)
+bbb.sharedNotes.save.txtLabel = Testo in formato normale (.txt)
+bbb.sharedNotes.new.label = Crea
+bbb.sharedNotes.new.toolTip = Crea note aggiuntive
+bbb.sharedNotes.limit.label = Limite di grandezza note raggiunto
+bbb.sharedNotes.clear.label = Cancella questa nota
+bbb.sharedNotes.undo.toolTip = Annulla modifica
+bbb.sharedNotes.redo.toolTip = Ripristina modifica
+bbb.sharedNotes.toolbar.toolTip = Barra degli strumenti di formattazione del testo
+bbb.sharedNotes.settings.toolTip = Impostazioni delle note condivise
+bbb.sharedNotes.clearWarning.title = Cancella le note condivise
+bbb.sharedNotes.clearWarning.message = Questa azione cancellerà le note di questa finestra per tutti e non c'è modo di annullare. Sei sicuro di voler cancellare queste note?
+bbb.sharedNotes.additionalNotes.closeWarning.title = Chiusura delle note condivise
+bbb.sharedNotes.additionalNotes.closeWarning.message = Questa azione distruggerà le note di questa finestra per tutti e non c'è modo di annullare. Sei sicuro di voler cancellare queste note?
+bbb.sharedNotes.messageLengthWarning.title = E' stato superato il numero massimo dei caratteri
+bbb.sharedNotes.messageLengthWarning.text = La modifica supera il limite di {0}. Prova a fare una modifica più piccola.
+bbb.sharedNotes.remaining.tooltip = Spazio rimanente disponibile nelle note condivise
+bbb.sharedNotes.full.tooltip = Capacità massima raggiunta (cerca di eliminare parte del testo)
bbb.settings.deskshare.instructions = Clicca Permetti alla richiesta di controllo del corretto funzionamento della condivisione del desktop
bbb.settings.deskshare.start = Effettua un test della condivisione del desktop
bbb.settings.voice.volume = Attività del microfono
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label = Versione Java errata
+bbb.settings.java.text = Hai installato Java {0}, ma hai bisogno almeno della versione {1} per utilizzare la funzione di condivisione desktop BigBlueButton. Il pulsante sotto installerà la nuova versione Java JRE.
+bbb.settings.java.command = Installare la nuova versione Java
bbb.settings.flash.label = Errore di versione Flash
bbb.settings.flash.text = Hai Flash {0} installato nel tuo pc, ma ti serve almeno la versione {1} affinché BigBlueButton possa funzionare correttamente. Clicca sul pulsante sottostante per installare la versione più recente di Adobe Flash.
bbb.settings.flash.command = Installa una versione più recente di Flash
bbb.settings.isight.label = Errore della webcam iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text = Se hai problemi con la tua webcam iSight, può dipendere dal sistema OS X 10.6.5 che stai utilizzando, che è noto per avere un problema con la cattura di video Flash dalla webcam iSight. \ n Per correggere questo problema, il collegamento seguente installerà una versione più recente del lettore Flash o aggiorna il Mac nella versione più recente
bbb.settings.isight.command = Installa Flash 10.2 RC2
bbb.settings.warning.label = Attenzione
bbb.settings.warning.close = Chiudi questo avviso
bbb.settings.noissues = Non è stato individuato alcun ulteriore problema
bbb.settings.instructions = Accetta la richiesta quando Flash ti chiede il permesso di usare la webcam. Se puoi vederti e puoi sentirti, il tuo browser è configurato correttamente. Altri problemi potenziali sono elencati qui sotto. Clicca per trovare una possibile soluzione.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title = Monitor di rete
+bbb.bwmonitor.upload = Caricare
+bbb.bwmonitor.upload.short = Sopra
+bbb.bwmonitor.download = Scaricare
+bbb.bwmonitor.download.short = Sotto
+bbb.bwmonitor.total = Totale
+bbb.bwmonitor.current = Corrente
+bbb.bwmonitor.available = Disponibile
+bbb.bwmonitor.latency = Latenza
ltbcustom.bbb.highlighter.toolbar.triangle = Triangolo
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Cambia il cursore in Triangolo
ltbcustom.bbb.highlighter.toolbar.line = Linea
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Sei arrivato all'ultimo messagg
bbb.accessibility.chat.chatBox.navigatedLatestRead = Sei arrivato al messaggio più recente che hai letto.
bbb.accessibility.chat.chatwindow.input = Immetti il testo
bbb.accessibility.chat.chatwindow.audibleChatNotification = Notifica audio della chat
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions = Opzioni della chat pubblica
bbb.accessibility.chat.initialDescription = Si prega di utilizzare i tasti freccia per spostarsi tra i messaggi della chat.
bbb.accessibility.notes.notesview.input = Immetti le note
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Adatta le diapositive alla pagina
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Rendi conduttore il partecipante selezionato
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Espelli dalla conferenza il partecipante selezionato
+bbb.shortcutkey.users.kick.function = Espelli i partecipanti selezionati
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Muta/parla il partecipante selezionato
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Pubblica la valutazione
bbb.polling.closeButton.label = Chiudi la valutazione
bbb.polling.customPollOption.label = Impostazioni personalizzate della valutazione
bbb.polling.pollModal.title = Risultati della valutazione in tempo reale
+bbb.polling.pollModal.hint = Lasciare questa finestra aperta per consentire ai partecipanti di rispondere al sondaggio. La selezione del pulsante Pubblica o Chiudi chiude il sondaggio.
bbb.polling.customChoices.title = Inserisci le valutazioni
bbb.polling.respondersLabel.novotes = In attesa delle risposte
bbb.polling.respondersLabel.text = {0} Risposte degli utenti
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Applica il blocco delle impostazioni.
bbb.lockSettings.cancel = Cancella
bbb.lockSettings.cancel.toolTip = Chiudi la finestra senza salvare
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Moderatore bloccato
bbb.lockSettings.privateChat = Chat privata
bbb.lockSettings.publicChat = Chat pubblica
bbb.lockSettings.webcam = Videocamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Microfono
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Blocca le impostazioni dei partecipanti
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Blocco collegamento
bbb.users.breakout.breakoutRooms = Interrompere le sessioni
bbb.users.breakout.updateBreakoutRooms = Aggiornamento delle sessioni in corso
+bbb.users.breakout.timerForRoom.toolTip = Tempo rimasto per questa sessione di breakout
bbb.users.breakout.timer.toolTip = Tempo rimanente della sessione ...
bbb.users.breakout.calculatingRemainingTime = Calcolo tempo rimanente...
bbb.users.breakout.closing = In chiusura
+bbb.users.breakout.closewarning.text = Le sessioni di Breakout rooms si chiuderanno tra poco.
bbb.users.breakout.rooms = Sessioni
bbb.users.breakout.roomsCombo.accessibilityName = Numero di sessioni da creare
bbb.users.breakout.room = Sessione
-bbb.users.breakout.randomAssign = Assegna gli utenti in maniera casuale
bbb.users.breakout.timeLimit = Limite di tempo
bbb.users.breakout.durationStepper.accessibilityName = Tempo limite in minuti
bbb.users.breakout.minutes = Minuti
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = Invito
bbb.users.breakout.close = Fine
bbb.users.breakout.closeAllRooms = Chiudi tutte le sessioni
bbb.users.breakout.insufficientUsers = Utenti insufficienti. Si dovrebbe mettere almeno un utente per ogni sessione.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm = Partecipa a una stanza di Breakout
+bbb.users.breakout.invited = Sei stato invitato a partecipare a Breakout Room b>
+bbb.users.breakout.accept = Accettando, lascerai automaticamente l'audio e le video conferenze.
+bbb.users.breakout.joinSession = Iscriviti alla sessione
+bbb.users.breakout.joinSession.accessibilityName = Iscriviti alla sessione di Breakout Room
+bbb.users.breakout.joinSession.close.tooltip = Chiudi
+bbb.users.breakout.joinSession.close.accessibilityName = Chiudi nella finestra di entrata Breakout Room
+bbb.users.breakout.youareinroom = Sei in Breakout Room {0}
bbb.users.roomsGrid.room = Sessione
bbb.users.roomsGrid.users = Utenti
bbb.users.roomsGrid.action = Azione
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Collegamento Audio
bbb.users.roomsGrid.join = Collega
bbb.users.roomsGrid.noUsers = Non ci sono utenti in questa sessione
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=Lingua predefinita
+
+bbb.alert.cancel = Annulla
+bbb.alert.ok = OK
+bbb.alert.no = No
+bbb.alert.yes = Si
diff --git a/bigbluebutton-client/locale/ja/bbbResources.properties b/bigbluebutton-client/locale/ja/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/ja/bbbResources.properties
+++ b/bigbluebutton-client/locale/ja/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ja_JP/bbbResources.properties b/bigbluebutton-client/locale/ja_JP/bbbResources.properties
index 8f2817384428..f20361cc0f5b 100644
--- a/bigbluebutton-client/locale/ja_JP/bbbResources.properties
+++ b/bigbluebutton-client/locale/ja_JP/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = サーバへの接続
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = サーバーに接続できません。
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = ログウィンドウを開く
@@ -9,17 +9,17 @@ bbb.mainshell.invalidAuthToken = 無効な認証トークン
bbb.mainshell.resetLayoutBtn.toolTip = レイアウトをリセット
bbb.mainshell.notification.tunnelling = トンネリング
bbb.mainshell.notification.webrtc = WebRTC 音声
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = BigBlueButton の古い翻訳かもしれません。
bbb.oldlocalewindow.reminder2 = ブラウザーのキャッシュをクリアして、もう一度やり直してください。
bbb.oldlocalewindow.windowTitle = 警告:古い翻訳
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = 接続中
bbb.micSettings.webrtc.transferring = 転送中
bbb.micSettings.webrtc.endingecho = 音声で参加中
bbb.micSettings.webrtc.endedecho = エコーテスト終了。
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox マイクロフォン許可
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Corome マイクロフォン許可
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = 音声警告
bbb.micWarning.joinBtn.label = まず参加する
bbb.micWarning.testAgain.label = もう一度テストを
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC エコーテスト が
bbb.webrtcWarning.connection.dropped = WebRTCは未接続
bbb.webrtcWarning.connection.reconnecting = 再接続中
bbb.webrtcWarning.connection.reestablished = WebRTCで再接続中
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = ヘルプ
bbb.mainToolbar.logoutBtn = ログアウト
bbb.mainToolbar.logoutBtn.toolTip = ログアウト
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = 言語を選択
bbb.mainToolbar.settingsBtn = 設定
bbb.mainToolbar.settingsBtn.toolTip = 設定を開く
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = 収録を開始
bbb.mainToolbar.recordBtn.toolTip.stop = 収録を終了
bbb.mainToolbar.recordBtn.toolTip.recording = セッションを記録しています
bbb.mainToolbar.recordBtn.toolTip.notRecording = セッションを記録していません
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = 収録しますか
bbb.mainToolbar.recordBtn.confirm.message.start = このセッションの収録を開始しますか?
bbb.mainToolbar.recordBtn.confirm.message.stop = このセッションの収録を止めて良いですか?
-bbb.mainToolbar.recordBtn..notification.title = レコード通知
-bbb.mainToolbar.recordBtn..notification.message1 = この会議を記録できます
-bbb.mainToolbar.recordBtn..notification.message2 = タイトルバーの開始/停止ボタンで収録を開始/停止することができます
+bbb.mainToolbar.recordBtn.notification.title = レコード通知
+bbb.mainToolbar.recordBtn.notification.message1 = この会議を記録できます
+bbb.mainToolbar.recordBtn.notification.message2 = タイトルバーの開始/停止ボタンで収録を開始/停止することができます
bbb.mainToolbar.recordingLabel.recording = (収録中)
bbb.mainToolbar.recordingLabel.notRecording = 収録されていません
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = 通知設定
bbb.clientstatus.notification = 未読の通知
bbb.clientstatus.close = 閉じる
@@ -150,10 +151,10 @@ bbb.clientstatus.webrtc.almostStrongStatus = WebRTC 音声接続は良い状態
bbb.clientstatus.webrtc.almostWeakStatus = WebRTC 音声接続は悪い状態です
bbb.clientstatus.webrtc.weakStatus = WebRTC 音声接続に問題がある可能性があります
bbb.clientstatus.webrtc.message = 音質改善には Firefox か Chrome がお薦めです
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = 最小化
bbb.window.maximizeRestoreBtn.toolTip = 最大化
bbb.window.closeBtn.toolTip = 閉じる
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = ステータス
bbb.users.usersGrid.statusItemRenderer.changePresenter = プレゼンターになる
bbb.users.usersGrid.statusItemRenderer.presenter = プレゼンター
bbb.users.usersGrid.statusItemRenderer.moderator = モデレーター
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = ステータスをクリア
bbb.users.usersGrid.statusItemRenderer.viewer = ビューアー
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = ウェブカムを共有
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = {0} のミュートを解除
bbb.users.usersGrid.mediaItemRenderer.pushToMute = {0} をミュート
bbb.users.usersGrid.mediaItemRenderer.pushToLock = {0} をロック
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = {0} のロックを解除
-bbb.users.usersGrid.mediaItemRenderer.kickUser = {0} を退場させる
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = 共有ウェブカメラ
bbb.users.usersGrid.mediaItemRenderer.micOff = マイクオフ
bbb.users.usersGrid.mediaItemRenderer.micOn = マイクオン
bbb.users.usersGrid.mediaItemRenderer.noAudio = 音声会議なし
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = 消去
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = プレゼンテーション
bbb.presentation.titleWithPres = プレゼンテーション: {0}
bbb.presentation.quickLink.label = プレゼンテーションウインドウ
bbb.presentation.fitToWidth.toolTip = プレゼンテーションを横幅に合わせる
bbb.presentation.fitToPage.toolTip = プレゼンテーションをページに合わせる
bbb.presentation.uploadPresBtn.toolTip = プレゼンテーションをアップロード
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = 前のスライド
bbb.presentation.btnSlideNum.accessibilityName = スライド {0} 番、全体 {1}
bbb.presentation.btnSlideNum.toolTip = スライドを選択
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = アップロード完了。文書を変換す
bbb.presentation.uploaded = アップロードしました。
bbb.presentation.document.supported = アップロードした文書はサポートされています。変換の開始...
bbb.presentation.document.converted = オフィス文書の変換に成功しました。
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = 先にこの文書をPDFに変換してください。
bbb.presentation.error.io = IO エラー:管理者に連絡してください。
bbb.presentation.error.security = セキュリティエラー:管理者に連絡してください。
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = アップロード
bbb.fileupload.uploadBtn.toolTip = 選択したファイルをアップロード
bbb.fileupload.deleteBtn.toolTip = プレゼンテーションを削除
bbb.fileupload.showBtn = 表示
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = プレゼンテーションを表示
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = サムネイルを生成中…
bbb.fileupload.progBarLbl = 進捗状況:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = チャット
bbb.chat.quickLink.label = チャットウインドウ
bbb.chat.cmpColorPicker.toolTip = テキスト色
bbb.chat.input.accessibilityName = チャットメッセージ編集枠
bbb.chat.sendBtn.toolTip = メッセージを送る
bbb.chat.sendBtn.accessibilityName = チャットメッセージを送る
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = 全文コピー
bbb.chat.publicChatUsername = 公開
bbb.chat.optionsTabName = オプション
@@ -337,7 +340,7 @@ bbb.chat.maximizeRestoreBtn.accessibilityName = チャットウィンドウを
bbb.chat.closeBtn.accessibilityName = チャットウィンドウを閉じる
bbb.chat.chatTabs.accessibleNotice = このタブに新着メッセージです
bbb.chat.chatMessage.systemMessage = システム
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = メッセージは {0} 文字長すぎます
bbb.publishVideo.changeCameraBtn.labelText = ウェブカメラを変更
bbb.publishVideo.changeCameraBtn.toolTip = ウェブカメラ変更のダイアログボックスを開く
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = 共有を開始
bbb.publishVideo.startPublishBtn.toolTip = ウェブカメラ共有を開始
bbb.publishVideo.startPublishBtn.errorName = ウェブカムを共有できません。理由: {0}
bbb.webcamPermissions.chrome.title = Chrome ウェブカム許可
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = ウェブカメラ
bbb.videodock.quickLink.label = ウェブカメラウインドウ
bbb.video.minimizeBtn.accessibilityName = ウェブカメラウィンドウを最小化
@@ -367,60 +370,61 @@ bbb.video.publish.closeBtn.accessName = ウェブカメラ設定ダイアログ
bbb.video.publish.closeBtn.label = キャンセル
bbb.video.publish.titleBar = ウェブカメラウィンドウを公開
bbb.video.streamClose.toolTip = 配信停止: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
bbb.screensharePublish.maximizeRestoreBtn.toolTip = このウインドウは最大化できません。
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = 最小化
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
bbb.screensharePublish.tunnelingErrorMessage.one = 画面共有を実行できません。
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
bbb.screensharePublish.startButton.label = 開始
-bbb.screensharePublish.stopButton.label = Stop
+bbb.screensharePublish.stopButton.label =
bbb.screensharePublish.stopButton.toolTip = 画面共有の停止
bbb.screensharePublish.WebRTCChromeExtensionMissing.label = 最新の Chrome をインストールしていますが、画面共有の拡張機能をインストールしていません。
bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = 画面共有をインストールし「再試行」をクリックしてください。
@@ -428,28 +432,29 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = 画面共有の拡張
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = 匿名またはプライベートブラウジングを使用しているようです。設定で、匿名/プライベートブラウジングでの拡張機能の実行を許可してください。
bbb.screensharePublish.WebRTCExtensionInstallButton.label = クリックしてインストール
bbb.screensharePublish.WebRTCUseJavaButton.label = Java 画面共有を使う
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = カンファレンスを無音にします
bbb.toolbar.phone.toolTip.unmute = カンファレンスを公聴します
bbb.toolbar.phone.toolTip.nomic = マイクが見つかりません
bbb.toolbar.deskshare.toolTip.start = デスクトップ共有ウィンドウを開く
bbb.toolbar.deskshare.toolTip.stop = デスクトップ共有を停止
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = ウェブカメラを共有
bbb.toolbar.video.toolTip.stop = ウェブカメラ共有を停止
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = リストにカスタムレイアウトを追加
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = レイアウトを変更
bbb.layout.loadButton.toolTip = レイアウトをファイルから読み込む
bbb.layout.saveButton.toolTip = レイアウトをファイルに保存
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = レイアウトを適用
bbb.layout.combo.custom = * カスタムレイアウト
bbb.layout.combo.customName = カスタムレイアウト
bbb.layout.combo.remote = リモート
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = レイアウトを正常に保存しました
+bbb.layout.save.ioerror =
bbb.layout.load.complete = レイアウトを正常に読み込みました
bbb.layout.load.failed = レイアウトを読み込めません
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = デフォルトレイアウト
bbb.layout.name.closedcaption = クローズドキャプション
bbb.layout.name.videochat = ビデオチャット
bbb.layout.name.webcamsfocus = ウェブカムミーティング
bbb.layout.name.presentfocus = プレゼンテーションミーティング
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = レクチャーアシスタント
bbb.layout.name.lecture = レクチャー
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = 鉛筆
bbb.highlighter.toolbar.pencil.accessibilityName = ホワイトボードカーソルを鉛筆に切り替える
bbb.highlighter.toolbar.ellipse = 円
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = 色を選択
bbb.highlighter.toolbar.color.accessibilityName = ホワイトボードマーカー色
bbb.highlighter.toolbar.thickness = 太さを変更
bbb.highlighter.toolbar.thickness.accessibilityName = ホワイトボードマーカーの太さ
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = 退出しました
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = サーバーアプリがシャットダウンされています
bbb.logout.asyncerror = 非同期エラーが発生しました
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = サーバーへの接続が終了しました
bbb.logout.rejected = サーバーへの接続が拒否されました
bbb.logout.invalidapp = red5 アプリが存在しません
bbb.logout.unknown = クライアントがサーバーとの接続を失いました
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = 会議からログアウトしました
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = モデレーターがあなたを退出させました
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = このログアウトは不意かもしれません。下のボタンで再接続してください
bbb.logout.refresh.label = 再コネクト
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = ログアウト確認
bbb.logout.confirm.message = 本当にログアウトしますか?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = はい
bbb.logout.confirm.no = いいえ
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=接続上の問題を発見しました。
bbb.connection.reconnecting=再接続中
bbb.connection.reestablished=再接続されました。
@@ -530,59 +539,60 @@ bbb.notes.title = メモ
bbb.notes.cmpColorPicker.toolTip = テキスト色
bbb.notes.saveBtn = 保存
bbb.notes.saveBtn.toolTip = メモを保存
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = デスクトップ共有が正常に動作していることをチェックするポップアップのプロンプトで、許可を選択
bbb.settings.deskshare.start = デスクトップ共有をチェック
bbb.settings.voice.volume = マイクのアクティビティ
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash バージョンのエラー
bbb.settings.flash.text = Flash {0} がインストールされていますが、 BigBlueButton を正常に実行するには、少なくともバージョン {1} を必要とします。最新の Adobe Flash をインストールするには、下のボタンをクリックします。
bbb.settings.flash.command = 最新の Flash をインストール
bbb.settings.isight.label = iSight ウェブカメラのエラー
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Flash 10.2 RC2 をインストール
bbb.settings.warning.label = 警告
bbb.settings.warning.close = この警告を閉じる
bbb.settings.noissues = 未解決の問題の検出はありません。
bbb.settings.instructions = ウェブカメラの許可を要求する Flash のプロンプトを許可して下さい。出力が望み通りであれば、ブラウザーは正常にセットアップされています。その他の潜在的問題は下記のとおりです。調査をし、可能な解決策を見つけて下さい。
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = 三角形
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = ホワイトボードカーソルを三角形に切り替える
ltbcustom.bbb.highlighter.toolbar.line = 線
@@ -592,29 +602,29 @@ ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = ホワイトボード
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = テキスト色
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = フォントサイズ
bbb.caption.window.title = クローズドキャプション
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
bbb.caption.option.language = 言語:
bbb.caption.option.language.tooltip = キャプション言語を選択
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
bbb.caption.option.fontsize = フォントサイズ:
bbb.caption.option.fontsize.tooltip = フォントサイズ
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
bbb.caption.option.textcolor.tooltip = テキスト色
@@ -627,13 +637,13 @@ bbb.accessibility.chat.chatBox.navigatedLatest = 最新のメッセージに移
bbb.accessibility.chat.chatBox.navigatedLatestRead = 既読のうちで最新のメッセージに移動しました。
bbb.accessibility.chat.chatwindow.input = チャット入力
bbb.accessibility.chat.chatwindow.audibleChatNotification = 音声によるチャット通知
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = チャットメッセージはカーソルキーで操作できます。
bbb.accessibility.notes.notesview.input = メモ入力
bbb.shortcuthelp.title = ショートカットキー
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = ショートカットのヘルプウィンドウを最小化
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = ショートカットのヘルプウィンドウを最大化
bbb.shortcuthelp.closeBtn.accessibilityName = ショートカットのヘルプウィンドウを閉じる
@@ -642,7 +652,7 @@ bbb.shortcuthelp.dropdown.general = グローバルショートカット
bbb.shortcuthelp.dropdown.presentation = プレゼンテーションのショートカット
bbb.shortcuthelp.dropdown.chat = チャットのショートカット
bbb.shortcuthelp.dropdown.users = ユーザーのショートカット
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
+bbb.shortcuthelp.dropdown.caption =
bbb.shortcuthelp.browserWarning.text = ショートカットのすべてのリストをサポートしているのは Internet Explorer のみです。
bbb.shortcuthelp.headers.shortcut = ショートカット
bbb.shortcuthelp.headers.function = 機能
@@ -671,7 +681,7 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = プレゼンテーションウィンドウにフォーカスを移動
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = チャットウィンドウにフォーカスを移動
-bbb.shortcutkey.focus.caption = 53
+bbb.shortcutkey.focus.caption =
bbb.shortcutkey.focus.caption.function = クローズドキャプションウインドウにフォーカスを移動
bbb.shortcutkey.share.desktop = 68
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = ページにスライドを合わせ
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = 選択した人をプレゼンターにする
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = 選択した人を会議から退場させる
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = 選択した人をミュートまたはミュート解除
bbb.shortcutkey.users.muteall = 65
@@ -710,13 +720,13 @@ bbb.shortcutkey.users.muteall.function = すべてのユーザーをミュート
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = プレゼンター以外のすべての人をミュート
bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
+bbb.shortcutkey.users.breakoutRooms.function =
bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
+bbb.shortcutkey.users.focusBreakoutRooms.function =
bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = チャットタブにフォーカス
@@ -747,14 +757,15 @@ bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = 一時的なデバッグホットキー
bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = 投票を開始
bbb.polling.startButton.label = 投票開始
bbb.polling.publishButton.label = パブリッシュ
bbb.polling.closeButton.label = クローズ
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = ライブ投票結果
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = 投票してください
bbb.polling.respondersLabel.novotes = 返答を待機
bbb.polling.respondersLabel.text = {0} 人が回答済み
@@ -792,7 +803,7 @@ bbb.users.settings.lockAll = すべてのユーザーをロック
bbb.users.settings.lockAllExcept = プレゼンター以外のすべてのユーザーをロック
bbb.users.settings.lockSettings = 閲覧者をロック
bbb.users.settings.breakoutRooms = 小会議室 ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = すべての閲覧者のロックを解除
bbb.users.settings.roomIsLocked = デフォルトでロック
bbb.users.settings.roomIsMuted = デフォルトでミュート
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = ロック設定を適用
bbb.lockSettings.cancel = キャンセル
bbb.lockSettings.cancel.toolTip = このウインドウを保存せずに閉じる
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = モデレーターによるロック
bbb.lockSettings.privateChat = 非公開チャット
bbb.lockSettings.publicChat = 公開チャット
bbb.lockSettings.webcam = ウェブカメラ
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = マイク
bbb.lockSettings.layout = レイアウト
bbb.lockSettings.title=閲覧者をロック
@@ -814,90 +827,45 @@ bbb.lockSettings.locked=固定済み
bbb.lockSettings.lockOnJoin=参加を固定
bbb.users.breakout.breakoutRooms = 小会議室
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
bbb.users.breakout.calculatingRemainingTime = 残り時間を計算中...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
bbb.users.breakout.start = 開始
-bbb.users.breakout.invite = Invite
+bbb.users.breakout.invite =
bbb.users.breakout.close = 閉じる
bbb.users.breakout.closeAllRooms = 全ての小会議室を閉じる
bbb.users.breakout.insufficientUsers = ユーザー数が足りません。ひとつの小会議室には、少なくとも一人のユーザーを配置してください。
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ka/bbbResources.properties b/bigbluebutton-client/locale/ka/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/ka/bbbResources.properties
+++ b/bigbluebutton-client/locale/ka/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ka_GE/bbbResources.properties b/bigbluebutton-client/locale/ka_GE/bbbResources.properties
index ffa125913559..7c3a893401b1 100644
--- a/bigbluebutton-client/locale/ka_GE/bbbResources.properties
+++ b/bigbluebutton-client/locale/ka_GE/bbbResources.properties
@@ -1,903 +1,871 @@
bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.statusProgress.connecting = სერვერთან დაკავშირება
+bbb.mainshell.statusProgress.loading = დალოდება
+bbb.mainshell.statusProgress.cannotConnectServer = უკაცრავად, ჩვენ ვერ ვუკავშირდებით სერვერს
+bbb.mainshell.copyrightLabel2 = (c) 2017BigBlueButton Inc.(build {0})
+bbb.mainshell.logBtn.toolTip = გახსენი Log ფანჯარა
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip = ფანჯრების განლაგების საწყისი პოზიცია
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 = შესაძლოა გქონდეთ BigBlueButton-ის ძველი ენის თარგმანები
+bbb.oldlocalewindow.reminder2 = გთხოვთ გაასუფთაოთ თქვენი ბრაუზერის ქეში და სცადოთ ხელახლა
+bbb.oldlocalewindow.windowTitle = გაფრთხილება: ძველი ენის თარგმანები
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title = აუდიო ტესტი
+bbb.micSettings.speakers.header = გატესტე სპიკერები
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound = გატესტე სპიკერები
+bbb.micSettings.playSound.toolTip = ჩართე მუსიკა და გატესტე სპიკერები
+bbb.micSettings.hearFromHeadset = შენ შესაძლოა მოისმინო აუდიო შენს ყურსასმენებში და არა შენი კომპიუტერის სპიკერებში
+bbb.micSettings.speakIntoMic = თუ იყენებთ ყურსასმენებს, შენ მოისმენ აუდიოს ყურსასმენებში და არა კომპიუტერის სპიკერებში
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic = გატესტე ან შეცვალე მიკროფონი
+bbb.micSettings.changeMic.toolTip = გახსენი Flash Player მიკროფონის პარამეტრების დიალოგური ფანჯარა
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join = ჩართე აუდიო
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel = გაუქმება
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip = გააუქმე აუდიო კონფერენციასთან დაკავშირება
+bbb.micSettings.access.helpButton = დახმარება (გახსენი დამხმარე ვიდეო ახალ ფანჯარაში)
+bbb.micSettings.access.title = აუდიო პარამეტრები. ფოკუსი დარჩება აუდიო პარამეტრებზე მანამ სანამ ეს ფანჯარა არ დაიხურება.
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel = გაუქმება
+bbb.mainToolbar.helpBtn = დახმარება
+bbb.mainToolbar.logoutBtn = გამოსვლა
+bbb.mainToolbar.logoutBtn.toolTip = გამოსვლა
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector = შეარჩიე ენა
+bbb.mainToolbar.settingsBtn = პარამეტრები
+bbb.mainToolbar.settingsBtn.toolTip = გახსენი პარამეტრები
+bbb.mainToolbar.shortcutBtn = ცხელი ღილაკები
+bbb.mainToolbar.shortcutBtn.toolTip = გახსენი ცხელი ღილაკების ფანჯარა
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close = დახურვა
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip = ჩაკეცვა
+bbb.window.maximizeRestoreBtn.toolTip = მაქსიმიზირება
+bbb.window.closeBtn.toolTip = დახურვა
+bbb.videoDock.titleBar = ვებკამერის ფანჯრის სათაურის ზოლი
+bbb.presentation.titleBar = პრეზენტაციის ფანჯრის სათაურის ზოლი
+bbb.chat.titleBar = სასაუბრო ფანჯრის სათაურის ზოლი
+bbb.users.title = მომხმარებლები{0}{1}
+bbb.users.titleBar = მომხმარებლების ფანჯრის სათაურის ზოლი
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName = ჩაკეცე მომხმარებლების ფანჯარა
+bbb.users.maximizeRestoreBtn.accessibilityName = გაადიდე მომხმარებლების ფანჯარა
+bbb.users.settings.buttonTooltip = პარამეტრები
+bbb.users.settings.audioSettings = აუდიო ტესტი
+bbb.users.settings.webcamSettings = ვებკამერის პარამეტრები
+bbb.users.settings.muteAll = ყველა მომხმარებლის გაჩუმება
+bbb.users.settings.muteAllExcept = პრეზენტატორის გარდა ყველა მომხმარებლის გაჩუმება
+bbb.users.settings.unmuteAll = ყველა მომხმარებლის გაჩუმების გაუქმება
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip = საუბარი
+bbb.users.pushToMute.toolTip = საკუთარი თავის გაჩუმება
+bbb.users.muteMeBtnTxt.talk = გაჩუმების გაუქმება
+bbb.users.muteMeBtnTxt.mute = გაჩუმება
+bbb.users.muteMeBtnTxt.muted = გაჩუმებულია
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName = მომხმარებლების სია. გამოიყენე კლავიატურის ისრები ნავიგაციისთვის.
+bbb.users.usersGrid.nameItemRenderer = სახელი
+bbb.users.usersGrid.nameItemRenderer.youIdentifier = შენ
+bbb.users.usersGrid.statusItemRenderer = სტატუსი
+bbb.users.usersGrid.statusItemRenderer.changePresenter = დააწკაპუნე პრეზენტაციის დასაწყებად
+bbb.users.usersGrid.statusItemRenderer.presenter = პრეზენტატორი
+bbb.users.usersGrid.statusItemRenderer.moderator = მოდერატორი
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer = მაყურებელი
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer = მედია
+bbb.users.usersGrid.mediaItemRenderer.talking = მოსაუბრე
+bbb.users.usersGrid.mediaItemRenderer.webcam = ვებკამერის გაზიარება
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn = ვებკამერის ნახვა
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam = ვებკამერის გაზიარება
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip = დახურვა
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip = დახურვა
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label = გაუქმება
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip = ჩაკეცვა
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip = დახმარება
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label = გაუქმება
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip = დახურვა
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title = პარამეტრები
+bbb.settings.ok =
+bbb.settings.cancel = გაუქმება
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip = დახურვა
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title = ცხელი ღილაკები
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label = დახურვა
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel = გაუქმება
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close = დახურვა
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip = დახურვა
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel = გაუქმება
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/kk_KZ/bbbResources.properties b/bigbluebutton-client/locale/kk_KZ/bbbResources.properties
index ab4980a2294f..6eb76ffd577c 100644
--- a/bigbluebutton-client/locale/kk_KZ/bbbResources.properties
+++ b/bigbluebutton-client/locale/kk_KZ/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Серверге қосылу сәткіліксіз аяқталды.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Көмек
bbb.mainToolbar.logoutBtn = Шығу
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Презентация
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Әуелгі слайд.
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
bbb.presentation.forwardBtn.toolTip = Келесі слайд
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
bbb.presentation.uploadwindow.pdf = PDF файлы
bbb.presentation.uploadwindow.word = Word документі
bbb.presentation.uploadwindow.excel = Excel таблицасы
bbb.presentation.uploadwindow.powerpoint = PowerPoint презентациясы
bbb.presentation.uploadwindow.image = Бейне
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
bbb.fileupload.title = Презентацияны жүктеу
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
bbb.fileupload.selectBtn.toolTip = Файлды таңдау
bbb.fileupload.uploadBtn = Жүктеу
bbb.fileupload.uploadBtn.toolTip = Файлды жүктеу
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
+bbb.fileupload.deleteBtn.toolTip =
bbb.fileupload.showBtn = Көрсету
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Презентацияны көрсету
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Чат
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/km_KH/bbbResources.properties b/bigbluebutton-client/locale/km_KH/bbbResources.properties
index 210b00d31f1d..bd3bd602f38b 100644
--- a/bigbluebutton-client/locale/km_KH/bbbResources.properties
+++ b/bigbluebutton-client/locale/km_KH/bbbResources.properties
@@ -1,159 +1,160 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = កំពុងភ្ជាប់ទៅម៉ាស៊ីនបម្រើ "Server"
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = កំពុងដំណើរការ
bbb.mainshell.statusProgress.cannotConnectServer = សូមអភ័យទោស! យើងមិនអាចភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើបានទេ។
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc.(build {0})
bbb.mainshell.logBtn.toolTip = បើកផ្ទាំងចូល
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound = រកមិនឃើញការប្រជុំទេ
+bbb.mainshell.invalidAuthToken = Authentication Token មិនត្រឹមត្រូវ
bbb.mainshell.resetLayoutBtn.toolTip = ប្តូរប្លង់ទៅទម្រង់ដើម
bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
+bbb.mainshell.notification.webrtc = សម្លេង WebRTC
+bbb.mainshell.fullscreenBtn.toolTip = បិទ/បើកពេញអេក្រង់
+bbb.mainshell.quote.sentence.1 = មិនមានអាថ៌កំបាំងសម្រាប់ភាពជោគជ័យទេ! ភាពជោគជ័យជាលទ្ធផលនៃការត្រៀមខ្លួន ការខិតខំ និងការរៀនពីភាពបរាជ័យ។
bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
+bbb.mainshell.quote.sentence.2 = ប្រាប់ខ្ញុំ ខ្ញុំនឹងភ្លេច។ បង្រៀនខ្ញុំ ខ្ញុំនឹងចាំ។ ឲ្យខ្ញុំចូលរួម ខ្ញុំនឹងរៀន។
bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
+bbb.mainshell.quote.sentence.3 = ខ្ញុំបានរៀនពីតម្លៃនៃកិច្ចការលំបាកតាមរយៈការប្រឹងប្រែង។
bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
+bbb.mainshell.quote.sentence.4 = អភិវឌ្ឍចំនូលចិត្តសម្រាប់ការរៀនសូត្រ។ ប្រសិនបើអ្នកធ្វើដូច្នោះមែន នោះអ្នកនឹងមិនឈប់លូតលាស់ទេ!
bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
+bbb.mainshell.quote.sentence.5 = ការស្រាវជ្រាវគឺការបង្កើតចំណេះដឹងថ្មី។
bbb.mainshell.quote.attribution.5 = Neil Armstrong
bbb.oldlocalewindow.reminder1 = អ្នកប្រហែលជាមានបំនកប្រែនៃភាសាចាស់របស់BigBlueButton។
bbb.oldlocalewindow.reminder2 = សូមសម្អាតឃ្លាំងសម្ងាត់ក្នុងកម្មវិធីរុករករបស់អ្នកហើយសាកម្តងទៀត។
bbb.oldlocalewindow.windowTitle = ប្រុងប្រយ័ត្ន៖ បំនកប្រែភាសាចាស់
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
+bbb.audioSelection.title = តើអ្នកចង់ចូលរួមដោយប្រើសម្លេងរបៀបណា?
+bbb.audioSelection.btnMicrophone.label = មីក្រូហ្វូន
+bbb.audioSelection.btnMicrophone.toolTip = ភ្ជាប់សម្លេងដោយប្រើម៉ីក្រូហ្វូនរបស់អ្នក
+bbb.audioSelection.btnListenOnly.label = គ្រាន់តែស្តាប់
+bbb.audioSelection.btnListenOnly.toolTip = ចូលរួមត្រឹមតែស្តាប់
+bbb.audioSelection.txtPhone.text = ដើម្បីចូលរួមក្នុងការប្រជុំនេះតាមរយៈទូរស័ព្ទ សូមហៅទៅកាន់ {0} រួចបញ្ចូល {1} ជាលេខសម្គាល់សន្និសិទ។
bbb.micSettings.title = សាកសម្លេង
bbb.micSettings.speakers.header = សាកល្បងឧបករណ៍បន្លឺសម្លេង
-bbb.micSettings.microphone.header = Test Microphone
+bbb.micSettings.microphone.header = សាកល្បងមីក្រូហ្វូន
bbb.micSettings.playSound = សាកល្បងឧបករណ៍បន្លឺសម្លេង
bbb.micSettings.playSound.toolTip = លេងចម្រៀងដើម្បីសាកល្បងឧបករណ៍បន្លឺសម្លេង
bbb.micSettings.hearFromHeadset = អ្នកគួរតែលឺសម្លេងចេញពីកាសរបស់អ្នក មិនមែនពីឧបករណ៍បន្លឺសម្លេងរបស់កុំព្យូទ័រទេ។
bbb.micSettings.speakIntoMic = ប្រសិនបើអ្នកប្រើកាស អ្នកគួរតែលឺសម្លេងចេញពីកាសរបស់អ្នក មិនមែនពីឧបករណ៍បន្លឺសម្លេងរបស់កុំព្យូទ័រទេ។\n
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.echoTestMicPrompt = នេះជាការសាកល្បងអេកួឯកជន។ សូមនិយាយពីរបីពាក្យ។ តើអ្នកលឺសម្លេងទេ?
+bbb.micSettings.echoTestAudioYes = បាទ/ចាស
+bbb.micSettings.echoTestAudioNo = ទេ
+bbb.micSettings.speakIntoMicTestLevel = និយាយទៅកាន់មីក្រូហ្វូនរបស់អ្នក។ អ្នកគួរតែឃើញការផ្លាស់ប្តូរនៃរបារ។ ប្រសិនបើមិនដូច្នោះទេ សូមជ្រើសមីក្រូហ្វូនផ្សេងទៀត។
+bbb.micSettings.recommendHeadset = ប្រើកាសមួយដែលមានម៉ីក្រូហ្វូនដើម្បីទទួលសម្លេងល្អបំផុត។
bbb.micSettings.changeMic = សាកល្បង ឬប្តូរមីក្រូហ្វូន
bbb.micSettings.changeMic.toolTip = បើកផ្ទាំងសំរាប់ការកំណត់មីក្រូហ្វូន Flash Player
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.comboMicList.toolTip = ជ្រើសមីក្រូហ្វូន
+bbb.micSettings.micRecordVolume.label = កម្រិត
+bbb.micSettings.micRecordVolume.toolTip = កំណត់កម្រិតសម្លេងមីក្រូហ្វូនរបស់អ្នក
+bbb.micSettings.nextButton = បន្ទាប់
+bbb.micSettings.nextButton.toolTip = ចាប់ផ្តើមការសាកល្បងអេកូ
bbb.micSettings.join = ភ្ជាប់សម្លេង
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.join.toolTip = ចូលរួមសន្និសិទជាសម្លេង
bbb.micSettings.cancel = បោះបង់
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = បោះបង់ការតភ្ជាប់សន្និសីទជាសម្លេង
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.connectingtoecho = កំពុងភ្ជាប់
+bbb.micSettings.connectingtoecho.error = កំហុសក្នុងការសាកល្បងអេកូៈ សូមទាក់ទងអ្នកគ្រប់គ្រង
+bbb.micSettings.cancel.toolTip = បោះបង់ការតភ្ជាប់សន្និសិទជាសម្លេង
+bbb.micSettings.access.helpButton = ជំនួយ (បើកវីដេអូបង្រៀនក្នុងទំព័រថ្មី)
bbb.micSettings.access.title = ការកំណត់សំលេង។ ការផ្តោតនឹងនៅតែស្ថិតក្នុងផ្ទាំងកំណត់សំលេងនេះរហូតដល់ផ្ទាំងនេះត្រូវបានបិទ។
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title = ការគាំទ្រ WebRTC
+bbb.micSettings.webrtc.capableBrowser = កម្មវិធីរុករករបស់អ្នកអាចប្រើជាមួយ WebRTC
+bbb.micSettings.webrtc.capableBrowser.dontuseit = ចុចដើម្បីមិនប្រើ WebRTC
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = ចុចទីនេះប្រសិនបើអ្នកមិនចង់ប្រើបច្ចេកវិទ្យា WebRTC (ក្នុងករណីអ្នកមានបញ្ហាជាមួយវា)
+bbb.micSettings.webrtc.notCapableBrowser = WebRTC មិនអាចប្រើក្នុងកម្មវិធីរុករករបស់អ្នកទេ។ សូមប្រើកម្មវិធី Google Chrome (ជំនាន់ 32 ឬថ្មីជាងនេះ) ឬកម្មវិធី Mozilla Firefox (ជំនាន់ 26 ឬថ្មីជាងនេះ)។ អ្នកនឹងអាចចូលរួមក្នុងសន្និសិទជាសម្លេងដោយប្រើកម្មវិធី Adobe Flash ។
+bbb.micSettings.webrtc.connecting = កំពុងហៅ
+bbb.micSettings.webrtc.waitingforice = កំពុងភ្ជាប់
+bbb.micSettings.webrtc.transferring = កំពុងបញ្ជូន
+bbb.micSettings.webrtc.endingecho = កំពុងភ្ជាប់សម្លេង
+bbb.micSettings.webrtc.endedecho = ការសាកល្បងអេកូបានបញ្ចប់។
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title = សិទ្ធិប្រើម៉ីក្រូហ្វូនក្នុង Firefox
+bbb.micPermissions.firefox.message = ចុច Allow ដើម្បីឲ្យ Firefox អាចប្រើម៉ីក្រូហ្វូនរបស់អ្នក
+bbb.micPermissions.chrome.title = សិទ្ធិប្រើម៉ីក្រូហ្វូនក្នុង Chrome
+bbb.micPermissions.chrome.message = ចុច Allow ដើម្បីឲ្យ Chrome អាចប្រើម៉ីក្រូហ្វូនរបស់អ្នក
+bbb.micWarning.title = ការព្រមានជាសម្លេង
+bbb.micWarning.joinBtn.label = យ៉ាងណាក៏ចូលរួម
+bbb.micWarning.testAgain.label = សាកល្បងម្តងទៀត
+bbb.micWarning.message = មីក្រូហ្វូនរបស់អ្នកមិនបានបង្ហាញសកម្មភាពអ្វីឡើយ។ អ្នកដទៃប្រហែលជាមិនអាចស្តាប់អ្នកបានទេ។
+bbb.webrtcWarning.message = បានរកឃើញបញ្ហាជាមួយ WebRTC: {0}។ អ្នកចង់ប្រើ Flash ជំនួសវិញ?
+bbb.webrtcWarning.title = បរាជ័យសម្រាប់សម្លេង WebRTC
+bbb.webrtcWarning.failedError.1001 = កំហុស 1001: WebSocket បានកាត់ផ្តាច់
+bbb.webrtcWarning.failedError.1002 = កំហុស 1002: មិនអាចភ្ជាប់ WebSocket ទេ
+bbb.webrtcWarning.failedError.1003 = កំហុស 1003: ជំនាន់នៃកម្មវិធីរុករកមិនអាចប្រើបាន
+bbb.webrtcWarning.failedError.1004 = កំហុស 1004: បរាជ័យនៅពេលហៅ (មូលហេតុ={0})
+bbb.webrtcWarning.failedError.1005 = កំហុស 1005: ការហៅបានបញ្ចប់ដោយមិនបានរំពឹងទុក
+bbb.webrtcWarning.failedError.1006 = កំហុស 1006:អស់ពេលក្នុងការហៅ
+bbb.webrtcWarning.failedError.1007 = កំហុស 1007: ការចរចា ICE បរាជ័យ
+bbb.webrtcWarning.failedError.1008 = កំហុស 1008: ការបញ្ជូនបានបរាជ័យ
+bbb.webrtcWarning.failedError.1009 = កំហុស 1009: មិនអាចទាញយកព៍ត៌មានពីម៉ាស៊ីនបម្រើ STUN/TURN ទេ
+bbb.webrtcWarning.failedError.1010 = កំហុស 1010: ការចរចា ICE បរាជ័យ
+bbb.webrtcWarning.failedError.1011 = កំហុស 1011: អស់ពេលប្រមូល ICE
+bbb.webrtcWarning.failedError.unknown = កំហុស {0}: កូដសម្គាល់កំហុសមិនត្រូវបានស្គាល់
+bbb.webrtcWarning.failedError.mediamissing = មិនអាចយកម៉ីក្រូហ្វូនរបស់អ្នកសម្រាប់ការហៅដោយប្រើ WebRTC
+bbb.webrtcWarning.failedError.endedunexpectedly = ការសាកល្បងអេកូ WebRTC បានបញ្ចប់ដោយមិនបានរំពឹងទុក
+bbb.webrtcWarning.connection.dropped = បានដាច់តំណភ្ជាប់ WebRTC
+bbb.webrtcWarning.connection.reconnecting = កំពុងព្យាយាមភ្ជាប់ឡើងវិញ
+bbb.webrtcWarning.connection.reestablished = តំណភ្ជាប់ WebRTC បានបង្កើតម្តងទៀត
+bbb.inactivityWarning.title = រកមិនឃើញសកម្មភាពទេ
+bbb.inactivityWarning.message = ការប្រជុំនេះដូចជាអសកម្ម។ បិទការប្រជុំនេះដោយស្វ័យប្រវត្តិ...
+bbb.shuttingDown.message = ការប្រជុំនេះត្រូវបានបិទដោយសារភាពអសកម្ម
+bbb.inactivityWarning.cancel = បោះបង់
bbb.mainToolbar.helpBtn = ជំនួយ
bbb.mainToolbar.logoutBtn = ការចាកចេញ
bbb.mainToolbar.logoutBtn.toolTip = ចាកចេញ
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn = {0} | កំណត់ពេលត្រូវចាកចេញជាថ្មី
bbb.mainToolbar.langSelector = ជ្រើសរើសភាសា
bbb.mainToolbar.settingsBtn = ការកំណត់
bbb.mainToolbar.settingsBtn.toolTip = បើកការកំណត់
-bbb.mainToolbar.shortcutBtn = ក្តារចុចសំរាប់ផ្លូវកាត់
-bbb.mainToolbar.shortcutBtn.toolTip = បើកផ្ទាំងសម្រាប់ក្តារចុចផ្លូវកាត់
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
+bbb.mainToolbar.shortcutBtn = គ្រាប់ចុចសម្រាប់ផ្លូវកាត់
+bbb.mainToolbar.shortcutBtn.toolTip = បើកផ្ទាំងសម្រាប់គ្រាប់ចុចសម្រាប់ផ្លូវកាត់
+bbb.mainToolbar.recordBtn.toolTip.start = ចាប់ផ្តើមថត
+bbb.mainToolbar.recordBtn.toolTip.stop = ឈប់ថត
+bbb.mainToolbar.recordBtn.toolTip.recording = វគ្គនេះកំពុងតែត្រូវបានថត
+bbb.mainToolbar.recordBtn.toolTip.notRecording = វគ្គនេះមិនត្រូវបានថតទេ
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators = មានតែអ្នកសម្រប់សម្រួលទេដែលអាចចាប់ផ្តើម និងបញ្ឈប់ការថតបាន
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = ការថតនេះមិនអាចរំខានបានទេ
+bbb.mainToolbar.recordBtn.toolTip.wontRecord = វគ្គនេះមិនអាចថតបានទេ
+bbb.mainToolbar.recordBtn.confirm.title = អះអាងពីការថត
+bbb.mainToolbar.recordBtn.confirm.message.start = តើអ្នកប្រាកដជាចង់ចាប់ផ្ដើមថតវគ្គនេះមែនទេ?
+bbb.mainToolbar.recordBtn.confirm.message.stop = តើអ្នកប្រាកដជាចង់ឈប់ថតវគ្គនេះមែនទេ?
+bbb.mainToolbar.recordBtn.notification.title = ការជូនដំណឹងអំពីការថត
+bbb.mainToolbar.recordBtn.notification.message1 = អ្នកអាចថតការប្រជុំនេះ។
+bbb.mainToolbar.recordBtn.notification.message2 = អ្នកត្រូវចុចប៊ូតុង "ចាប់ផ្តើម/បញ្ឈប់ការថត" នៅក្នុងរបារចំណងជើងដើម្បីចាប់ផ្តើម / បញ្ចប់ការថត។
+bbb.mainToolbar.recordingLabel.recording = (កំពុងថត)
+bbb.mainToolbar.recordingLabel.notRecording = មិនថត
+bbb.waitWindow.waitMessage.message = អ្នកជាភ្ញៀវ។ សូមចាំអ្នកសម្របសម្រួលយល់ព្រមសិន។
+bbb.waitWindow.waitMessage.title = កំពុងចាំ
+bbb.guests.title = ភ្ញៀវ
+bbb.guests.message.singular = អ្នកប្រើ {0}នាក់ចង់ចូលរួមការប្រជុំនេះ
+bbb.guests.message.plural = អ្នកប្រើ {0}នាក់ចង់ចូលរួមការប្រជុំនេះ
+bbb.guests.allowBtn.toolTip = អនុញ្ញាត
+bbb.guests.allowEveryoneBtn.text = អនុញ្ញាតគ្រប់គ្នា
+bbb.guests.denyBtn.toolTip = បដិសេធ
+bbb.guests.denyEveryoneBtn.text = បដិសេធគ្រប់គ្នា
+bbb.guests.rememberAction.text = ចងចាំជម្រើស
+bbb.guests.alwaysAccept = យល់ព្រមជានិច្ច
+bbb.guests.alwaysDeny = បដិសេធជានិច្ច
+bbb.guests.askModerator = សួរអ្នកសម្របសម្រួល
+bbb.guests.Management = ការគ្រប់គ្រងភ្ញៀវ
+bbb.clientstatus.title = ដំណឹងអំពីការកំណត់រចនាសម្ព័ន្ធ
+bbb.clientstatus.notification = ដំណឹងដែលមិនទាន់បានអាន
bbb.clientstatus.close = បិទ
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.tunneling.title = របាំងរារាំង
+bbb.clientstatus.tunneling.message = របាំងរារាំងកំពុងទប់ស្កាត់ម៉ាស៊ីនមេមិនឲ្យភ្ជាប់ដោយផ្ទាល់តាម port 1935 ជាមួយម៉ាស៊ីនបម្រើពីចម្ងាយ។ សូមចូលរូមដោយប្រើបណ្តាញដែលមិនសូវមានកំហិតខ្លាំងដើម្បីការភ្ជាប់ថេរ។
+bbb.clientstatus.browser.title = ជំនាន់របស់កម្មវិធីរុករក
+bbb.clientstatus.browser.message = កម្មវិធីរុករករបស់អ្នក ({0}) មិនទាន់សម័យទេ. សូមធ្វើបច្ចុប្បន្នភាពទៅកាន់ជំនាន់ថ្មី។
+bbb.clientstatus.flash.title = កម្មវិធីបើក Flash
+bbb.clientstatus.flash.message = កម្មវិធីបើក Flash របស់អ្នក ({0}) មិនទាន់សម័យទេ. សូមធ្វើបច្ចុប្បន្នភាពទៅកាន់ជំនាន់ថ្មី។
+bbb.clientstatus.webrtc.title = សម្លេង
+bbb.clientstatus.webrtc.strongStatus = តំណភ្ជាប់ WebRCT ជាសម្លេងរបស់អ្នកល្អ
+bbb.clientstatus.webrtc.almostStrongStatus = តំណភ្ជាប់ WebRCT ជាសម្លេងរបស់អ្នកល្អណាស់
+bbb.clientstatus.webrtc.almostWeakStatus = តំណភ្ជាប់ WebRCT ជាសម្លេងរបស់អ្នកមិនល្អទេ
+bbb.clientstatus.webrtc.weakStatus = ប្រហែលជាមានបញ្ហាជាមួយតំណភ្ជាប់ WebRTC ជាសម្លេងរបស់អ្នក
+bbb.clientstatus.webrtc.message = សូមប្រើ Firefox ឬ Chrome ដើម្បីសម្លេងគុណភាពល្អ។
+bbb.clientstatus.java.title = កម្មវិធី Java
+bbb.clientstatus.java.notdetected = រកមិនឃើញជំនាន់នៃកម្មវិធី Java ទេ
+bbb.clientstatus.java.notinstalled = អ្នកមិនបានដំឡើង Java ទេ។ សូមចុច ទីនេះ ដើម្បីដំឡើងជំនាន់ចុងក្រោយនៃកម្មវិធី Java ដើម្បីអាចចែករំលែកអេក្រង់បាន។
+bbb.clientstatus.java.oldversion = អ្នកមានកម្មវិធី Java ចាស់។ សូមចុច ទីនេះ ដើម្បីដំឡើងជំនាន់ចុងក្រោយនៃកម្មវិធី Java ដើម្បីអាចចែករំលែកអេក្រង់បាន។
bbb.window.minimizeBtn.toolTip = បង្រួមផ្ទាំង
bbb.window.maximizeRestoreBtn.toolTip = ពង្រីកផ្ទាំង
bbb.window.closeBtn.toolTip = បិទ
@@ -162,50 +163,50 @@ bbb.presentation.titleBar = របារចំណងជើងផ្ទាំង
bbb.chat.titleBar = របារចំណងជើងផ្ទាំងសម្រាប់ការសន្ទនា
bbb.users.title = អ្នកប្រើប្រាស់ {0} {1}
bbb.users.titleBar = របារចំណងជើងផ្ទាំងសម្រាប់អ្នកប្រើប្រាស់
-bbb.users.quickLink.label = Users Window
+bbb.users.quickLink.label = ផ្ទាំងអ្នកប្រើ
bbb.users.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងសម្រាប់អ្នកប្រើប្រាស់
bbb.users.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងសម្រាប់អ្នកប្រើប្រាស់
bbb.users.settings.buttonTooltip = ការកំណត់
bbb.users.settings.audioSettings = សាកសម្លេង
-bbb.users.settings.webcamSettings = ការកំណត់វេបខេម
+bbb.users.settings.webcamSettings = ការកំណត់សម្រាប់វេបខេម
bbb.users.settings.muteAll = បិទសម្លេងអ្នកប្រើទាំងអស់
bbb.users.settings.muteAllExcept = បិទសម្លេងអ្នកប្រើទាំងអស់លើកលែងអ្នកធ្វើបទបង្ហាញ
bbb.users.settings.unmuteAll = ឈប់បិទសម្លេងអ្នកប្រើទាំងអស់
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus = សម្អាតរូបតំណាងស្ថានភាពទាំងអស់
+bbb.users.emojiStatusBtn.toolTip = ប្តូររូបតំណាងស្ថានភាពរបស់ខ្ញុំ
+bbb.users.roomMuted.text = អ្នកមើលត្រូវបានបិទសម្លេង
+bbb.users.roomLocked.text = អ្នកមើលដែលបានចាក់សោ
bbb.users.pushToTalk.toolTip = និយាយ
bbb.users.pushToMute.toolTip = បិទសម្លេងខ្លួនឯង
bbb.users.muteMeBtnTxt.talk = ឈប់បិទសម្លេង
bbb.users.muteMeBtnTxt.mute = បិទសម្លេង
bbb.users.muteMeBtnTxt.muted = ត្រូវបានបិទសម្លេង
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers = ចម្លងឈ្មោះអ្នកប្រើ
bbb.users.usersGrid.accessibilityName = តារាងអ្នកប្រើ។ ប្រើសញ្ញាព្រួញលើក្តារចុចសំរាប់បញ្ជា។
bbb.users.usersGrid.nameItemRenderer = ឈ្មោះ
bbb.users.usersGrid.nameItemRenderer.youIdentifier = ុុអ្នក
bbb.users.usersGrid.statusItemRenderer = ស្ថានភាព
-bbb.users.usersGrid.statusItemRenderer.changePresenter = ចុចលើដើម្បីឲ្យធ្វើអ្នកធ្វើបទបង្ហាញ
+bbb.users.usersGrid.statusItemRenderer.changePresenter = ចុចដើម្បីឲ្យធ្វើជាអ្នកធ្វើបទបង្ហាញ
bbb.users.usersGrid.statusItemRenderer.presenter = អ្នកធ្វើបទបង្ហាញ
bbb.users.usersGrid.statusItemRenderer.moderator = អ្នកសម្របសម្រួល
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = តែសម្លេងប៉ុណ្ណោះ
+bbb.users.usersGrid.statusItemRenderer.raiseHand = បានលើកដៃ
+bbb.users.usersGrid.statusItemRenderer.applause = ទះដៃ
+bbb.users.usersGrid.statusItemRenderer.thumbsUp = មេដៃឡើង
+bbb.users.usersGrid.statusItemRenderer.thumbsDown = មេដៃចុះ
+bbb.users.usersGrid.statusItemRenderer.speakLouder = និយាយលឺជាងនេះ
+bbb.users.usersGrid.statusItemRenderer.speakSofter = និយាយស្ងាត់ៗជាងនេះ
+bbb.users.usersGrid.statusItemRenderer.speakFaster = និយាយលឿនជាងនេះ
+bbb.users.usersGrid.statusItemRenderer.speakSlower = និយាយយឺតជាងនេះ
+bbb.users.usersGrid.statusItemRenderer.away = នៅឆ្ងាយ
+bbb.users.usersGrid.statusItemRenderer.confused = ច្រឡំ
+bbb.users.usersGrid.statusItemRenderer.neutral = មិនសម្រេចចិត្ត
+bbb.users.usersGrid.statusItemRenderer.happy = សប្បាយចិត្ត
+bbb.users.usersGrid.statusItemRenderer.sad = មិនសប្បាយចិត្ត
+bbb.users.usersGrid.statusItemRenderer.clearStatus = សម្អាតស្ថានភាព
bbb.users.usersGrid.statusItemRenderer.viewer = អ្នកមើល
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = ចែករំលែកវេបខេម
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = ជាអ្នកធ្វើបទបង្ហាញ
bbb.users.usersGrid.mediaItemRenderer = គ្រឿងផ្សព្វផ្សាយ
bbb.users.usersGrid.mediaItemRenderer.talking = កំពុងនិយាយ
bbb.users.usersGrid.mediaItemRenderer.webcam = កំពុងចែករំលែកវេបខេម
@@ -214,151 +215,153 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = ឈប់បិទសម្
bbb.users.usersGrid.mediaItemRenderer.pushToMute = បិទសម្លេង{0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = ចាក់សោរ{0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = បើកសោរ{0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = ទាត់ចេញ{0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = កំពុងចែករំលែកវេបខេម
bbb.users.usersGrid.mediaItemRenderer.micOff = មីក្រូហ្វូនបិទ
bbb.users.usersGrid.mediaItemRenderer.micOn = មីក្រូហ្វូនបើក
bbb.users.usersGrid.mediaItemRenderer.noAudio = មិននៅក្នុងសន្និសិទជាសម្លេងទេ
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser = ដំឡើងតួនាទី {0} ទៅជាអ្នកសម្របសម្រួល
+bbb.users.usersGrid.mediaItemRenderer.demoteUser = ទម្លាក់តួនាទី {0} ទៅជាអ្នកមើល
+bbb.users.emojiStatus.clear = សម្អាត
+bbb.users.emojiStatus.raiseHand = លើកដៃ
+bbb.users.emojiStatus.happy = សប្បាយចិត្ត
+bbb.users.emojiStatus.neutral = មិនសម្រេចចិត្ត
+bbb.users.emojiStatus.sad = មិនសប្បាយចិត្ត
+bbb.users.emojiStatus.confused = ច្រឡំ
+bbb.users.emojiStatus.away = នៅឆ្ងាយ
+bbb.users.emojiStatus.thumbsUp = មេដៃឡើង
+bbb.users.emojiStatus.thumbsDown = មេដៃចុះ
+bbb.users.emojiStatus.applause = ទះដៃ
+bbb.users.emojiStatus.agree = ខ្ញុំយល់ព្រម
+bbb.users.emojiStatus.disagree = ខ្ញុំមិនយល់ព្រម
+bbb.users.emojiStatus.none = សម្អាត
+bbb.users.emojiStatus.speakLouder = តើអ្នកអាចនិយាយលឺៗជាងនេះបានទេ?
+bbb.users.emojiStatus.speakSofter = តើអ្នកអាចនិយាយស្ងាត់ៗជាងនេះបានទេ?
+bbb.users.emojiStatus.speakFaster = តើអ្នកអាចនិយាយលឿនជាងនេះបានទេ?
+bbb.users.emojiStatus.speakSlower = តើអ្នកអាចនិយាយយឺតជាងនេះបានទេ?
+bbb.users.emojiStatus.beRightBack = ខ្ញុំនឹងមកវិញក្នុងពេលបន្តិចទៀត
bbb.presentation.title = បទបង្ហាញ
bbb.presentation.titleWithPres = បទបង្ហាញ {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = ដាក់បទបង្ហាញឲ្យពេញតាមបណ្តោយ
-bbb.presentation.fitToPage.toolTip = ដាក់បទបង្ហាញឲ្យពេញតាមទំព័រ
-bbb.presentation.uploadPresBtn.toolTip = ផ្ទុកឡើងឯកសារបទបង្ហាញ
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = ផ្ទាំងមុន
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = ជ្រើសរើសផ្ទាំង
-bbb.presentation.forwardBtn.toolTip = ផ្ទាំងបន្ទាប់
+bbb.presentation.quickLink.label = ផ្ទាំងបទបង្ហាញ
+bbb.presentation.fitToWidth.toolTip = ដាក់បទបង្ហាញឲ្យសមនឹងបណ្តោយ
+bbb.presentation.fitToPage.toolTip = ដាក់បទបង្ហាញឲ្យសមនឹងទំព័រ
+bbb.presentation.uploadPresBtn.toolTip = ផ្ទុកឯកសារបទបង្ហាញឡើង
+bbb.presentation.downloadPresBtn.toolTip = ទាញយកបទបង្ហាញ
+bbb.presentation.poll.response = ឆ្លើយតបការស្ទង់មតិ
+bbb.presentation.backBtn.toolTip = ផ្ទាំងស្លាយមុន
+bbb.presentation.btnSlideNum.accessibilityName = ផ្ទាំងស្លាយ {0} ក្នុងចំណោម {1}
+bbb.presentation.btnSlideNum.toolTip = ជ្រើសផ្ទាំងស្លាយមួយ
+bbb.presentation.forwardBtn.toolTip = ផ្ទាំងស្លាយបន្ទាប់
bbb.presentation.maxUploadFileExceededAlert = កំហុស៖ ទំហំឯកសារហួសពីការកំណត់។
bbb.presentation.uploadcomplete = ការផ្ទុកឡើងត្រូវបញ្ចប់។ សូមរង់ចាំខណៈដែលយើងបម្លែងឯកសារ។
bbb.presentation.uploaded = ត្រូវបានផ្ទុកឡើងហើយ។
bbb.presentation.document.supported = ឯកសារដែលបានផ្ទុកឡើងអាចប្រើប្រាស់បាន។ ចាប់ផ្តើមបម្លែង...
bbb.presentation.document.converted = ឯកសារការិយាល័យត្រូវបានបម្លែងដោយជោគជ័យ។
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed = ព្យាយាមបម្លែងឯកសារជា PDF ហើយផ្ទុកឡើងម្តងទៀត។
+bbb.presentation.error.document.convert.invalid = សូមបម្លែងឯកសារនេះទៅជា PDF សិន។
bbb.presentation.error.io = កំហុសផ្នែកផ្ទុក៖ សូមទាក់ទងទៅអ្នករដ្ឋបាល
bbb.presentation.error.security = កំហុសផ្នែកសុវត្ថិភាព៖ សូមទាក់ទងទៅអ្នករដ្ឋបាល
bbb.presentation.error.convert.notsupported = កំហុស៖ ឯកសារដែលបានផ្ទុកឡើងមិនអាចប្រើប្រាស់បានទេ។ សូមផ្ទុកឯកសារដែលត្រូវគ្នាជាមួយកម្មវិធី។
bbb.presentation.error.convert.nbpage = កំហុស៖ មិនអាចកំណត់ចំនួនទំព័ររបស់ឯកសារដែលបានផ្ទុកឡើងទេ។
bbb.presentation.error.convert.maxnbpagereach = កំហុស៖ ឯកសារដែលបានផ្ទុកមកមានច្រើនទំព័រហួស។
-bbb.presentation.converted = បានបម្លែងផ្ទាំងចំនួន{0}ចំណោម{1}។
+bbb.presentation.converted = បានបម្លែងផ្ទាំងស្លាយចំនួន{0}ចំណោម{1}។
bbb.presentation.slider = កម្រិតពង្រីកបទបង្ហាញ
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slideloader.starttext = អត្ថបទស្លាយចាប់ផ្តើម
+bbb.presentation.slideloader.endtext = អត្ថបទស្លាយបញ្ចប់
bbb.presentation.uploadwindow.presentationfile = ឯកសារបទបង្ហាញ
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
bbb.presentation.uploadwindow.excel = EXCEL
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
+bbb.presentation.uploadwindow.image = រូបភាព
bbb.presentation.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងបទបង្ហាញ
bbb.presentation.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងបទបង្ហាញ
bbb.presentation.closeBtn.accessibilityName = បិទផ្ទាំងបទបង្ហាញ
-bbb.fileupload.title = ថែមឯកសារទៅកាន់បទបង្ហាញអ្នក
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = ជ្រើសរើសឯកសារ
-bbb.fileupload.selectBtn.toolTip = បើកផ្ទាំងសំរាប់ជ្រើសរើសឯកសារ
+bbb.fileupload.title = បន្ថែមឯកសារទៅកាន់បទបង្ហាញអ្នក
+bbb.fileupload.lblFileName.defaultText = មិនមានឯកសារត្រូវបានជ្រើសទេ
+bbb.fileupload.selectBtn.label = ជ្រើសឯកសារ
+bbb.fileupload.selectBtn.toolTip = បើកផ្ទាំងសំរាប់ជ្រើសឯកសារ
bbb.fileupload.uploadBtn = ផ្ទុកឡើង
-bbb.fileupload.uploadBtn.toolTip = ផ្ទុកឡើងនូវឯកសារដែលបានជ្រើសរើស
+bbb.fileupload.uploadBtn.toolTip = ផ្ទុកឡើងនូវឯកសារដែលបានជ្រើស
bbb.fileupload.deleteBtn.toolTip = លប់បទបង្ហាញ
bbb.fileupload.showBtn = បង្ហាញ
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = ព្យាយាមជាមួយឯកសារមួយទៀត
bbb.fileupload.showBtn.toolTip = បង្ហាញបទបង្ហាញ
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = បិទ
+bbb.fileupload.close.accessibilityName = បិទផ្ទាំងផ្ទុកឯកសារឡើង
bbb.fileupload.genThumbText = កំពុងបង្កើតរូបតាង...
bbb.fileupload.progBarLbl = កម្រិតដំណើរការ៖
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint = អ្នកអាចផ្ទុកឡើងនូវឯកសារការិយាល័យឬឯកសារ (PDF) ។ សម្រាប់លទ្ធផលល្អបំផុត យើងសូមណែនាំឱ្យអ្នកផ្ទុកឡើងនូវឯកសារ PDF ។
+bbb.fileupload.letUserDownload = អនុញ្ញាតឲ្យទាញយកឯកសារបទបង្ហាញ
+bbb.fileupload.letUserDownload.tooltip = ចុចទីនេះប្រសិនបើអ្នកចង់ឲ្យអ្នកដទៃទាញយកបទបង្ហាញរបស់អ្នក
+bbb.filedownload.title = ទាញយកបទបង្ហាញ
+bbb.filedownload.close.tooltip = បិទ
+bbb.filedownload.close.accessibilityName = បិទផ្ទាំងទាញយកឯកសារ
+bbb.filedownload.fileLbl = ជ្រើសឯកសារសម្រាប់ទាញយក:
+bbb.filedownload.downloadBtn = ទាញយក
+bbb.filedownload.downloadBtn.toolTip = ទាញយកបទបង្ហាញ
+bbb.filedownload.thisFileIsDownloadable = ឯកសារអាចទាញយកបាន
bbb.chat.title = សន្ទនា
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label = ផ្ទាំងសន្ទនា
bbb.chat.cmpColorPicker.toolTip = ពណ៌អក្សរ
bbb.chat.input.accessibilityName = ប្រឡោះសម្រាប់កែសារសន្ទនា
-bbb.chat.sendBtn.toolTip = ផ្ញើរសារ
-bbb.chat.sendBtn.accessibilityName = ផ្ញើរសារសន្ទនា
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.sendBtn.toolTip = ផ្ញើសារ
+bbb.chat.sendBtn.accessibilityName = ផ្ញើសារសន្ទនា
+bbb.chat.saveBtn.toolTip = រក្សាទុកការជជែក
+bbb.chat.saveBtn.accessibilityName = រក្សាការជជែកក្នុងឯកសារអត្ថបទ
+bbb.chat.saveBtn.label = រក្សាទុក
+bbb.chat.save.complete = កិច្ចសន្ទនាត្រូវបានរក្សាទុកជោគជ័យ
+bbb.chat.save.ioerror = កិច្ចសន្ទនាមិនត្រូវបានរក្សាទុកទេ។ សូមរក្សាទុកម្តងទៀត។
+bbb.chat.save.filename = ជជែក-សាធារណៈ
+bbb.chat.copyBtn.toolTip = ចម្លងសន្ទនា
+bbb.chat.copyBtn.accessibilityName = ចម្លងកិច្ចសន្ទនាទៅក្ដារខ្ទាស់
+bbb.chat.copyBtn.label = ចម្លង
+bbb.chat.copy.complete = កិច្ចសន្ទនាត្រូវបានចម្លងទៅក្ដារខ្ទាស់
+bbb.chat.clearBtn.toolTip = សម្អាតការជជែកសាធារណៈ
+bbb.chat.clearBtn.accessibilityName = សម្អាតប្រវត្តិនៃការជជែកសាធារណៈ
+bbb.chat.clearBtn.chatMessage = ប្រវត្តិនៃការជជែកសាធារណៈត្រូវបានសម្អាតដោយអ្នកសម្របសម្រួល
+bbb.chat.clearBtn.alert.title = ព្រមាន
+bbb.chat.clearBtn.alert.text = អ្នកកំពុងសម្អាតប្រវត្តិនៃការជជែកសាធារណៈ ហើយសកម្មភាពនេះមិនអាចត្រឡប់ក្រោយវិញទេ។ តើអ្នកចង់បន្តទេ?
+bbb.chat.contextmenu.copyalltext = ចម្លងអត្ថបទទាំងអស់
bbb.chat.publicChatUsername = សាធារណៈ
bbb.chat.optionsTabName = ជម្រើស
-bbb.chat.privateChatSelect = ជ្រើសនរណាម្នាក់ទៅសន្ទនាជាមួយលក្ខណៈឯកជន
+bbb.chat.privateChatSelect = ជ្រើសនរណាម្នាក់ទៅជជែកជាមួយជាលក្ខណៈឯកជន
bbb.chat.private.userLeft = អ្នកប្រើប្រាស់បានចេញហើយ។
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = ជ្រើសអ្នកប្រើប្រាស់ដើម្បីបើកការសន្ទនាឯកជន
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userJoined = អ្នកប្រើបានចូលរួម។
+bbb.chat.private.closeMessage = អ្នកអាចបិទផ្ទាំងនេះដោយប្រើបណ្តុំគ្រាប់ចុច {0}។
+bbb.chat.usersList.toolTip = ជ្រើសអ្នកប្រើដើម្បីបើកការជជែកឯកជន
+bbb.chat.usersList.accessibilityName = ជ្រើសអ្នកប្រើដើម្បីជជែកឯកជន។ ប្រើគ្រាប់ចុចព្រួញដើម្បីផ្លាស់ទី
bbb.chat.chatOptions = ជម្រើសសម្រាប់ការសន្ទនា
bbb.chat.fontSize = ទំហំអក្សរសម្រាប់សារសន្ទនា
-bbb.chat.cmbFontSize.toolTip = ជ្រើសរើសទំហំអក្សរសំរាប់សារសន្ទនា
-bbb.chat.messageList = Chat Messages
+bbb.chat.cmbFontSize.toolTip = ជ្រើសទំហំអក្សរសំរាប់សារសន្ទនា
+bbb.chat.messageList = សារសន្ទនា
bbb.chat.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងសន្ទនា
bbb.chat.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងសន្ទនា
bbb.chat.closeBtn.accessibilityName = បិទផ្ទាំងសន្ទនា
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatTabs.accessibleNotice = សារថ្មីក្នុងផ្ទាំងនេះ
+bbb.chat.chatMessage.systemMessage = ប្រព័ន្ធ
+bbb.chat.chatMessage.stringRespresentation = ពី {0} {1} នៅ {2}
+bbb.chat.chatMessage.tooLong = សារលើស {0} តួអក្សរ
bbb.publishVideo.changeCameraBtn.labelText = ប្តូរវេបខេម
bbb.publishVideo.changeCameraBtn.toolTip = បើកផ្ទាំងសម្រាប់ប្តូរវេមខេម
bbb.publishVideo.cmbResolution.tooltip = ជ្រើសរើសគុណភាពបង្ហាញរបស់វេបខេម
bbb.publishVideo.startPublishBtn.labelText = ចាប់ផ្តើមចែករំលែក
bbb.publishVideo.startPublishBtn.toolTip = ចាប់ផ្តើមចែករំលែកវេបខេមរបស់អ្នក
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
+bbb.publishVideo.startPublishBtn.errorName = មិនអាចចែករំលែកវេបខេមទេ។ មូលហេតុ: {0}
+bbb.webcamPermissions.chrome.title = សិទ្ធិប្រើវេបខេមក្នុង Chrome
+bbb.webcamPermissions.chrome.message = ចុច Allow ដើម្បីឲ្យ Chrome អាចប្រើវេបខេមរបស់អ្នក
+bbb.videodock.title = វេបខេម
+bbb.videodock.quickLink.label = ផ្ទាំងវេបខេម
bbb.video.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងវេបខេម
bbb.video.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងវេបខេម
bbb.video.controls.muteButton.toolTip = បិទ ឬមិនបិទសម្លេង{0}
-bbb.video.controls.switchPresenter.toolTip = ធ្វើឲ្យ{0}ជាអ្នកធ្វើបទបង្ហាញ
+bbb.video.controls.switchPresenter.toolTip = ឲ្យ {0} ធ្វើជាអ្នកធ្វើបទបង្ហាញ
bbb.video.controls.ejectUserBtn.toolTip = រុញ{0}ចេញពីការប្រជុំ
bbb.video.controls.privateChatBtn.toolTip = សន្ទនាជាមួយ{0}
bbb.video.publish.hint.noCamera = គ្មានវេបខេមទេ
bbb.video.publish.hint.cantOpenCamera = មិនអាចបើកវេបខេមរបស់អ្នកបានទេ
bbb.video.publish.hint.waitingApproval = កំពុងរងចាំការយល់ព្រម
-bbb.video.publish.hint.videoPreview = ការបង្ហាញជាមុនរបស់វេបខេម
+bbb.video.publish.hint.videoPreview = មើលសាកក្នុងវេបខេម
bbb.video.publish.hint.openingCamera = កំពុងបើកវេបខេម...
bbb.video.publish.hint.cameraDenied = វេបខេមមិនអាចប្រើបានទេ
bbb.video.publish.hint.cameraIsBeingUsed = វេបខេមអ្នកមិនអាចបើកបានទេ ។ ប្រហែលជាកម្មវិធីផ្សេងកំពុងប្រើវាហើយ។
@@ -366,403 +369,411 @@ bbb.video.publish.hint.publishing = កំពុងបោះពុម្ពផ
bbb.video.publish.closeBtn.accessName = បិទផ្ទាំងសម្រាប់ការកំណត់វេបខេម
bbb.video.publish.closeBtn.label = បោះបង់
bbb.video.publish.titleBar = ផ្សព្វផ្សាយផ្ទាំងវេបខេម
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip = បិទការស្ទ្រីមសម្រាប់ៈ {0}
+bbb.video.message.browserhttp = ម៉ាស៊ីនបម្រើនេះមិនបានកំណត់រចនាសម្ព័ន្ធជាមួយ SSL ដូច្នេះ {0} បិទការចែករំលែកវេបខេមរបស់អ្នក
+bbb.screensharePublish.title = ចែករំលែកផ្ទាំងអេក្រង់៖ ការបង្ហាញជាមុនរបស់អ្នកធ្វើបទបង្ហាញ
+bbb.screensharePublish.pause.tooltip = ផ្អាកការចែករំលែកអេក្រង់
+bbb.screensharePublish.pause.label = ផ្អាក
+bbb.screensharePublish.restart.tooltip = បន្តការចែករំលែកអេក្រង់
+bbb.screensharePublish.restart.label = បន្ត
+bbb.screensharePublish.maximizeRestoreBtn.toolTip = អ្នកមិនអាចពង្រីកផ្ទាំងនេះបានទេ។
+bbb.screensharePublish.closeBtn.toolTip = ឈប់ចែករំលែក ហើយបិទ
+bbb.screensharePublish.closeBtn.accessibilityName = ឈប់ចែករំលែកអេក្រង់ ហើយបិទផ្ទាំងផ្សាយ
+bbb.screensharePublish.minimizeBtn.toolTip = បង្រួមផ្ទាំង
+bbb.screensharePublish.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងផ្សាយសម្រាប់ចែករំលែកអេក្រង់
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងផ្សាយសម្រាប់ចែករំលែកអេក្រង់
+bbb.screensharePublish.commonHelpText.text = ជំហានខាងក្រោមនឹងជួយអ្នកក្នុងការចាប់ផ្តើមចែករំលែកអេក្រង់ (ទាមទារ Java)។
+bbb.screensharePublish.helpButton.toolTip = ជំនួយ
+bbb.screensharePublish.helpButton.accessibilityName = ជំនួយ (បើកវីដេអូបង្រៀនក្នុងផ្ទាំងថ្មី)
+bbb.screensharePublish.helpText.PCIE1 = 1. ជ្រើស 'បើក'
+bbb.screensharePublish.helpText.PCIE2 = 2. ទទួលយកសញ្ញាប័ត្រ
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 = 1. ចុច 'យល់ព្រម' ដើុម្បីដំណើរការ
+bbb.screensharePublish.helpText.PCFirefox2 = 2. ទទួលយកសញ្ញាប័ត្រ
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 = 1. រកមើល 'screenshare.jnlp'
+bbb.screensharePublish.helpText.PCChrome2 = 2. ចុចដើម្បីបើក
+bbb.screensharePublish.helpText.PCChrome3 = 3. ទទួលយកសញ្ញាប័ត្រ
+bbb.screensharePublish.helpText.MacSafari1 = 1. រកមើល 'screenshare.jnlp'
+bbb.screensharePublish.helpText.MacSafari2 = 2. ជ្រើស 'បង្ហាញក្នុង Finder'
+bbb.screensharePublish.helpText.MacSafari3 = 3. ចុចស្តាំ ហើយ ជ្រើស 'Open'
+bbb.screensharePublish.helpText.MacSafari4 = 4. ជ្រើស 'Open' (ប្រសិនគេសួរ)
+bbb.screensharePublish.helpText.MacFirefox1 = 1. ជ្រើស 'Save File' (ប្រសិនគេសួរ)
+bbb.screensharePublish.helpText.MacFirefox2 = 2. ជ្រើស 'បង្ហាញក្នុង Finder'
+bbb.screensharePublish.helpText.MacFirefox3 = 3. ចុចស្តាំ ហើយ ជ្រើស 'Open'
+bbb.screensharePublish.helpText.MacFirefox4 = 4. ជ្រើស 'Open' (ប្រសិនគេសួរ)
+bbb.screensharePublish.helpText.MacChrome1 = 1. រកមើល 'screenshare.jnlp'
+bbb.screensharePublish.helpText.MacChrome2 = 2. ជ្រើស 'បង្ហាញក្នុង Finder'
+bbb.screensharePublish.helpText.MacChrome3 = 3. ចុចស្តាំ ហើយ ជ្រើស 'Open'
+bbb.screensharePublish.helpText.MacChrome4 = 4. ជ្រើស 'Open' (ប្រសិនគេសួរ)
+bbb.screensharePublish.helpText.LinuxFirefox1 = 1. ចុច 'យល់ព្រម' ដើុម្បីដំណើរការ
+bbb.screensharePublish.helpText.LinuxFirefox2 = 2. ទទួលយកសញ្ញាប័ត្រ
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.screensharePublish.helpText.LinuxChrome1 = 1. រកមើល 'screenshare.jnlp'
+bbb.screensharePublish.helpText.LinuxChrome2 = 2. ចុចដើម្បីបើក
+bbb.screensharePublish.helpText.LinuxChrome3 = 3. ទទួលយកសញ្ញាប័ត្រ
+bbb.screensharePublish.shareTypeLabel.text = ចែករំលែកៈ
+bbb.screensharePublish.shareType.fullScreen = ពេញអេក្រង់
+bbb.screensharePublish.shareType.region = តំបន់
+bbb.screensharePublish.pauseMessage.label = ការចែករំលែកអេក្រង់កំពុងបានផ្អាក
+bbb.screensharePublish.startFailed.label = មិនបានរកឃើញការផ្តើមនៃការចែករំលែកអេក្រង់
+bbb.screensharePublish.restartFailed.label = មិនបានរកឃើញការផ្តើមជាថ្មីនៃការចែករំលែកអេក្រង់
+bbb.screensharePublish.jwsCrashed.label = កម្មវិធីសម្រាប់ចែករំលែកអេក្រង់បានបិទដោយមិនបានត្រៀម។
+bbb.screensharePublish.commonErrorMessage.label = ជ្រើស "បោះបង់" ហើយព្យាយាមម្តងទៀត
+bbb.screensharePublish.tunnelingErrorMessage.one = កម្មវិធីចែករំលែកអេក្រង់មិនអាចដំណើរការទេ។
+bbb.screensharePublish.tunnelingErrorMessage.two = សូមព្យាយាមដំណើរការម៉ាស៊ីនភ្ញៀវជាថ្មី (ដោយចុចប៊ូតុង Refresh ក្នុងកម្មវិធីរុករករបស់អ្នក)។ ប្រសិនបើអ្នកនៅតែឃើញពាក្យ '[ Tunneling ]' នៅជ្រុងខាងក្រោមផ្នែកខាងស្តាំ សូមព្យាយាមតភ្ជាប់ដោយប្រើទីតាំងបណ្តាញថ្មី។
+bbb.screensharePublish.cancelButton.label = បោះបង់
+bbb.screensharePublish.startButton.label = ចាប់ផ្តើម
+bbb.screensharePublish.stopButton.label = ឈប់
+bbb.screensharePublish.stopButton.toolTip = ឈប់ចែករំលែកអេក្រង់របស់អ្នក
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label = អ្នកប្រើ Chrome ក្នុងជំនាន់ថ្មីបំផុត តែមិនបានដំឡើងកម្មវិធីបន្ថែមសម្រាប់ចែករំលែកអេក្រង់ទេ។
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = បន្ទាប់ពីអ្នកបានដំឡើងកម្មវិធីបន្ថែមសម្រាប់ចែករំលែកអេក្រង់ហើយ សូមចុច "ព្យាយាមម្តងទៀត" ខាងក្រោម។
+bbb.screensharePublish.WebRTCExtensionFailFallback.label = រកមិនឃើញកម្មវិធីបន្ថែមសម្រាប់ចែករំលែកអេក្រង់ទេ។ សូមចុចទីនេះដើម្បីព្យាយាមដំឡើងម្តងទៀត ឬ ជ្រើស 'ប្រើកម្មវិធីចែករំលែកអេក្រង់ប្រភេទ Java' ។
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = អ្នកដូចជាកំពុងប្រើការរុករកក្នុងលក្ខណៈអនាមិក ឬ ឯកជន។ អ្នកត្រូវប្រាកដថាក្នុងការកំណត់សម្រាប់កម្មវិធីបន្ថែមរបស់អ្នក អ្នកបានអនុញ្ញាតឱ្យកម្មវិធីបន្ថែមដំណើរការនៅក្នុងការរុករកអនាមិក / ឯកជន។
+bbb.screensharePublish.WebRTCExtensionInstallButton.label = ចុចទីនេះដើម្បីដំឡើង
+bbb.screensharePublish.WebRTCUseJavaButton.label = ប្រើកម្មវិធីចែករំលែកអេក្រង់ប្រភេទ Java
+bbb.screensharePublish.WebRTCVideoLoading.label = វីដេអូកំពុងដំណើរការ... សូមចាំ
+bbb.screensharePublish.sharingMessage= នេះជាអេក្រង់របស់អ្នកដែលកំពុងត្រូវបានចែករំលែកជាមួយអ្នកដទៃ
+bbb.screenshareView.title = ចែករំលែកអេក្រង់
+bbb.screenshareView.fitToWindow = ដាក់ឲ្យសមនឹងផ្ទាំង
+bbb.screenshareView.actualSize = បង្ហាញទំហំពិត
+bbb.screenshareView.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងមើលសម្រាប់ចែករំលែកអេក្រង់
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងមើលសម្រាប់ចែករំលែកអេក្រង់
+bbb.screenshareView.closeBtn.accessibilityName = បិទផ្ទាំងមើលសម្រាប់ចែករំលែកអេក្រង់
+bbb.toolbar.phone.toolTip.start = បើកសម្លេង (ម៉ីក្រូហ្វូន ឬគ្រាន់តែស្តាប់)
+bbb.toolbar.phone.toolTip.stop = បិទសម្លេង
+bbb.toolbar.phone.toolTip.mute = ឈប់ស្តាប់សន្និសិទ
+bbb.toolbar.phone.toolTip.unmute = ចាប់ផ្តើមស្តាប់សន្និសិទ
+bbb.toolbar.phone.toolTip.nomic = រកមិនឃើញមីក្រូហ្វូន
+bbb.toolbar.deskshare.toolTip.start = បើកផ្ទាំងសម្រាប់ចែករំលែកអេក្រង់
+bbb.toolbar.deskshare.toolTip.stop = ឈប់ចែករំលែកអេក្រង់របស់អ្នក
+bbb.toolbar.sharednotes.toolTip = បើកកំណត់ចំណាំរួមគ្នា
+bbb.toolbar.video.toolTip.start = ចែករំលែកវេបខេមរបស់អ្នក
+bbb.toolbar.video.toolTip.stop = ឈប់ចែករំលែកវេបខេមរបស់អ្នក
+bbb.layout.addButton.label = បន្ថែម
+bbb.layout.addButton.toolTip = បន្ថែមប្លង់ផ្ទាល់ខ្លូនទៅក្នុងបញ្ជី
+bbb.layout.overwriteLayoutName.title = ជំនួសប្លង់
+bbb.layout.overwriteLayoutName.text = ឈ្មោះត្រូវបានប្រើហើយ។ តើអ្នកចង់ជំនួស?
+bbb.layout.broadcastButton.toolTip = អនុវត្តប្លង់បច្ចុប្បន្នទៅអ្នកមើលទាំងអស់
+bbb.layout.combo.toolTip = ប្តូរប្លង់របស់អ្នក
+bbb.layout.loadButton.toolTip = ដំណើរការប្លង់ពីឯកសារមួយ
+bbb.layout.saveButton.toolTip = រក្សាទុកប្លង់ក្នុងឯកសារមួយ
+bbb.layout.lockButton.toolTip = ចាក់សោរប្លង់
+bbb.layout.combo.prompt = អនុវត្តប្លង់
+bbb.layout.combo.custom = * ប្លង់ផ្ទាល់ខ្លួន
+bbb.layout.combo.customName = ប្លង់ផ្ទាល់ខ្លួន
+bbb.layout.combo.remote = ពីចម្ងាយ
+bbb.layout.window.name = ឈ្មោះប្លង់
+bbb.layout.window.close.tooltip = បិទ
+bbb.layout.window.close.accessibilityName = បិទផ្ទាំងសម្រាប់បន្ថែមប្លង់ថ្មី
+bbb.layout.save.complete = ប្លង់បានរក្សាទុកដោយជោគជ័យ
+bbb.layout.save.ioerror = ប្លង់មិនត្រូវបានរក្សាទុកទេ។ សូមរក្សាទុកម្តងទៀត។
+bbb.layout.load.complete = ប្លង់បានដំណើរការដោយជោគជ័យ
+bbb.layout.load.failed = មិនអាចដំណើរការប្លង់ទេ
+bbb.layout.sync = ប្លង់របស់អ្នកត្រូវបានផ្ញើទៅអ្នកចូលរួមទាំងអស់
+bbb.layout.name.defaultlayout = ប្លង់លំនាំដើម
+bbb.layout.name.closedcaption = អត្ថបទពីសម្លេង
+bbb.layout.name.videochat = ការជជែកជាវីដេអូ
+bbb.layout.name.webcamsfocus = ប្រជុំដោយប្រើវេបខេម
+bbb.layout.name.presentfocus = ប្រជុំដោយប្រើបទបង្ហាញ
+bbb.layout.name.presentandusers = បទបង្ហាញ និងអ្នកប្រើ
+bbb.layout.name.lectureassistant = ជំនួយការសម្រាប់ការបង្រៀន
+bbb.layout.name.lecture = ការបង្រៀន
+bbb.layout.name.sharednotes = កំណត់ចំណាំរួមគ្នា
+bbb.layout.addCurrentToFileWindow.title = បន្ថែមប្លង់បច្ចុប្បន្នក្នុងឯកសារមួយ
+bbb.layout.addCurrentToFileWindow.text = តើអ្នកចង់រក្សាទុកប្លង់បច្ចុប្បន្នក្នុងឯកសារមួយទេ?
+bbb.layout.denyAddToFile.toolTip = បដិសេធការបន្ថែមប្លង់បច្ចុប្បន្ន
+bbb.layout.confirmAddToFile.toolTip = អះអាងពីការបន្ថែមប្លង់បច្ចុប្បន្ន
+bbb.highlighter.toolbar.pencil = ខ្មៅដៃ
+bbb.highlighter.toolbar.pencil.accessibilityName = ប្តូរទស្សន៍ទ្រនិចរបស់ក្តារខៀនទៅជាខ្មៅដៃ
+bbb.highlighter.toolbar.ellipse = រង្វង់
+bbb.highlighter.toolbar.ellipse.accessibilityName = ប្តូរទស្សន៍ទ្រនិចរបស់ក្តារខៀនទៅជារង្វង់
+bbb.highlighter.toolbar.rectangle = ចតុកោណកែង
+bbb.highlighter.toolbar.rectangle.accessibilityName = ប្តូរទស្សន៍ទ្រនិចរបស់ក្តារខៀនទៅជាចតុកោណកែង
+bbb.highlighter.toolbar.panzoom = អូស និងពង្រីក
+bbb.highlighter.toolbar.panzoom.accessibilityName = ប្តូរទស្សន៍ទ្រនិចរបស់ក្តារខៀនទៅជាអូស និងពង្រីក
+bbb.highlighter.toolbar.clear = លុបចំណារពន្យល់ទាំងអស់
+bbb.highlighter.toolbar.clear.accessibilityName = សម្អាតទំព័រក្តារខៀន
+bbb.highlighter.toolbar.undo = មិនធ្វើចំណារពន្យល់វិញ
+bbb.highlighter.toolbar.undo.accessibilityName = មិនធ្វើរូបរាងចុងក្រោយលើក្តារខៀនវិញ
+bbb.highlighter.toolbar.color = ជ្រើសពណ៌
+bbb.highlighter.toolbar.color.accessibilityName = ពណ៌គំនូរលើក្តារខៀន
+bbb.highlighter.toolbar.thickness = ប្តូរកម្រាស់
+bbb.highlighter.toolbar.thickness.accessibilityName = កម្រាស់គំនូរលើក្តារខៀន
+bbb.highlighter.toolbar.multiuser = គូរគ្នាច្រើន
bbb.logout.button.label = ព្រម
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
+bbb.logout.appshutdown = កម្មវិធីក្នុងម៉ាស៊ីនបម្រើបានបិទដំណើរការ
+bbb.logout.asyncerror = មានកំហុស Async មួយ
+bbb.logout.connectionclosed = ការភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើបានបិទ
+bbb.logout.connectionfailed = ការភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើបានបញ្ចប់
+bbb.logout.rejected = ការភ្ជាប់ទៅកាន់ម៉ាស៊ីនបម្រើបានបដិសេធ
+bbb.logout.invalidapp = មិនមានកម្មវិធី red5 ទេ
+bbb.logout.unknown = ម៉ាស៊ីនភ្ញៀវរបស់អ្នកបានបាត់បង់តំណភ្ជាប់ជាមួយម៉ាស៊ីនបម្រើ
+bbb.logout.guestkickedout = អ្នកសម្របសម្រួលមិនអនុញ្ញាតឲ្យអ្នកចូលរួមការប្រជុំនេះទេ
+bbb.logout.usercommand = អ្នកបានចេញពីសន្និសិទ
+bbb.logour.breakoutRoomClose = ផ្ទាំងនៃកម្មវិធីរុករករបស់អ្នកនឹងត្រូវបិទ
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message = ប្រសិនបើអ្នកមិនបានរំពឹងការចាកចេញនេះទេ សូមចុចប៊ូតុងខាងក្រោមដើម្បីភ្ជាប់ម្តងទៀត។
+bbb.logout.refresh.label = ភ្ជាប់ម្តងទៀត
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title = ការកំណត់
+bbb.settings.ok = ព្រម
+bbb.settings.cancel = បោះបង់
+bbb.settings.btn.toolTip = បើកផ្ទាំងសម្រាប់ការកំណត់រចនាសម្ព័ន្ធ
+bbb.logout.confirm.title = អះអាងពីការចេញ
+bbb.logout.confirm.message = តើអ្នកប្រាកដជាចង់ចាកចេញមែនទេ?
+bbb.logout.confirm.endMeeting = បាទ/ចាស ហើយបញ្ចប់ការប្រជុំ
+bbb.logout.confirm.yes = បាទ/ចាស
+bbb.logout.confirm.no = ទេ
+bbb.endSession.confirm.title = ព្រមាន
+bbb.endSession.confirm.message = ប្រសិនបើអ្នកបិទវគ្គនេះ អ្នកចូលរួមទាំងអស់នឹងត្រូវកាត់ផ្តាច់។ តើអ្នកចង់បន្តទេ?
+bbb.connection.failure=បានរកឃើញបញ្ហាក្នុងការតភ្ជាប់
+bbb.connection.reconnecting=កំពុងភ្ជាប់ម្តងទៀត
+bbb.connection.reestablished=បានតភ្ជាប់ជាថ្មី
bbb.connection.bigbluebutton=BigBlueButton
bbb.connection.sip=SIP
-bbb.connection.video=Video
+bbb.connection.video=វីដេអូ
bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
+bbb.notes.title = ចំណាំ
bbb.notes.cmpColorPicker.toolTip = ពណ៌អក្សរ
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.notes.saveBtn = រក្សាទុក
+bbb.notes.saveBtn.toolTip = រក្សាទុកចំណាំ
+bbb.sharedNotes.title = កំណត់ចំណាំរួមគ្នា
+bbb.sharedNotes.quickLink.label = ផ្ទាំងសម្រាប់កំណត់ចំណាំរួមគ្នា
+bbb.sharedNotes.createNoteWindow.label = ឈ្មោះកំណត់ចំណាំ
+bbb.sharedNotes.createNoteWindow.close.tooltip = បិទ
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = បិទផ្ទាំងសម្រាប់បង្កើតកំណត់ចំណាំថ្មី
+bbb.sharedNotes.typing.single = {0} កំពុងវាយអត្ថបទ...
+bbb.sharedNotes.typing.double = {0} និង {1} កំពុងវាយអត្ថបទ...
+bbb.sharedNotes.typing.multiple = មនុស្សជាច្រើនកំពុងវាយអត្ថបទ...
+bbb.sharedNotes.save.toolTip = រក្សាទុកកំណត់ចំណាំក្នុងឯកសារមួយ
+bbb.sharedNotes.save.complete = រក្សាទុកកំណត់ចំណាំបានជោគជ័យ
+bbb.sharedNotes.save.ioerror = កំណត់ចំណាំមិនត្រូវបានរក្សាទុកទេ។ សូមរក្សាទុកម្តងទៀត។
+bbb.sharedNotes.save.htmlLabel = អត្ថបទមានទ្រង់ទ្រាយ (.html)
+bbb.sharedNotes.save.txtLabel = អត្ថបទធម្មតា (.txt)
+bbb.sharedNotes.new.label = បង្កើត
+bbb.sharedNotes.new.toolTip = បង្កើតកំណត់ចំណាំបន្ថែមទៀត
+bbb.sharedNotes.limit.label = បានដល់កម្រិតសម្រាប់កំណត់ចំណាំ។
+bbb.sharedNotes.clear.label = សម្អាតកំណត់ចំណាំនេះ
+bbb.sharedNotes.undo.toolTip = ឈប់ធ្វើការកែប្រែឡើងវិញ
+bbb.sharedNotes.redo.toolTip = ធ្វើការកែប្រែឡើងវិញ
+bbb.sharedNotes.toolbar.toolTip = របារធ្វើទ្រង់ទ្រាយអត្ថបទ
+bbb.sharedNotes.settings.toolTip = ការកំណត់សម្រាប់ចំណាំរួមគ្នា
+bbb.sharedNotes.clearWarning.title = សម្អាតកំណត់ចំណាំរួមគ្នា
+bbb.sharedNotes.clearWarning.message = សកម្មភាពនេះនឹងលុបសម្អាតកំណត់ចំណាំក្នុងផ្ទាំងនេះសម្រាប់គ្រប់គ្នា ហើយមិនអាចត្រឡប់ក្រោយទេ។ តើអ្នកពិតជាចង់សម្អាតកំណត់ចំណាំទាំងនេះមែនទេ?
+bbb.sharedNotes.additionalNotes.closeWarning.title = បិទកំណត់ចំណាំរួមគ្នា
+bbb.sharedNotes.additionalNotes.closeWarning.message = សកម្មភាពនេះនឹងបំផ្លាញកំណត់ចំណាំក្នុងផ្ទាំងនេះសម្រាប់គ្រប់គ្នា ហើយមិនអាចត្រឡប់ក្រោយទេ។ តើអ្នកពិតជាចង់សម្អាតកំណត់ចំណាំទាំងនេះមែនទេ?
+bbb.sharedNotes.messageLengthWarning.title = លើសកំណត់សម្រាប់ការផ្លាស់ប្តូរតួអក្សរហើយ
+bbb.sharedNotes.messageLengthWarning.text = ការផ្លាស់ប្តូររបស់អ្នកលើការកំណត់ {0} ហើយ។ ព្យាយាមកាត់បន្ថយការផ្លាស់ប្តូររបស់អ្នក។
+bbb.sharedNotes.remaining.tooltip = ទំហំនៅសល់សម្រាប់កំណត់ចំណាំរួមគ្នា
+bbb.sharedNotes.full.tooltip = ដល់ចំណុះហើយ (ព្យាយាមលុបអត្ថបទខ្លះ)
+bbb.settings.deskshare.instructions = ជ្រើស Allow លើផ្ទាំងដែលលេចឡើងដើម្បីពិនិត្យថាការចែករំលែកអេក្រង់កំពុងដំណើរការត្រឹមត្រូវសម្រាប់អ្នក
+bbb.settings.deskshare.start = ពិនិត្យការចែករំលែកអេក្រង់
+bbb.settings.voice.volume = សកម្មភាពមីក្រូហ្វូន
+bbb.settings.java.label = កំហុសក្នុងជំនាន់កម្មវិធី Java
+bbb.settings.java.text = អ្នកបានដំឡើងកម្មវិធី Java {0} ប៉ុន្តែអ្នកត្រូវការយ៉ាងហោចណាស់ជំនាន់ {1} ដើម្បីអាចចែករំលែកអេក្រង់បាន។ ប៊ូតុងខាងក្រោមនឹងដំឡើងកម្មវិធី Java JRE ជំនាន់ចុងក្រោយបង្អស់។
+bbb.settings.java.command = ដំឡើងកម្មវិធី Java ថ្មីបំផុត
+bbb.settings.flash.label = កំហុសក្នុងជំនាន់កម្មវិធី Flash
+bbb.settings.flash.text = អ្នកបានដំឡើងកម្មវិធី Flash {0} ប៉ុន្តែអ្នកត្រូវការយ៉ាងហោចណាស់ជំនាន់ {1} ដើម្បីអាចដំណើរការ BigBlueButton បានត្រឹមត្រូវ។ ប៊ូតុងខាងក្រោមនឹងដំឡើងកម្មវិធី Adobe Flash ជំនាន់ចុងក្រោយបង្អស់។
+bbb.settings.flash.command = ដំឡើងកម្មវិធី Flash ថ្មីបំផុត
+bbb.settings.isight.label = កំហុសវេបខេម iSight
+bbb.settings.isight.text = ប្រសិនបើអ្នកមានបញ្ហាជាមួយវេបខេម iSight របស់អ្នក វាប្រហែលជាដោយសារតែអ្នកកំពុងដំណើរការប្រព័ន្ធប្រតិបត្តិការ OS X 10.6.5 ដែលត្រូវបានគេដឹងថាមានបញ្ហាជាមួយ Flash capture video ពី វេបខេម iSight ។ \nដើម្បីដោះស្រាយបញ្ហានេះ តំណខាងក្រោមនេះនឹងតំឡើងកំណែថ្មីរបស់ Flash Player ឬធ្វើឱ្យ Mac របស់អ្នកទាន់សម័យ
+bbb.settings.isight.command = ដំឡើង Flash 10.2 RC2
+bbb.settings.warning.label = ព្រមាន
+bbb.settings.warning.close = បិទការព្រមាននេះ
+bbb.settings.noissues = មិនមានបញ្ហាធ្ងន់ធ្ងរទេ
+bbb.settings.instructions = ទទួលយកការស្នើសុំប្រើវេបខេមពី Flash។ ប្រសិនបើឧបករណ៍បញ្ចេញត្រូវជាមួយនឹងអ្វីដែលរំពឹងទុក មានន័យថាកម្មវិធីរុករករបស់អ្នកបានរៀបចំត្រឹមត្រូវ។ ខាងក្រោមជាបញ្ហាចំបងផ្សេងទៀត។ ពិនិត្យវាដើម្បីរកដំណោះស្រាយសមរម្យ។
+bbb.bwmonitor.title = ការត្រួតពិនិត្យបណ្តាញ
+bbb.bwmonitor.upload = ផ្ទុកឡើង
+bbb.bwmonitor.upload.short = ឡើងលើ
+bbb.bwmonitor.download = ទាញយក
+bbb.bwmonitor.download.short = ចុះក្រោម
+bbb.bwmonitor.total = សរុប
+bbb.bwmonitor.current = បច្ចុប្បន្ន
+bbb.bwmonitor.available = មាន
+bbb.bwmonitor.latency = ភាពយឺតយ៉ាវ
+ltbcustom.bbb.highlighter.toolbar.triangle = ត្រីកោណ
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = ប្តូរទស្សន៍ទ្រនិចរបស់ក្តារខៀនទៅជាត្រីកោណ
+ltbcustom.bbb.highlighter.toolbar.line = បន្ទាត់
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = ប្តូរទស្សន៍ទ្រនិចរបស់ក្តារខៀនទៅជាបន្ទាត់
+ltbcustom.bbb.highlighter.toolbar.text = អត្ថបទ
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = ប្តូរទស្សន៍ទ្រនិចរបស់ក្តារខៀនទៅជាអត្ថបទ
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = ពណ៌អក្សរ
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = ទំហំអក្សរ
+bbb.caption.window.title = អត្ថបទពីសម្លេង
+bbb.caption.quickLink.label = ផ្ទាំងសម្រាប់អត្ថបទពីសម្លេង
+bbb.caption.window.titleBar = របារចំណងជើងនៃផ្ទាំងសម្រាប់អត្ថបទពីសម្លេង
+bbb.caption.window.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងសម្រាប់អត្ថបទពីសម្លេង
+bbb.caption.window.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងសម្រាប់អត្ថបទពីសម្លេង
+bbb.caption.transcript.noowner = គ្មាន
+bbb.caption.transcript.youowner = អ្នក
+bbb.caption.transcript.pastewarning.title = ការព្រមានសម្រាប់ការបិទភ្ជាប់អត្ថបទតាមសម្លេង
+bbb.caption.transcript.pastewarning.text = មិនអាចបិទភ្ជាប់អត្ថបទវែងជាង {0} តួទេ។ អ្នកបានបិទភ្ជាប់ {1} តួ។
+bbb.caption.transcript.inputArea.toolTip = ប្រអប់បញ្ចូលអត្ថបទតាមសម្លេង
+bbb.caption.transcript.outputArea.toolTip = ប្រអប់បង្ហាញអត្ថបទតាមសម្លេង
+bbb.caption.option.label = ជម្រើស
+bbb.caption.option.language = ភាសាៈ
+bbb.caption.option.language.tooltip = ជ្រើសភាសាសម្រាប់អត្ថបទតាមសម្លេង
+bbb.caption.option.language.accessibilityName = ជ្រើសភាសាសម្រាប់អត្ថបទតាមសម្លេង។ ប្រើគ្រាប់ចុចព្រួញសម្រាប់ផ្លាស់ទី។
+bbb.caption.option.takeowner = ធ្វើជាម្ចាស់
+bbb.caption.option.takeowner.tooltip = ធ្វើជាម្ចាស់របស់ភាសាដែលបានជ្រើស
+bbb.caption.option.fontfamily = ពុម្ភអក្សរៈ
+bbb.caption.option.fontfamily.tooltip = ពុម្ភអក្សរ
+bbb.caption.option.fontsize = ទំហំអក្សរៈ
+bbb.caption.option.fontsize.tooltip = ទំហំអក្សរ
+bbb.caption.option.backcolor = ពណ៌ផ្ទៃខាងក្រោយៈ
+bbb.caption.option.backcolor.tooltip = ពណ៌ផ្ទៃខាងក្រោយ
+bbb.caption.option.textcolor = ពណ៌អក្សរៈ
+bbb.caption.option.textcolor.tooltip = ពណ៌អក្សរ
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady = រូចរាល់
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst = អ្នកបានមកដល់សារដំបូងបង្អស់ហើយ។
+bbb.accessibility.chat.chatBox.reachedLatest = អ្នកបានមកដល់សារចុងក្រោយបង្អស់ហើយ។
+bbb.accessibility.chat.chatBox.navigatedFirst = អ្នកបានផ្លាស់ទីដល់សារដំបូងបង្អស់ហើយ។
+bbb.accessibility.chat.chatBox.navigatedLatest = អ្នកបានផ្លាស់ទីដល់សារចុងក្រោយបង្អស់ហើយ។
+bbb.accessibility.chat.chatBox.navigatedLatestRead = អ្នកបានផ្លាស់ទីដល់សារថ្មីបំផុតដែលអ្នកបានអានហើយ។
+bbb.accessibility.chat.chatwindow.input = អត្ថបទបញ្ចូលសម្រាប់ការជជែក
+bbb.accessibility.chat.chatwindow.audibleChatNotification = ដំណឹងជាសម្លេងសម្រាប់ការជជែក
+bbb.accessibility.chat.chatwindow.publicChatOptions = ជម្រើសសម្រាប់ការជជែកសាធារណៈ
+bbb.accessibility.chat.initialDescription = សូមប្រើគ្រាប់ចុចព្រួញដើម្បីផ្លាស់ទីក្នុងសារជជែក។
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input = អត្ថបទដែលបានបញ្ចូលក្នុងចំណាំ
-bbb.shortcuthelp.title = ក្តារចុចសំរាប់ផ្លូវកាត់
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title = គ្រាប់ចុចសម្រាប់ផ្លូវកាត់
+bbb.shortcuthelp.titleBar = របារចំណងជើងផ្ទាំងសម្រាប់គ្រាប់ចុចសម្រាប់ផ្លូវកាត់
+bbb.shortcuthelp.minimizeBtn.accessibilityName = បង្រួមផ្ទាំងសម្រាប់ជំនួយផ្លូវកាត់
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = ពង្រីកផ្ទាំងសម្រាប់ជំនួយផ្លូវកាត់
+bbb.shortcuthelp.closeBtn.accessibilityName = បិទផ្ទាំងសម្រាប់ជំនួយផ្លូវកាត់
+bbb.shortcuthelp.dropdown.accessibilityName = ប្រភេទផ្លូវកាត់
+bbb.shortcuthelp.dropdown.general = ផ្លូវកាត់ប្រើជាសកល
+bbb.shortcuthelp.dropdown.presentation = ផ្លូវកាត់សម្រាប់បទបង្ហាញ
+bbb.shortcuthelp.dropdown.chat = ផ្លូវកាត់សម្រាប់ការជជែក
+bbb.shortcuthelp.dropdown.users = ផ្លូវកាត់សម្រាប់អ្នកប្រើ
+bbb.shortcuthelp.dropdown.caption = ផ្លូវកាត់សម្រាប់អត្ថបទពីសម្លេង
+bbb.shortcuthelp.browserWarning.text = បញ្ជីពេញលេញនៃផ្លូវកាត់អាចប្រើបានតែនៅក្នុង Internet Explorer ទេ។
+bbb.shortcuthelp.headers.shortcut = ផ្លូវកាត់
+bbb.shortcuthelp.headers.function = តួនាទី
bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
+bbb.shortcutkey.general.minimize.function = បង្រូមផ្ទាំងបច្ចុប្បន្ន
bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.maximize.function = ពង្រីកផ្ទាំងបច្ចុប្បន្ន
bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
+bbb.shortcutkey.flash.exit.function = ផ្តោតចេញពីផ្ទាំង Flash
bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
+bbb.shortcutkey.users.muteme.function = បិទសំឡេង និងបើកសម្លេងមីក្រូហ្វូនរបស់អ្នក
bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
+bbb.shortcutkey.chat.chatinput.function = ផ្តោតទៅលើប្រអប់សម្រាប់បញ្ចូលអត្ថបទជជែក
bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
+bbb.shortcutkey.present.focusslide.function = ផ្តោតទៅលើផ្ទាំងស្លាយក្នុងបទបង្ហាញ
bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.whiteboard.undo.function = ឈប់ធ្វើគំនួរចុងក្រោយលើក្តារខៀនវិញ
bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
+bbb.shortcutkey.focus.users.function = ផ្លាស់ប្តូរការផ្តោតទៅផ្ទាំងអ្នកប្រើ
bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
+bbb.shortcutkey.focus.video.function = ផ្លាស់ប្តូរការផ្តោតទៅផ្ទាំងវេបខេម
bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
+bbb.shortcutkey.focus.presentation.function = ផ្លាស់ប្តូរការផ្តោតទៅផ្ទាំងសម្រាប់បទបង្ហាញ
bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
+bbb.shortcutkey.focus.chat.function = ផ្លាស់ប្តូរការផ្តោតទៅផ្ទាំងសម្រាប់ការសន្ទនា
bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption.function = ផ្លាស់ប្តូរការផ្តោតទៅផ្ទាំងសម្រាប់អត្ថបទពីសម្លេង
bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
+bbb.shortcutkey.share.desktop.function = បើកផ្ទាំងសម្រាប់ចែករំលែកអេក្រង់
bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.webcam.function = បើកផ្ទាំងសម្រាប់ចែករំលែកវេបខេម
bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
+bbb.shortcutkey.shortcutWindow.function = បើក/ផ្តោតលើផ្ទាំងសម្រាប់ជំនួយផ្លូវកាត់
bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
+bbb.shortcutkey.logout.function = ចាកចេញពីការប្រជុំនេះ
bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.raiseHand.function = លើកដៃអ្នកឡើង
bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
+bbb.shortcutkey.present.upload.function = ផ្ទុកឯកសារបទបង្ហាញឡើង
bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
+bbb.shortcutkey.present.previous.function = ទៅផ្ទាំងស្លាយមុន
bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
+bbb.shortcutkey.present.select.function = បង្ហាញផ្ទាំងស្លាយទាំងអស់
bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
+bbb.shortcutkey.present.next.function = ទៅផ្ទាំងស្លាយបន្ទាប់
bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
+bbb.shortcutkey.present.fitWidth.function = ដាក់ស្លាយឲ្យសមនឹងបណ្តោយ
bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.fitPage.function = ដាក់ស្លាយឲ្យសមនឹងទំព័រ
bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
+bbb.shortcutkey.users.makePresenter.function = ឲ្យអ្នកដែលបានជ្រើសធ្វើជាអ្នកធ្វើបទបង្ហាញ
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
+bbb.shortcutkey.users.mute.function = បិទសម្លេង ឬមិនបិទសម្លេងអ្នកប្រើដែលបានជ្រើស
bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
+bbb.shortcutkey.users.muteall.function = បិទសម្លេង ឬមិនបិទសម្លេងអ្នកប្រើទាំងអស់
bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
+bbb.shortcutkey.users.muteAllButPres.function = បិទសម្លេងអ្នកគ្រប់គ្នាលើកលែងអ្នកធ្វើបទបង្ហាញ
bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
+bbb.shortcutkey.users.breakoutRooms.function = ផ្ទាំងសម្រាប់បន្ទប់បំបែក
bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
+bbb.shortcutkey.users.focusBreakoutRooms.function = ផ្តោតទៅលើបញ្ជីបន្ទប់បំបែក
bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
+bbb.shortcutkey.users.listenToBreakoutRoom.function = ស្តាប់បន្ទប់បំបែកដែលបានជ្រើស
bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.joinBreakoutRoom.function = ចូលបន្ទប់បំបែកដែលបានជ្រើស
bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
+bbb.shortcutkey.chat.focusTabs.function = ផ្តោតលើផ្ទាំងក្នុងការសន្ទនា
bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox.function = ផ្តោតទៅលើបញ្ជីសារសន្ទនា
bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
+bbb.shortcutkey.chat.changeColour.function = ផ្តោតលើឧបករណ៍ជ្រើសពណ៌
bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = ផ្ញើរសារសន្ទនា
+bbb.shortcutkey.chat.sendMessage.function = ផ្ញើសារសន្ទនា
bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate.function = បិទផ្ទាំងជជែកឯកជន
bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.explanation.function = សម្រាប់ការផ្លាស់ទីក្នុងសារ អ្នកត្រូវតែផ្តោតទៅលើប្រអប់ជជែក
bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
+bbb.shortcutkey.chat.chatbox.advance.function = ផ្លាស់ទីទៅសារបន្ទាប់
bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
+bbb.shortcutkey.chat.chatbox.goback.function = ផ្លាស់ទីទៅសារមុន
bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
+bbb.shortcutkey.chat.chatbox.repeat.function = សរសេរសារបច្ចុប្បន្នម្តងទៀត
bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
+bbb.shortcutkey.chat.chatbox.golatest.function = ផ្លាស់ទីទៅសារចុងក្រោយ
bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
+bbb.shortcutkey.chat.chatbox.gofirst.function = ផ្លាស់ទីទៅសារទីមួយ
bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
+bbb.shortcutkey.chat.chatbox.goread.function = ផ្លាស់ទីទៅកាន់សារថ្មីបំផុតដែលអ្នកបានអាន
bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.debug.function = គ្រាប់ចុចចងសម្រាប់បំបាត់កំហុសបណ្តោះអាសន្ន
bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership.function = ធ្វើជាម្ចាស់របស់ភាសាដែលបានជ្រើស
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip = ចាប់ផ្តើមការស្ទង់មតិ
+bbb.polling.startButton.label = ចាប់ផ្តើមការស្ទង់មតិ
+bbb.polling.publishButton.label = ដាក់ប្រកាស
bbb.polling.closeButton.label = បិទ
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
+bbb.polling.customPollOption.label = ការស្ទង់មតិតាមចិត្ត...
+bbb.polling.pollModal.title = លទ្ធផលស្ទង់មតិផ្ទាល់
+bbb.polling.pollModal.hint = ទុកឱ្យផ្ទាំងនេះបើកដូច្នេះ ដើម្បីឱ្យសិស្សឆ្លើយតបទៅនឹងការស្ទង់មតិ។ ចុចលើប៊ូតុង ដាក់ប្រកាស ឬ បិទ ដើម្បីបញ្ចប់ការបោះឆ្នោត។
+bbb.polling.customChoices.title = បញ្ចូលជម្រើសសម្រាប់ស្ទង់មតិ
+bbb.polling.respondersLabel.novotes = រង់ចាំចម្លើយ
+bbb.polling.respondersLabel.text = {0} នាក់បានឆ្លើយ
+bbb.polling.respondersLabel.finished = រួចរាល់
+bbb.polling.answer.Yes = បាទ/ចាស
+bbb.polling.answer.No = ទេ
+bbb.polling.answer.True = ត្រូវ
+bbb.polling.answer.False = ខុស
bbb.polling.answer.A = A
bbb.polling.answer.B = B
bbb.polling.answer.C = C
@@ -770,134 +781,91 @@ bbb.polling.answer.D = D
bbb.polling.answer.E = E
bbb.polling.answer.F = F
bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.results.accessible.header = លទ្ធផលស្ទង់មតិ
+bbb.polling.results.accessible.answer = ចម្លើយ {0} ទទួលបានការគាំទ្រ {1}។
bbb.publishVideo.startPublishBtn.labelText = ចាប់ផ្តើមចែករំលែក
bbb.publishVideo.changeCameraBtn.labelText = ប្តូរវេបខេម
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter = ឥឡូវអ្នកជាអ្នកធ្វើបទបង្ហាញ
+bbb.accessibility.alerts.madeViewer = ឥឡូវអ្នកជាមើល។
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space = ចន្លោះមើលមិនឃើញ
+bbb.shortcutkey.specialKeys.left = ព្រួញឆ្វេង
+bbb.shortcutkey.specialKeys.right = ព្រួញស្តាំ
+bbb.shortcutkey.specialKeys.up = ព្រួញឡើង
+bbb.shortcutkey.specialKeys.down = ព្រួញចុះ
+bbb.shortcutkey.specialKeys.plus = បូក
+bbb.shortcutkey.specialKeys.minus = ដក
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos = បិទវីដេអូទាំងអស់
+bbb.users.settings.lockAll = ចាក់សោអ្នកប្រើទាំងអស់
+bbb.users.settings.lockAllExcept = ចាក់សោអ្នកប្រើក្រៅពីអ្នកធ្វើបទបង្ហាញ
+bbb.users.settings.lockSettings = ចាក់សោអ្នកមើល...
+bbb.users.settings.breakoutRooms = បន្ទប់បំបែក...
+bbb.users.settings.sendBreakoutRoomsInvitations = ផ្ញើការអញ្ជើញចូលរួមបន្ទប់បំបែក...
+bbb.users.settings.unlockAll = បើកសោអ្នកមើលទាំងអស់
+bbb.users.settings.roomIsLocked = បានចាក់សោតាមលំនាំដើម
+bbb.users.settings.roomIsMuted = បានបិទសម្លេងតាមលំនាំដើម
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save = អនុវត្ត
+bbb.lockSettings.save.tooltip = អនុវត្តការកំណត់សម្រាប់ការចាក់សោ
bbb.lockSettings.cancel = បោះបង់
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip = បិទផ្ទាំងនេះដោយមិនរក្សាទុក
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking = ការចាក់សោអ្នកសម្របសម្រួល
+bbb.lockSettings.privateChat = ជជែកឯកជន
+bbb.lockSettings.publicChat = ជជែកសាធារណៈ
+bbb.lockSettings.webcam = វេបខេម
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone = មីក្រូហ្វូន
+bbb.lockSettings.layout = ប្លង់
+bbb.lockSettings.title=ចាក់សោអ្នកមើល
+bbb.lockSettings.feature=លក្ខណៈ
+bbb.lockSettings.locked=បានចាក់សោ
+bbb.lockSettings.lockOnJoin=ចាក់សោពេលចូល
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms = បន្ទប់បំបែក
+bbb.users.breakout.updateBreakoutRooms = ប្តូរបន្ទប់បំបែក
+bbb.users.breakout.timerForRoom.toolTip = ពេលវេលានៅសល់សម្រាប់បន្ទប់បំបែក
+bbb.users.breakout.timer.toolTip = ពេលវេលានៅសល់សម្រាប់បន្ទប់បំបែក
+bbb.users.breakout.calculatingRemainingTime = កំពុងគណនាពេលវេលានៅសល់...
+bbb.users.breakout.closing = កំពុងបិទ
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms = បន្ទប់
+bbb.users.breakout.roomsCombo.accessibilityName = ចំនួនបន្ទប់ត្រូវបង្កើត
+bbb.users.breakout.room = បន្ទប់
+bbb.users.breakout.timeLimit = ពេលវេលាកំណត់
+bbb.users.breakout.durationStepper.accessibilityName = ពេលវេលាកំណត់គិតជានាទី
+bbb.users.breakout.minutes = នាទី
+bbb.users.breakout.record = ថត
+bbb.users.breakout.recordCheckbox.accessibilityName = ថតសកម្មភាពបន្ទប់បំបែក
+bbb.users.breakout.notAssigned = មិនបានចាត់ចែង
+bbb.users.breakout.dragAndDropToolTip = ព័ត៌មានជំនួយ: អ្នកអាចអូសនិងទម្លាក់អ្នកប្រើរវាងបន្ទប់
+bbb.users.breakout.start = ចាប់ផ្តើម
+bbb.users.breakout.invite = អញ្ជើញ
+bbb.users.breakout.close = បិទ
+bbb.users.breakout.closeAllRooms = បិទបន្ទប់បំបែក
+bbb.users.breakout.insufficientUsers = អ្នកប្រើមិនគ្រប់គ្រាន់។ អ្នកគួរតែដាក់អ្នកប្រើយ៉ាងហោចណាស់ម្នាក់នៅក្នុងបន្ទប់បំបែកមួយ។
+bbb.users.breakout.confirm = ចូលបន្ទប់បំបែកជាក្រុម
+bbb.users.breakout.invited = អ្នកត្រូវបានអញ្ជើញឲ្យចូលបន្ទប់បំបែក
+bbb.users.breakout.accept = តាមរយៈការទទួលយក អ្នកនឹងចាកចេញដោយស្វ័យប្រវត្តិពីសន្និសិទដោយប្រើសម្លេងនិងវីដេអូ។
+bbb.users.breakout.joinSession = ចូលរួមវគ្គ
+bbb.users.breakout.joinSession.accessibilityName = ចូលវគ្គបន្ទប់បំបែក
+bbb.users.breakout.joinSession.close.tooltip = បិទ
+bbb.users.breakout.joinSession.close.accessibilityName = បិទផ្ទាំងសម្រាប់ចូលបន្ទប់បំបែក
+bbb.users.breakout.youareinroom = អ្នកនៅក្នុងបន្ទប់បំបែក {0}
+bbb.users.roomsGrid.room = បន្ទប់
+bbb.users.roomsGrid.users = អ្នកប្រើ
+bbb.users.roomsGrid.action = សកម្មភាព
+bbb.users.roomsGrid.transfer = បញ្ជូនសម្លេង
+bbb.users.roomsGrid.join = ចូលរួម
+bbb.users.roomsGrid.noUsers = មិនមានអ្នកប្រើក្នុងបន្ទប់នេះទេ
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=ភាសាតាមលំនាំដើម
+
+bbb.alert.cancel = បោះបង់
+bbb.alert.ok = ព្រម
+bbb.alert.no = ទេ
+bbb.alert.yes = បាទ/ចាស
diff --git a/bigbluebutton-client/locale/ko/bbbResources.properties b/bigbluebutton-client/locale/ko/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/ko/bbbResources.properties
+++ b/bigbluebutton-client/locale/ko/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ko_KR/bbbResources.properties b/bigbluebutton-client/locale/ko_KR/bbbResources.properties
index 8404179edc21..bdd7b6e6b0e8 100644
--- a/bigbluebutton-client/locale/ko_KR/bbbResources.properties
+++ b/bigbluebutton-client/locale/ko_KR/bbbResources.properties
@@ -1,159 +1,160 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = 서버 접속중
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = 서버에 접속하지 못했습니다.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = 기록 보기
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = 화면 재설정
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = 이전 언어팩 설치되어 있습니다.
bbb.oldlocalewindow.reminder2 = 브라우저의 캐시를 삭제하고 다시 시도해보세요.
bbb.oldlocalewindow.windowTitle = 경고 : 이전 언어팩 문제
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
bbb.micSettings.speakers.header = 스피커 테스트
bbb.micSettings.microphone.header = 마이크 테스트
bbb.micSettings.playSound = 테스트음 재생
bbb.micSettings.playSound.toolTip = 음악을 재생하여 스피커를 테스트하세요.
bbb.micSettings.hearFromHeadset = 컴퓨터 스피커가 아니라 헤드셋에서 소리가 들려야합니다.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
bbb.micSettings.echoTestAudioYes = 예
bbb.micSettings.echoTestAudioNo = 아니오
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = 마이크 테스트 / 세팅 변경
bbb.micSettings.changeMic.toolTip = Flash Player 마이크 설정 대화 상자 열기
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = 음성 연결
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = 취소
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
bbb.micSettings.cancel.toolTip = 오디호 회의 참석 취소
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = 음성 세팅, 윈도우가 닫힐때까지는 오디오 세팅 부분에 커서가 위치됩니다.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = 도움말
bbb.mainToolbar.logoutBtn = 로그아웃
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = 언어 선택
bbb.mainToolbar.settingsBtn = 세팅
bbb.mainToolbar.settingsBtn.toolTip = 세팅 열기
bbb.mainToolbar.shortcutBtn = 단축키
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = 축소
bbb.window.maximizeRestoreBtn.toolTip = 확대
bbb.window.closeBtn.toolTip = 닫기
@@ -166,88 +167,89 @@ bbb.users.quickLink.label = 사용자 창
bbb.users.minimizeBtn.accessibilityName = 사용자 창 최소화
bbb.users.maximizeRestoreBtn.accessibilityName = 사용자 창 최대화
bbb.users.settings.buttonTooltip = 세팅
-bbb.users.settings.audioSettings = Audio Test
+bbb.users.settings.audioSettings =
bbb.users.settings.webcamSettings = 웹캠 세팅
bbb.users.settings.muteAll = 모든 사용자 음소거
bbb.users.settings.muteAllExcept = 발표자를 제외한 모든 사용자 음소거
bbb.users.settings.unmuteAll = 모든 사용자 음소거 해제
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = 말하기
bbb.users.pushToMute.toolTip = 내 음소거
bbb.users.muteMeBtnTxt.talk = 음소거 해제
bbb.users.muteMeBtnTxt.mute = 음소거
bbb.users.muteMeBtnTxt.muted = 음소거됨
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = 사용자 목록. 화살표 키를 이용하여 탐색하세요.
bbb.users.usersGrid.nameItemRenderer = 이름
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
bbb.users.usersGrid.statusItemRenderer = 상태
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
bbb.users.usersGrid.statusItemRenderer.presenter = 발표자
bbb.users.usersGrid.statusItemRenderer.moderator = 사회자
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = 뷰어
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = 미디어
bbb.users.usersGrid.mediaItemRenderer.talking = 말하는 중
bbb.users.usersGrid.mediaItemRenderer.webcam = 웹캠 공유 중
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = 웹캠 보기
bbb.users.usersGrid.mediaItemRenderer.pushToTalk = {0} 음소거 해제
bbb.users.usersGrid.mediaItemRenderer.pushToMute = {0} 음소거
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = {0} 내보내기
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = 웹캠 공유 중
bbb.users.usersGrid.mediaItemRenderer.micOff = 마이크 끔
bbb.users.usersGrid.mediaItemRenderer.micOn = 마이크 켬
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = 프리젠테이션 # Presentation
bbb.presentation.titleWithPres = 프레젠테이션: {0}
bbb.presentation.quickLink.label = 프레젠테이션 창
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = 이전 슬라이드
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
+bbb.presentation.btnSlideNum.accessibilityName =
bbb.presentation.btnSlideNum.toolTip = 슬라이드 선택
bbb.presentation.forwardBtn.toolTip = 다음 슬라이드 # Next slide
bbb.presentation.maxUploadFileExceededAlert = 에러 : 파일 크기가 허용된 범위를 초과합니다. # Error: The file is bigger than what's allowed.
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = 업로드 완료. 문서를 변환할때까지
bbb.presentation.uploaded = 업로드 됨. # uploaded.
bbb.presentation.document.supported = 지원되는 문서입니다. 변환 시작합니다. # The uploaded document is supported. Starting to convert...
bbb.presentation.document.converted = 문서가 성공적으로 변환되었습니다. # Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = 입출력 에러 : 관리자에게 문의하세요. # IO Error: Please contact administrator.
bbb.presentation.error.security = 보안 에러 : 관리자에게 문의하세요. # Security Error: Please contact administrator.
bbb.presentation.error.convert.notsupported = 에러 : 지원되지 않는 문서입니다. 지원되는 문서를 업로드하세요.
@@ -276,77 +278,78 @@ bbb.presentation.minimizeBtn.accessibilityName = 프레젠테이션 창 최소
bbb.presentation.maximizeRestoreBtn.accessibilityName = 프레젠테이션 창 최소화
bbb.presentation.closeBtn.accessibilityName = 프레젠테이션 창 닫기
bbb.fileupload.title = 프리젠테이션에 파일 추가
-bbb.fileupload.lblFileName.defaultText = No file selected
+bbb.fileupload.lblFileName.defaultText =
bbb.fileupload.selectBtn.label = 파일 선택
bbb.fileupload.selectBtn.toolTip = 파일을 선택할 대화 상자 열기
bbb.fileupload.uploadBtn = 업로드
bbb.fileupload.uploadBtn.toolTip = 선택한 파일 업로드
bbb.fileupload.deleteBtn.toolTip = 프리젠테이션 삭제
bbb.fileupload.showBtn = 보이기
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = 프리젠테이션 보이기
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = 썸네일 생성..
bbb.fileupload.progBarLbl = 진행률 :
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = 채팅
bbb.chat.quickLink.label = 채팅 창
bbb.chat.cmpColorPicker.toolTip = 글자색
bbb.chat.input.accessibilityName = 채팅 메시지 편집 필드
bbb.chat.sendBtn.toolTip = 메시지 보내기
bbb.chat.sendBtn.accessibilityName = 채팅 메시지 보내기
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = 공용
bbb.chat.optionsTabName = 옵션
bbb.chat.privateChatSelect = 개별 채팅을 할 참석자를 선택 # Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = 채팅 옵션
bbb.chat.fontSize = 채팅 메시지 폰트 사이즈
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = 채팅 창 최소화
bbb.chat.maximizeRestoreBtn.accessibilityName = 채팅 창 최대화
bbb.chat.closeBtn.accessibilityName = 채팅 창 닫기
bbb.chat.chatTabs.accessibleNotice = 이 탭에 새 메시지가 있습니다.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = 웹캠 변경
bbb.publishVideo.changeCameraBtn.toolTip = 웹캠 변경 대화 상자 열기
bbb.publishVideo.cmbResolution.tooltip = 웹캠 해상도 선택
bbb.publishVideo.startPublishBtn.labelText = 공유 시작
bbb.publishVideo.startPublishBtn.toolTip = 웹캠 공유 시작
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = 비디오 도크
bbb.videodock.quickLink.label = 웹캠 창
bbb.video.minimizeBtn.accessibilityName = 웹캠 창 최소화
@@ -361,96 +364,98 @@ bbb.video.publish.hint.waitingApproval = 승인 대기 중
bbb.video.publish.hint.videoPreview = 웹캠 미리 보기
bbb.video.publish.hint.openingCamera = 웹캠 여는 중...
bbb.video.publish.hint.cameraDenied = 웹캠 접근이 금지됨
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = 게시 중...
bbb.video.publish.closeBtn.accessName = 웹캠 설정 대화 상자 닫기
bbb.video.publish.closeBtn.label = 취소
bbb.video.publish.titleBar = 웹캠 창 공개
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = 사용자 지정 레이아웃을 목록에 추가
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
bbb.layout.loadButton.toolTip = 레이아웃 파일에서 가져오기
bbb.layout.saveButton.toolTip = 레이아웃을 파일에 저장
bbb.layout.lockButton.toolTip = 레이아웃 잠금
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = 레이아웃 적용
bbb.layout.combo.custom = * 사용자 지정 레이아웃
bbb.layout.combo.customName = 사용자 지정 레이아웃
bbb.layout.combo.remote = 원격
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = 레이아웃 저장이 완료되었습니다.
+bbb.layout.save.ioerror =
bbb.layout.load.complete = 레이아웃 가져오기가 완료되었습니다.
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = 연필
bbb.highlighter.toolbar.pencil.accessibilityName = 화이트보드 커서를 연필로 전환
bbb.highlighter.toolbar.ellipse = 동그라미 # Circle
@@ -484,105 +492,107 @@ bbb.highlighter.toolbar.rectangle = 사각형 # Rectangle
bbb.highlighter.toolbar.rectangle.accessibilityName = 화이트보드 커서를 직사각형으로 전환
bbb.highlighter.toolbar.panzoom = 이동 및 확대/축소
bbb.highlighter.toolbar.panzoom.accessibilityName = 화이트보드 커서를 이동(상하/좌우)으로 전환하고 확대
-bbb.highlighter.toolbar.clear = Clear All Annotations
+bbb.highlighter.toolbar.clear =
bbb.highlighter.toolbar.clear.accessibilityName = 화이트보드 페이지 초기화
-bbb.highlighter.toolbar.undo = Undo Annotation
+bbb.highlighter.toolbar.undo =
bbb.highlighter.toolbar.undo.accessibilityName = 마지막 화이트보드 모양 되돌리기
bbb.highlighter.toolbar.color = 글자색 선택 # Select Color
bbb.highlighter.toolbar.color.accessibilityName = 화이트보드 마커 색
bbb.highlighter.toolbar.thickness = 두께 변경
bbb.highlighter.toolbar.thickness.accessibilityName = 화이트보드 그리기 두께
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = 로그아웃 됨
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = 서버 프로그램이 종료되었습니다.
bbb.logout.asyncerror = 비동기 에러 발생.
bbb.logout.connectionclosed = 서버 연결이 닫혔습니다.
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = 서버 연결이 거부되었습니다.
bbb.logout.invalidapp = Red5가 설치되지 않았습니다.
bbb.logout.unknown = 클라이언트가 서버에 대한 연결을 잃었습니다.
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = 회의에서 로그아웃 하였습니다.
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = 로그아웃 확인
bbb.logout.confirm.message = 로그아웃하시겠습니까?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = 예
bbb.logout.confirm.no = 아니오
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = 메모
bbb.notes.cmpColorPicker.toolTip = 글자색
bbb.notes.saveBtn = 저장
bbb.notes.saveBtn.toolTip = 메모 저장
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = 화면공유 검사창이 뜨면 허가를 클릭하세요.
bbb.settings.deskshare.start = 화면공유 확인
bbb.settings.voice.volume = 마이크 켜기
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = 플래시 버젼 에러
bbb.settings.flash.text = 현재 플래시 {0} 이 설치되어 있습니다. BigBlueButton가 정확히 실행되자면 플래시 최신버젼 {1} 을 설치해야 합니다. 최신버젼을 설치하려면 아래의 단추를 클릭하세요.
bbb.settings.flash.command = 최신 플래시 설치
bbb.settings.isight.label = iSight 카메라 에러
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = 플래시 10.2 RC2 설치
bbb.settings.warning.label = 경고
bbb.settings.warning.close = 경고창 닫기
bbb.settings.noissues = 별다른 문제가 발견되지 않았습니다.
bbb.settings.instructions = 카메라 사용허가에 대한 플래시 팝업창이 뜨면 허가를 하세요. 카메라와 스피커를 통해 자신의 모습과 목소리를 확인하셨다면 브라우저가 제대로 동작하는 것입니다. 아래와 같이 다른 문제가 발생된다면 문제 해결을 위해 각각의 내용을 클릭하세요.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = 삼각형
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = 화이트보드 커서를 삼각형으로 전환
ltbcustom.bbb.highlighter.toolbar.line = 선
@@ -591,34 +601,34 @@ ltbcustom.bbb.highlighter.toolbar.text = 텍스트
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = 화이트보드 커서를 텍스트로 전환
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = 텍스트 색
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = 글꼴 크기
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
bbb.accessibility.chat.chatBox.reachedFirst = 첫 번째 메시지에 도달했습니다.
bbb.accessibility.chat.chatBox.reachedLatest = 최신 메시지에 도달했습니다.
@@ -626,33 +636,33 @@ bbb.accessibility.chat.chatBox.navigatedFirst = 첫째 메시지로 이동했
bbb.accessibility.chat.chatBox.navigatedLatest = 최신 메시지로 이동했습니다.
bbb.accessibility.chat.chatBox.navigatedLatestRead = 읽은 메시지 중 최신 메시지로 이동했습니다.
bbb.accessibility.chat.chatwindow.input = 채팅 입력
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = 채팅 메시지를 탐색하려면 화살펴 키를 이용하십시오.
bbb.accessibility.notes.notesview.input = 메모 입력
bbb.shortcuthelp.title = 단축키
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = 바로 가기 도움말 창 최소화
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = 바로가기 도움말 창 최대화
bbb.shortcuthelp.closeBtn.accessibilityName = 바로 가기 도움말 창 닫기
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = 전역 바로 가기
bbb.shortcuthelp.dropdown.presentation = 프레젠테이션 바로 가기
bbb.shortcuthelp.dropdown.chat = 채팅 바로 가기
bbb.shortcuthelp.dropdown.users = 사용자 바로 가기
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = 바로 가기
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
+bbb.shortcutkey.general.minimize =
bbb.shortcutkey.general.minimize.function = 현재 창 최소화
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = 현재 창 최대화
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Flash 창 포커스 아웃
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = 마이크 음소거 및 음소거 해제
@@ -671,107 +681,108 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = 포커스를 프레젠테이션 창으로 이동
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = 포커스를 채팅 창으로 이동
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
+bbb.shortcutkey.share.desktop =
bbb.shortcutkey.share.desktop.function = 바탕화면 공유 창 열기
-bbb.shortcutkey.share.webcam = 66
+bbb.shortcutkey.share.webcam =
bbb.shortcutkey.share.webcam.function = 웹캠 공유 창 열기
-bbb.shortcutkey.shortcutWindow = 72
+bbb.shortcutkey.shortcutWindow =
bbb.shortcutkey.shortcutWindow.function = 바로가기 도움말 창 열기/포커스
-bbb.shortcutkey.logout = 76
+bbb.shortcutkey.logout =
bbb.shortcutkey.logout.function = 현재 회의에서 로그 아웃
-bbb.shortcutkey.raiseHand = 82
+bbb.shortcutkey.raiseHand =
bbb.shortcutkey.raiseHand.function = 손들기
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = 프레젠테이션 업로드
-bbb.shortcutkey.present.previous = 65
+bbb.shortcutkey.present.previous =
bbb.shortcutkey.present.previous.function = 이전 슬라이드로 이동
-bbb.shortcutkey.present.select = 83
+bbb.shortcutkey.present.select =
bbb.shortcutkey.present.select.function = 모든 슬라이드 보기
-bbb.shortcutkey.present.next = 69
+bbb.shortcutkey.present.next =
bbb.shortcutkey.present.next.function = 다음 슬라이드로 이동
-bbb.shortcutkey.present.fitWidth = 70
+bbb.shortcutkey.present.fitWidth =
bbb.shortcutkey.present.fitWidth.function = 슬라이드를 너비에 맞추기
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = 슬라이드를 페이지에 맞추기
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = 선택한 사람을 발표자로 지정
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = 선택한 사람을 회의에서 내보내기
-bbb.shortcutkey.users.mute = 83
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
bbb.shortcutkey.users.mute.function = 선택한 사람 음소거 또는 음소거 해제
-bbb.shortcutkey.users.muteall = 65
+bbb.shortcutkey.users.muteall =
bbb.shortcutkey.users.muteall.function = 모든 사용자 음소거 또는 음소거 해제
-bbb.shortcutkey.users.muteAllButPres = 65
+bbb.shortcutkey.users.muteAllButPres =
bbb.shortcutkey.users.muteAllButPres.function = 발표자를 제외한 모든 사용자 음소거
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
+bbb.shortcutkey.chat.focusTabs =
bbb.shortcutkey.chat.focusTabs.function = 채팅 탭 포커스
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = 글꼴 색 선택을 포커스합니다.
-bbb.shortcutkey.chat.sendMessage = 83
+bbb.shortcutkey.chat.sendMessage =
bbb.shortcutkey.chat.sendMessage.function = 채팅 메시지 보내기
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
bbb.shortcutkey.chat.explanation.function = 메시지를 탐색하려면 채팅 박스를 포커스해야 합니다.
-bbb.shortcutkey.chat.chatbox.advance = 40
+bbb.shortcutkey.chat.chatbox.advance =
bbb.shortcutkey.chat.chatbox.advance.function = 다음 메시지로 이동
-bbb.shortcutkey.chat.chatbox.goback = 38
+bbb.shortcutkey.chat.chatbox.goback =
bbb.shortcutkey.chat.chatbox.goback.function = 이전 메시지로 이동
-bbb.shortcutkey.chat.chatbox.repeat = 32
+bbb.shortcutkey.chat.chatbox.repeat =
bbb.shortcutkey.chat.chatbox.repeat.function = 현재 메시지 반복
-bbb.shortcutkey.chat.chatbox.golatest = 39
+bbb.shortcutkey.chat.chatbox.golatest =
bbb.shortcutkey.chat.chatbox.golatest.function = 마지막 메시지로 이동
-bbb.shortcutkey.chat.chatbox.gofirst = 37
+bbb.shortcutkey.chat.chatbox.gofirst =
bbb.shortcutkey.chat.chatbox.gofirst.function = 처음 메시지로 이동
-bbb.shortcutkey.chat.chatbox.goread = 75
+bbb.shortcutkey.chat.chatbox.goread =
bbb.shortcutkey.chat.chatbox.goread.function = 읽은 메시지 중 최신 메시지로 이동
-bbb.shortcutkey.chat.chatbox.debug = 71
+bbb.shortcutkey.chat.chatbox.debug =
bbb.shortcutkey.chat.chatbox.debug.function = 임시 디버그 바로가기 키
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = 게시
bbb.polling.closeButton.label = 닫기
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = 예
bbb.polling.answer.No = 아니오
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = 공유 시작
bbb.publishVideo.changeCameraBtn.labelText = 웹캠 변경
@@ -787,117 +798,74 @@ bbb.shortcutkey.specialKeys.down = 아래쪽 화살표
bbb.shortcutkey.specialKeys.plus = 더하기
bbb.shortcutkey.specialKeys.minus = 빼기
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = 취소
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/lt/bbbResources.properties b/bigbluebutton-client/locale/lt/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/lt/bbbResources.properties
+++ b/bigbluebutton-client/locale/lt/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/lt_LT/bbbResources.properties b/bigbluebutton-client/locale/lt_LT/bbbResources.properties
index d099bb9e4c5c..f125fafc7f0d 100644
--- a/bigbluebutton-client/locale/lt_LT/bbbResources.properties
+++ b/bigbluebutton-client/locale/lt_LT/bbbResources.properties
@@ -1,253 +1,255 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Jungiamasi prie serverio
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Atsiprašome, nėra galimybės prisijungti prie serverio.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Atidaryti prisijungimo langą
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Atstatyti išdėstymą
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Jūs, tikriausiai turite senus BigBlueButton kalbos vertimus.
bbb.oldlocalewindow.reminder2 = Prašome išvalyti naršyklės talpyklą ir bandyti dar kartą.
bbb.oldlocalewindow.windowTitle = Įspėjimas: Seni kalbų vertimai
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
bbb.micSettings.speakers.header = Testuoti garsiakalbius
bbb.micSettings.microphone.header = Bandyti mikrofoną
bbb.micSettings.playSound = Testuoti garsiakalbius
bbb.micSettings.playSound.toolTip = Groti muziką, kad testuoti Jūsų garsiakalbius
bbb.micSettings.hearFromHeadset = Jūs turėtumėte išgirsti garsą per ausines, o ne per kompiuterio garsiakalbius.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
bbb.micSettings.echoTestAudioYes = Taip
bbb.micSettings.echoTestAudioNo = Ne
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = Tikrinti arba pakeisti mikrofoną
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = Atšaukti
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
bbb.micSettings.cancel.toolTip = Atšaukti prisijungimą prie garso konferencijos
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Pagalba
bbb.mainToolbar.logoutBtn = Atsijungti
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Pasirinkti kalbą
bbb.mainToolbar.settingsBtn = Nustatymai
bbb.mainToolbar.settingsBtn.toolTip = Atidaryti nustatymus
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
bbb.window.closeBtn.toolTip = Uždaryti
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
bbb.users.title = Vartotojai{0} {1}
-bbb.users.titleBar = Users Window title bar
+bbb.users.titleBar =
bbb.users.quickLink.label = Vartotojų langas
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
bbb.users.settings.buttonTooltip = Nustatymai
-bbb.users.settings.audioSettings = Audio Test
+bbb.users.settings.audioSettings =
bbb.users.settings.webcamSettings = Vaizdo kameros nustatymai
bbb.users.settings.muteAll = Nutildyti visus dalyvius
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
+bbb.users.settings.muteAllExcept =
bbb.users.settings.unmuteAll = Įjungti garsą visiems vartotojams
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
bbb.users.pushToMute.toolTip = Nutildyti save
-bbb.users.muteMeBtnTxt.talk = Unmute
+bbb.users.muteMeBtnTxt.talk =
bbb.users.muteMeBtnTxt.mute = Nutildyti
bbb.users.muteMeBtnTxt.muted = Nutildytas
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Dalyvių sąrašas. Naudokite rodyklių klavišus, kad naviguoti.
bbb.users.usersGrid.nameItemRenderer = Vardas
bbb.users.usersGrid.nameItemRenderer.youIdentifier = Jūs
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
bbb.users.usersGrid.statusItemRenderer.moderator = Moderatorius
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
bbb.users.usersGrid.mediaItemRenderer.micOff = Išjungti mikrofoną
bbb.users.usersGrid.mediaItemRenderer.micOn = Įjungti mikrofoną
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentacija
bbb.presentation.titleWithPres = Prezentacija: {0}
bbb.presentation.quickLink.label = Pristatymo langas
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Buvęs puslapis.
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
+bbb.presentation.btnSlideNum.accessibilityName =
bbb.presentation.btnSlideNum.toolTip = Pažymėti skaidrę
bbb.presentation.forwardBtn.toolTip = Sekantis puslapis
bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
@@ -255,486 +257,494 @@ bbb.presentation.uploadcomplete = Įkėlimas baigtas. Prašome palaukti, vyksta
bbb.presentation.uploaded = įkeltas.
bbb.presentation.document.supported = Įkeltas dokumentas yra tinkamas.
bbb.presentation.document.converted = Sėkmingai konvertuotas Office dokumentas.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Klaida: Susisiekite su administratoriumi.
bbb.presentation.error.security = Apsaugos klaida: Susisiekite su administratoriumi.
bbb.presentation.error.convert.notsupported = Klaida: įkelto dokumento tipas yra nepalaikomas.
bbb.presentation.error.convert.nbpage = Klaida: Nepavyko nustati įkelto dokumento puslapių skaičiaus.
bbb.presentation.error.convert.maxnbpagereach = Klaida: įkeltas dokumentas turi per daug puslapių.
bbb.presentation.converted = Konvertuojamas {0} iš {1} puslapių.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = Prezentacijos failas
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
bbb.presentation.uploadwindow.excel = EXCEL
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
bbb.presentation.uploadwindow.image = Paveikslėlis
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
bbb.fileupload.title = Pridėti failus į Jūsų pristatymą
-bbb.fileupload.lblFileName.defaultText = No file selected
+bbb.fileupload.lblFileName.defaultText =
bbb.fileupload.selectBtn.label = Pažymėti failą
bbb.fileupload.selectBtn.toolTip = Surasti failą
bbb.fileupload.uploadBtn = Įkelti
bbb.fileupload.uploadBtn.toolTip = Įkelti failą
bbb.fileupload.deleteBtn.toolTip = Ištrinti prezentaciją
bbb.fileupload.showBtn = Parodyti
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Parodyti prezentaciją
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Kuriama..
bbb.fileupload.progBarLbl = Progresas:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Pokalbiai
bbb.chat.quickLink.label = Pokalbių langas
bbb.chat.cmpColorPicker.toolTip = Teksto spalva
-bbb.chat.input.accessibilityName = Chat Message Editing Field
+bbb.chat.input.accessibilityName =
bbb.chat.sendBtn.toolTip = Siųsti žinutę
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopijuoti visą tekstą
bbb.chat.publicChatUsername = Visiems
bbb.chat.optionsTabName = Parinktys
bbb.chat.privateChatSelect = Pasirinkite asmenį kalbėtis privačiai
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
bbb.chat.closeBtn.accessibilityName = Uždaryti pokalbių langą
bbb.chat.chatTabs.accessibleNotice = Naujos žinutės šioje kortelėje.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Pakeisti vaizdo kamerą
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
bbb.publishVideo.startPublishBtn.labelText = Pradėti bendrinti
bbb.publishVideo.startPublishBtn.toolTip = Pradėti vaizdo transliaciją
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Internetinės kameros
bbb.videodock.quickLink.label = Interneto kamerų langas
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
bbb.video.publish.hint.noCamera = Nėra galimos kameros
bbb.video.publish.hint.cantOpenCamera = Nepavyko atidaryti Jūsų kameros
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
bbb.video.publish.closeBtn.label = Atšaukti
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Pieštukas
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
+bbb.highlighter.toolbar.pencil.accessibilityName =
bbb.highlighter.toolbar.ellipse = Apskritimas
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
+bbb.highlighter.toolbar.ellipse.accessibilityName =
bbb.highlighter.toolbar.rectangle = Stačiakampis
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
bbb.highlighter.toolbar.color = Pasirinkti spalvą
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = Gerai
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Patvirtinti atsijungimą
bbb.logout.confirm.message = Ar Jūs tikras, kad norite atsijungti?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Taip
bbb.logout.confirm.no = Ne
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
bbb.notes.cmpColorPicker.toolTip = Teksto spalva
bbb.notes.saveBtn = Išsaugoti
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash versijos klaida
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
bbb.settings.warning.label = Įspėjimas
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Trikampis
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
ltbcustom.bbb.highlighter.toolbar.line = Linija
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
ltbcustom.bbb.highlighter.toolbar.text = Tekstas
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Teksto spalva
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Šrifto dydis
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
+bbb.shortcutkey.general.minimize.function =
bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
+bbb.shortcutkey.users.muteme.function =
bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
+bbb.shortcutkey.chat.chatinput.function =
bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
+bbb.shortcutkey.present.focusslide.function =
bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.whiteboard.undo.function =
bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
+bbb.shortcutkey.focus.users.function =
bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
+bbb.shortcutkey.focus.video.function =
bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
+bbb.shortcutkey.focus.presentation.function =
bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
+bbb.shortcutkey.share.desktop.function =
bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.webcam.function =
bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
+bbb.shortcutkey.shortcutWindow.function =
bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
+bbb.shortcutkey.logout.function =
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Pakelti ranką
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Įkelti pateiktį
bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
+bbb.shortcutkey.present.previous.function =
bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
+bbb.shortcutkey.present.select.function =
bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
+bbb.shortcutkey.present.next.function =
bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
+bbb.shortcutkey.users.mute.function =
bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
+bbb.shortcutkey.users.muteall.function =
bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
+bbb.shortcutkey.chat.changeColour.function =
bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.explanation.function =
bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
+bbb.shortcutkey.chat.chatbox.advance.function =
bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
+bbb.shortcutkey.chat.chatbox.goback.function =
bbb.shortcutkey.chat.chatbox.repeat = 32
bbb.shortcutkey.chat.chatbox.repeat.function = Kartoti dabartinę žinutę
bbb.shortcutkey.chat.chatbox.golatest = 39
@@ -744,40 +754,41 @@ bbb.shortcutkey.chat.chatbox.gofirst.function = Pereiti prie pirmos žinutės
bbb.shortcutkey.chat.chatbox.goread = 75
bbb.shortcutkey.chat.chatbox.goread.function = Pereiti prie naujausios žinutės, kurią perskaitėte
bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = Skelbti
bbb.polling.closeButton.label = Uždaryti
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = Taip
bbb.polling.answer.No = Ne
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Pradėti bendrinti
bbb.publishVideo.changeCameraBtn.labelText = Pakeisti vaizdo kamerą
bbb.accessibility.alerts.madePresenter = Jūs dabar esate Pranešėjas.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madeViewer =
bbb.shortcutkey.specialKeys.space = Tarpo klavišas
bbb.shortcutkey.specialKeys.left = Rodyklė kairėn
@@ -787,117 +798,74 @@ bbb.shortcutkey.specialKeys.down = Rodyklė žemyn
bbb.shortcutkey.specialKeys.plus = Plius
bbb.shortcutkey.specialKeys.minus = Minus
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = Atšaukti
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/lv_LV/bbbResources.properties b/bigbluebutton-client/locale/lv_LV/bbbResources.properties
index 0c069d4b8408..070037d9c2ad 100644
--- a/bigbluebutton-client/locale/lv_LV/bbbResources.properties
+++ b/bigbluebutton-client/locale/lv_LV/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Pievienojas serverim
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Atvainojiet, pieslēgties serverim neizdevās.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Atvērt logus
@@ -10,16 +10,16 @@ bbb.mainshell.resetLayoutBtn.toolTip = Atiestatīt izkārtojumu
bbb.mainshell.notification.tunnelling = Tunelēšana
bbb.mainshell.notification.webrtc = WebRTC Audio
bbb.mainshell.fullscreenBtn.toolTip = Atvērt pilnekrānā
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Iespējams, ka tulkojums ir novecojis.
bbb.oldlocalewindow.reminder2 = Iztīriet pārlūka kešatmiņu un mēģiniet vēlreiz.
bbb.oldlocalewindow.windowTitle = Brīdinājums: Tulkojums ir novecojis.
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = Savienojas
bbb.micSettings.webrtc.transferring = Pārcelt
bbb.micSettings.webrtc.endingecho = Pievienojies Audio
bbb.micSettings.webrtc.endedecho = Eho tests pabeigts.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox mikrofona atļaujas
bbb.micPermissions.firefox.message = Spied 'Allow', lai atļautu Firefox pārlūkā izmantot tavu mikrofonu.
bbb.micPermissions.chrome.title = Chrome mikrofona atļaujas
@@ -100,7 +101,7 @@ bbb.inactivityWarning.cancel = Atcelt
bbb.mainToolbar.helpBtn = Palīdzība
bbb.mainToolbar.logoutBtn = Iziet
bbb.mainToolbar.logoutBtn.toolTip = Iziet
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Izvēlies valodu
bbb.mainToolbar.settingsBtn = Uzstādījumi
bbb.mainToolbar.settingsBtn.toolTip = Atvērt uzstādījumus
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Šo sesiju nav iespējams ierakst
bbb.mainToolbar.recordBtn.confirm.title = Apstiprināt ierakstīšanu
bbb.mainToolbar.recordBtn.confirm.message.start = Vai esi pārliecināts, ka vēlies ierakstīt šo sesiju?
bbb.mainToolbar.recordBtn.confirm.message.stop = Vai esi pārliecināts, ka vēlies pārtraukt sesijas ierakstīšanu?
-bbb.mainToolbar.recordBtn..notification.title = Ieraksta notifikācijas
-bbb.mainToolbar.recordBtn..notification.message1 = Tu vari ierakstīt šo sesiju.
-bbb.mainToolbar.recordBtn..notification.message2 = Spied Sākt/Beigt ieraksta pogu, lai sāktu sesijas ieraksta palaišanu/pārtraukšanu.
+bbb.mainToolbar.recordBtn.notification.title = Ieraksta notifikācijas
+bbb.mainToolbar.recordBtn.notification.message1 = Tu vari ierakstīt šo sesiju.
+bbb.mainToolbar.recordBtn.notification.message2 = Spied Sākt/Beigt ieraksta pogu, lai sāktu sesijas ieraksta palaišanu/pārtraukšanu.
bbb.mainToolbar.recordingLabel.recording = (Ieraksta)
bbb.mainToolbar.recordingLabel.notRecording = Nenotiek ieraksts
bbb.waitWindow.waitMessage.message = Tu esi viesis, lūdzu sagaidi moderatora apstiprinājumu
@@ -214,7 +215,7 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Pieslēgt skaņu {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Atslēgt skaņu {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Slēgt {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Atslēgt {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Izraidīt {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Dalīties ar webkameru
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofons izslēgts
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofons ieslēgts
@@ -246,6 +247,7 @@ bbb.presentation.fitToWidth.toolTip = Pielāgot prezentāciju platumam
bbb.presentation.fitToPage.toolTip = Pielāgot prezentāciju lapas izmēram
bbb.presentation.uploadPresBtn.toolTip = Augšupielādēt prezentācij
bbb.presentation.downloadPresBtn.toolTip = Lejupielādēt prezentācijas
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Iepriekšējais slaids.
bbb.presentation.btnSlideNum.accessibilityName = Slaids {0} no {1}
bbb.presentation.btnSlideNum.toolTip = Izvēlēties slaidu
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Augšupielāde pabeigta. Uzgaidiet kamēr doku
bbb.presentation.uploaded = augšupielādēts.
bbb.presentation.document.supported = Augšupielādētais documents ir atbalstīts. Uzsākta konvertācija...
bbb.presentation.document.converted = Dokuments veiksmīgi konvertēts.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = Pirms turpiniet, konvērtējiet šo dokumentu kā PDF failu.
bbb.presentation.error.io = IO Kļūda: Sazinies ar administratoru.
bbb.presentation.error.security = Drošības kļūda: Sazinies ar administratoru.
@@ -283,18 +285,18 @@ bbb.fileupload.uploadBtn = Augšupielādēt
bbb.fileupload.uploadBtn.toolTip = Augšupielādēt failu
bbb.fileupload.deleteBtn.toolTip = Dzēst prezentāciju
bbb.fileupload.showBtn = Rādīt
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Rādīt prezentāciju
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Veido priekšskatījumus..
bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
+bbb.fileupload.fileFormatHint =
bbb.fileupload.letUserDownload = Iespējot prezentācijas lejupielādi
bbb.fileupload.letUserDownload.tooltip = Atzīmē šeit, vai vēlies atļaut lietotājiem lejupielādēt tavu prezentāciju
bbb.filedownload.title = Lejupielādēt prezentācijas
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
bbb.filedownload.fileLbl = Izvēlies failu lejupielādei:
bbb.filedownload.downloadBtn = Lejupielādēt
bbb.filedownload.downloadBtn.toolTip = Lejupielādē prezentāciju
@@ -309,6 +311,7 @@ bbb.chat.saveBtn.toolTip = Saglabāt čatu
bbb.chat.saveBtn.accessibilityName = Saglabāt čatu failā
bbb.chat.saveBtn.label = Saglabāt
bbb.chat.save.complete = Čats veiksmīgi saglabāts
+bbb.chat.save.ioerror =
bbb.chat.save.filename = publiskais čats
bbb.chat.copyBtn.toolTip = Kopēt čatu
bbb.chat.copyBtn.accessibilityName = Kopēt čatu savā kešatmiņā
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Aizvērt webkameras uzstādījuma dialog
bbb.video.publish.closeBtn.label = Atcelt
bbb.video.publish.titleBar = Publicēt webkameras logu
bbb.video.streamClose.toolTip = Aizvērt straumēšanu: {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = Darbvirsmas pārraide: Prezentētāja skats
bbb.screensharePublish.pause.tooltip = Pauzēt ekrāna raidīšanu
bbb.screensharePublish.pause.label = Pauzēt
@@ -446,6 +450,7 @@ bbb.toolbar.deskshare.toolTip.stop = Pārtraukt ekrāna rādīšanu
bbb.toolbar.sharednotes.toolTip = Atvērt kopīgos pierakstus
bbb.toolbar.video.toolTip.start = Raidīt ar webkameru
bbb.toolbar.video.toolTip.stop = Pārtraukt raidīt ar webkameru
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Pievienot pielāgotu izkārtojumu sarakstam
bbb.layout.overwriteLayoutName.title = Pārrakstīšanas izkārtojums
bbb.layout.overwriteLayoutName.text = Šis vārds jau tiek izmantots. Vai vēlaties to pārrakstīt?
@@ -459,7 +464,10 @@ bbb.layout.combo.custom = * Pielāgotais izkārtojums
bbb.layout.combo.customName = Pielāgots izkārtojums
bbb.layout.combo.remote = Attālināti
bbb.layout.window.name = Izkārtojuma nosaukums
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Izkārtojumi ir veiksmīgi saglabāti
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Izkārtojumi ir veiksmīgi ielādēti
bbb.layout.load.failed = Nav iespējāms ielādēt izkārtojumus
bbb.layout.sync = Tavs izkārtojums nosūtīts visiem dalībniekiem
@@ -468,7 +476,7 @@ bbb.layout.name.closedcaption = Slēgtais Apraksts
bbb.layout.name.videochat = Video čats
bbb.layout.name.webcamsfocus = Webkameras sapulce
bbb.layout.name.presentfocus = Prezentācijas sapulce
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Lekcijas asistēšana
bbb.layout.name.lecture = Lekcija
bbb.layout.name.sharednotes = Kopīgotie pieraksti
@@ -493,7 +501,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Tāfeles marķiera krāsa
bbb.highlighter.toolbar.thickness = Mainīt biezumu
bbb.highlighter.toolbar.thickness.accessibilityName = Tāfeles zīmēšanas biezums
bbb.highlighter.toolbar.multiuser = Multi-lietotāju zīmēšana
-bbb.logout.title = Iziet
bbb.logout.button.label = OK
bbb.logout.appshutdown = Servera aplikācija ir izslēgta
bbb.logout.asyncerror = Konstatēta sinhronizācijas kļūda
@@ -505,9 +512,11 @@ bbb.logout.unknown = Tava klienta savienojums ar serveri ir zudis
bbb.logout.guestkickedout = Moderators neļaut tev pievienoties šai sapulcei
bbb.logout.usercommand = Tu esi izgājis no konferences
bbb.logour.breakoutRoomClose = Tavs pārlūks logs tiks aizvērts
-bbb.logout.ejectedFromMeeting = Moderators ir izraidījis Tevi ārā no šīs sapulces.
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Ja iziešana no sesijas notika kļūdas pēc, spied uz zemāk redzamas pogas un pievienojies konferencei atpakaļ
bbb.logout.refresh.label = Pievienoties atkārtoti
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
bbb.settings.title = Uzstādījumi
bbb.settings.ok = OK
bbb.settings.cancel = Atcelt
@@ -532,32 +541,33 @@ bbb.notes.saveBtn = Saglabāt
bbb.notes.saveBtn.toolTip = Saglabāt pierakstu
bbb.sharedNotes.title = Kopīgotie pieraksti
bbb.sharedNotes.quickLink.label = Kopīgo pierakstu logs
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
bbb.sharedNotes.typing.single = {0} raksta...
bbb.sharedNotes.typing.double = {0} un {1} raksta...
bbb.sharedNotes.typing.multiple = Vairāki cilvēki raksta...
bbb.sharedNotes.save.toolTip = Saglabāt piezīmes failā
bbb.sharedNotes.save.complete = Piezīmes tika veiksmīgi saglabātas
+bbb.sharedNotes.save.ioerror =
bbb.sharedNotes.save.htmlLabel = Formatēts teksts (.html)
bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
bbb.sharedNotes.undo.toolTip = Atcelt modifikāciju
bbb.sharedNotes.redo.toolTip = Atgriezt modifikāciju
bbb.sharedNotes.toolbar.toolTip = Teksta formatēšanas rīkjosla
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
bbb.sharedNotes.additionalNotes.closeWarning.title = Aizvērt kopīgos pierakstus
bbb.sharedNotes.additionalNotes.closeWarning.message = Šī darbība pilnībā izdzēsīs pierakstus visiem un tos nebūs iespējams atjaunot. Vai esi pārliecināts, ka vēlies aizvērt šos pierakstus?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Izvēlies Atļaut (Allow), lai izlecošie logi strādātu un varētu nodrošināt darbavirsmas pārraidi
bbb.settings.deskshare.start = Pārbaudīt darbavirsmas pārraidi
bbb.settings.voice.volume = Mikrofona aktivitāte
@@ -568,7 +578,7 @@ bbb.settings.flash.label = Flash versijas kļūda
bbb.settings.flash.text = Tev ir instalēta Flash versija {0} , bet Tev jābūt instalētai jaunākajai versijai {1}, lai BigBlueButton darbotos. Spied uz zemāk redzamās pogas, lai instalētu jaunāko Adobe Flash versiju.
bbb.settings.flash.command = Instalēt jaunāko Flash versiju
bbb.settings.isight.label = iSight webkameras kļūda
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Installēt Flash 10.2 RC2
bbb.settings.warning.label = Brīdinājums
bbb.settings.warning.close = Aizvērt šo brīdinājumu
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Pielāgot slaidus lapai
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Padarīt izvēlēto personu par prezentētāju
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Izraidīt izvēlēto personu no sanāksmes
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Atslēgt un pieslēgt skaņu izvēlētajai personai
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Publicēt
bbb.polling.closeButton.label = Aizvērt
bbb.polling.customPollOption.label = Pielāgota aptauja...
bbb.polling.pollModal.title = Dzīvās aptaujas rezultāti
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Ievadi aptaujas izvēlnes
bbb.polling.respondersLabel.novotes = Gaidām respondentu atbildes
bbb.polling.respondersLabel.text = {0} atbildējuši
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Piemērot aizslēgšanas uzstādījumus
bbb.lockSettings.cancel = Atcelt
bbb.lockSettings.cancel.toolTip = Aizvērt šo logu bez saglabāšanas
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Moderatora atslēgšana
bbb.lockSettings.privateChat = Privātais čats
bbb.lockSettings.publicChat = Publiskais čats
bbb.lockSettings.webcam = Webkamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofons
bbb.lockSettings.layout = Izkārtojums
bbb.lockSettings.title=Slēgt skatītājus
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Slēgt uzreiz pēc pievienošanās
bbb.users.breakout.breakoutRooms = Individuālās istabas
bbb.users.breakout.updateBreakoutRooms = Atjaunot Individuālās istabas
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = Atlikušais laiks individuālajās istabās
bbb.users.breakout.calculatingRemainingTime = Aprēķināt atlikušo laiku...
bbb.users.breakout.closing = Aizveras
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Istabas
bbb.users.breakout.roomsCombo.accessibilityName = Istabu skaits, ko nepieciešams izveidot
bbb.users.breakout.room = Istaba
-bbb.users.breakout.randomAssign = Sadalīt lietotājus pēc nejaušības principa
bbb.users.breakout.timeLimit = Laika ierobežojums
bbb.users.breakout.durationStepper.accessibilityName = Laika limits minūtēs
bbb.users.breakout.minutes = Minūtes
@@ -836,11 +850,11 @@ bbb.users.breakout.closeAllRooms = Aizvērt visas individuālās istabas
bbb.users.breakout.insufficientUsers = Nepietiekams lietotāju skaits. Tev nepieciešams ievietot vismaz vienu lietotāju katrā individuālajā istabā.
bbb.users.breakout.confirm = Pievienoties individuālajai istabai
bbb.users.breakout.invited = Tu esi uzaicināts pievienoties Individuālajā istabā
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
+bbb.users.breakout.accept =
bbb.users.breakout.joinSession = Pievienoties sesijai
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
bbb.users.breakout.youareinroom = Tu esi individuālajā istabā {0}
bbb.users.roomsGrid.room = Istaba
bbb.users.roomsGrid.users = Lietotāji
@@ -850,54 +864,8 @@ bbb.users.roomsGrid.join = Pievienoties
bbb.users.roomsGrid.noUsers = Šajā istabā nav neviena lietotāja
bbb.langSelector.default=Valoda pēc noklusējama
-bbb.langSelector.ar=Arābu
-bbb.langSelector.az_AZ=Azerbaidžānu
-bbb.langSelector.eu_EU=Baski
-bbb.langSelector.bn_BN=Bengāļu
-bbb.langSelector.bg_BG=Bulgāru
-bbb.langSelector.ca_ES=Katalāniešu
-bbb.langSelector.zh_CN=Ķīniešu (vienkāršotā)
-bbb.langSelector.zh_TW=Ķīniešu (tradicionālais)
-bbb.langSelector.hr_HR=Horvātu
-bbb.langSelector.cs_CZ=Čehu
-bbb.langSelector.da_DK=Dāņu
-bbb.langSelector.nl_NL=Holandiešu
-bbb.langSelector.en_US=Angļu
-bbb.langSelector.et_EE=Igauņu
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Somu
-bbb.langSelector.fr_FR=Franču
-bbb.langSelector.fr_CA=Franču (Kanāda)
-bbb.langSelector.ff_SN=Fula
-bbb.langSelector.de_DE=Vāciski
-bbb.langSelector.el_GR=Grieķu
-bbb.langSelector.he_IL=Ebrejiešu
-bbb.langSelector.hu_HU=Ungāru
-bbb.langSelector.id_ID=Indonēziešu
-bbb.langSelector.it_IT=Itāļu
-bbb.langSelector.ja_JP=Japāņu
-bbb.langSelector.ko_KR=Korejiešu
-bbb.langSelector.lv_LV=Latviešu
-bbb.langSelector.lt_LT=Lietuva
-bbb.langSelector.mn_MN=Mongoļu
-bbb.langSelector.ne_NE=Nepāļu
-bbb.langSelector.no_NO=Norvēģu
-bbb.langSelector.pl_PL=Poļu
-bbb.langSelector.pt_BR=Portugāļu (brazīliski)
-bbb.langSelector.pt_PT=Portugāļu
-bbb.langSelector.ro_RO=Rumāņu
-bbb.langSelector.ru_RU=Krievu
-bbb.langSelector.sr_SR=Serbiešu (kirilicā)
-bbb.langSelector.sr_RS=Serbiešu (Latīniski)
-bbb.langSelector.si_LK=Singaliešu
-bbb.langSelector.sk_SK=Slovāku
-bbb.langSelector.sl_SL=Slovēņu
-bbb.langSelector.es_ES=Spāņu
-bbb.langSelector.es_LA=Spāņu (Dienvidamerika)
-bbb.langSelector.sv_SE=Zviedru
-bbb.langSelector.th_TH=Taizemiešu
-bbb.langSelector.tr_TR=Turku
-bbb.langSelector.uk_UA=Ukraiņu
-bbb.langSelector.vi_VN=Vjetnamiešu
-bbb.langSelector.cy_GB=Velsiešu
-bbb.langSelector.oc=Oksitāņu
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/mk/bbbResources.properties b/bigbluebutton-client/locale/mk/bbbResources.properties
index 2d4d4ab7ddb7..f85224120382 100644
--- a/bigbluebutton-client/locale/mk/bbbResources.properties
+++ b/bigbluebutton-client/locale/mk/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Поврзување со серверот
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/mk_MK/bbbResources.properties b/bigbluebutton-client/locale/mk_MK/bbbResources.properties
index e2a8294dc37a..6b9fb20ddf3c 100644
--- a/bigbluebutton-client/locale/mk_MK/bbbResources.properties
+++ b/bigbluebutton-client/locale/mk_MK/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = \nПоврзување со серверот
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Извинете, не можете да се поврзете со серверот.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Отвори прозорец за логови
bbb.mainshell.meetingNotFound = Не е пронајдена средба
bbb.mainshell.invalidAuthToken = Неправилен автентикациски токен
bbb.mainshell.resetLayoutBtn.toolTip = ресетирање на Подесувањето
bbb.mainshell.notification.tunnelling = Тунелирање
bbb.mainshell.notification.webrtc = WebRTC Аудио
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Вие можеби имате стар јазик за преведување на BigBlueButton.
bbb.oldlocalewindow.reminder2 = Ве молиме, исчистете го кешот на пребарувачот и обидете се повторно.
bbb.oldlocalewindow.windowTitle = Предупредување: Стар јазик за преведување
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Откажи
bbb.micSettings.connectingtoecho = Поврзување
bbb.micSettings.connectingtoecho.error = Ехо тест грешка: Ве молиме контактирајте го администраторот.
bbb.micSettings.cancel.toolTip = Откажете се од вклучување на аудио конференција
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Аудио поставки. Фокусот ќе остане во главниот прозорец додека прозорецот не се затвори.
bbb.micSettings.webrtc.title = WebRTC подршка
bbb.micSettings.webrtc.capableBrowser = Вашиот пребарувач подржува WebRTC
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Поврзување
bbb.micSettings.webrtc.transferring = Пренесување
bbb.micSettings.webrtc.endingecho = Приклучување на аудио
bbb.micSettings.webrtc.endedecho = Ехо тестот заврши.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox микрофон дозвола
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome микрофон дозвола
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Аудио предупредување
bbb.micWarning.joinBtn.label = Приклучете се во секој случај
bbb.micWarning.testAgain.label = Тест повторно
@@ -86,21 +87,21 @@ bbb.webrtcWarning.failedError.1007 = Грешка 1007: ICE неуспешен
bbb.webrtcWarning.failedError.1008 = Грешка 1008: Трансферот е неуспешен
bbb.webrtcWarning.failedError.1009 = Грешка 1009: Неможе да се пренеси АЖУРИРАЈ / ВКЛУЧИ серверската информација
bbb.webrtcWarning.failedError.1010 = Грешка 1010: ICE преговорот истече
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
+bbb.webrtcWarning.failedError.1011 =
bbb.webrtcWarning.failedError.unknown = Грешка {0}: Непознат код на грешка
bbb.webrtcWarning.failedError.mediamissing = Неможе да се добие вашиот микрофон за WebRTC повик
bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC ехо тестот заврши неочекувано
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Помош
bbb.mainToolbar.logoutBtn = Одјава
bbb.mainToolbar.logoutBtn.toolTip = Одјава
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Избери јазик
bbb.mainToolbar.settingsBtn = Поставувања
bbb.mainToolbar.settingsBtn.toolTip = Отвори Поставувања
@@ -110,34 +111,34 @@ bbb.mainToolbar.recordBtn.toolTip.start = Започни снимање
bbb.mainToolbar.recordBtn.toolTip.stop = Стопирај снимање
bbb.mainToolbar.recordBtn.toolTip.recording = Оваа сесија е снимена
bbb.mainToolbar.recordBtn.toolTip.notRecording = Оваа сесија не е снимена
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Потврди снимање
bbb.mainToolbar.recordBtn.confirm.message.start = Дали сте сигурни дека сакате да започнете снимање на сесијата?
bbb.mainToolbar.recordBtn.confirm.message.stop = Дали сте сигурни дека сакате да го стопирате снимањете на сесијата?
-bbb.mainToolbar.recordBtn..notification.title = Известување за снимање
-bbb.mainToolbar.recordBtn..notification.message1 = Вие можете да ја снимите оваа средба.
-bbb.mainToolbar.recordBtn..notification.message2 = Вие мора да кликнете Старт/Стоп на копчето за снимање во насловната лента во започни/заврши снимање.
+bbb.mainToolbar.recordBtn.notification.title = Известување за снимање
+bbb.mainToolbar.recordBtn.notification.message1 = Вие можете да ја снимите оваа средба.
+bbb.mainToolbar.recordBtn.notification.message2 = Вие мора да кликнете Старт/Стоп на копчето за снимање во насловната лента во започни/заврши снимање.
bbb.mainToolbar.recordingLabel.recording = (Снимање)
bbb.mainToolbar.recordingLabel.notRecording = Не Снимај
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Конфигурациско известување
bbb.clientstatus.notification = Непрочитани известувања
-bbb.clientstatus.close = Close
+bbb.clientstatus.close =
bbb.clientstatus.tunneling.title = Firewall
bbb.clientstatus.tunneling.message = Firewall спречува вашиот клиент директно да се поврзи на порта 1935 до далечинскиот сервер. Препорачано е приклучување на помала рестриктивна мрежа за постабилна конекција.
bbb.clientstatus.browser.title = Верзија на пребарувач
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Вашиот пребарувач ({0}) не
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Вашиот Flash Player приклучок ({0}) е изминат. Препорачано е ажурирање до најновата верзија.
bbb.clientstatus.webrtc.title = Аудио
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Препорачано е користење на Firefox или Chrome за подобро аудио.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Намали
bbb.window.maximizeRestoreBtn.toolTip = Зголеми
bbb.window.closeBtn.toolTip = Затвори
@@ -188,21 +189,21 @@ bbb.users.usersGrid.statusItemRenderer = Статусти
bbb.users.usersGrid.statusItemRenderer.changePresenter = Кликнете за да креирате презентер
bbb.users.usersGrid.statusItemRenderer.presenter = Презентер
bbb.users.usersGrid.statusItemRenderer.moderator = Модератор
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Гледач
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Делење на камера
bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Презентер.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Вклучете звук {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Исклучете звук {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Заклучи {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Отклучи {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Исфрли {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Делење на камера
bbb.users.usersGrid.mediaItemRenderer.micOff = Микрофон исклучен
bbb.users.usersGrid.mediaItemRenderer.micOn = Микрофон вклучен
bbb.users.usersGrid.mediaItemRenderer.noAudio = Не сте вклучени во аудио конференцијата
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Исчисти
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Презентација
bbb.presentation.titleWithPres = Презентација : {0}
bbb.presentation.quickLink.label = Презентациски прозорец
bbb.presentation.fitToWidth.toolTip = Прилагодете ја презентацијата со ширината
bbb.presentation.fitToPage.toolTip = Прилагодете ја презентацијата на страната
bbb.presentation.uploadPresBtn.toolTip = Прикачете презентација
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Претходен слајд
bbb.presentation.btnSlideNum.accessibilityName = Слајд {0} од {1}
bbb.presentation.btnSlideNum.toolTip = Селектирајте слајд
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Прикачувањето е успешно.
bbb.presentation.uploaded = Прикачено.
bbb.presentation.document.supported = Прикачувањето на документот е дозволено. Започнете со конвертирањето ...
bbb.presentation.document.converted = Успешно е конвертиран канцеларискиот документ.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Грешка: Ве молиме контактирајте го администраторот.
bbb.presentation.error.security = Безбедносна грешка: Ве молиме контактирајте го администраторот.
bbb.presentation.error.convert.notsupported = Грешка: Прикачениот документ е недозволен. Ве молиме прикачете компатибилен фајл.
@@ -283,70 +285,71 @@ bbb.fileupload.uploadBtn = Прикачете
bbb.fileupload.uploadBtn.toolTip = Прикачете го селектираниот фајл
bbb.fileupload.deleteBtn.toolTip = Избришете презентација
bbb.fileupload.showBtn = Приказ
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Прикажи презентација
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Генерирање на сликички
bbb.fileupload.progBarLbl = Напредување:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Разговор
bbb.chat.quickLink.label = Разговорен прозорец
bbb.chat.cmpColorPicker.toolTip = Боја на текст
bbb.chat.input.accessibilityName = Поле за едитирање на разговорните пораки
bbb.chat.sendBtn.toolTip = Испрати порака
bbb.chat.sendBtn.accessibilityName = Испрати чат порака
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Копирај го целиот текст
bbb.chat.publicChatUsername = Јавно
bbb.chat.optionsTabName = Опции
bbb.chat.privateChatSelect = Селектирајте личност за разговор со приватност
bbb.chat.private.userLeft = Корисникот е заминат
bbb.chat.private.userJoined = Корисникот се приклучи.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Селектирајте за да отворите приватен разговор
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Опции за разговор
bbb.chat.fontSize = Големина на фонт за порака
bbb.chat.cmbFontSize.toolTip = Селектирајте големина на фонт за порака
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Минимизирајте го прозорецот за пораки
bbb.chat.maximizeRestoreBtn.accessibilityName = Максимизирајте го прозорецот за пораки
bbb.chat.closeBtn.accessibilityName = Затворете го прозорецот за пораки
bbb.chat.chatTabs.accessibleNotice = Нови пораки во ова јазиче
bbb.chat.chatMessage.systemMessage = Систем
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Пораката е {0} карактер(и) подолга
bbb.publishVideo.changeCameraBtn.labelText = Промена на веб камера
bbb.publishVideo.changeCameraBtn.toolTip = Отворете го дијалог прозорецот за промента на веб камерата
bbb.publishVideo.cmbResolution.tooltip = Селектирајте ја резолуцијата на веб камерата
bbb.publishVideo.startPublishBtn.labelText = Започнете споделување
bbb.publishVideo.startPublishBtn.toolTip = Започнете споделување на веб камерата
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
+bbb.publishVideo.startPublishBtn.errorName =
bbb.webcamPermissions.chrome.title = Chrome веб камера дозвола
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Веб камери
bbb.videodock.quickLink.label = Прозорец за веб камера
bbb.video.minimizeBtn.accessibilityName = Минимизирајте го прозорецот за веб камера
@@ -366,90 +369,92 @@ bbb.video.publish.hint.publishing = Објавување ...
bbb.video.publish.closeBtn.accessName = Затворете го прозорецот за подесувања на веб камерата
bbb.video.publish.closeBtn.label = Откажи
bbb.video.publish.titleBar = Прозорец за објавување на веб камера
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Стопирајте го слушањето на конференцијата
bbb.toolbar.phone.toolTip.unmute = Започнете го слушањето на конференцијата
bbb.toolbar.phone.toolTip.nomic = Не е пронајден микрофон
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Споделете ја Вашата веб камера
bbb.toolbar.video.toolTip.stop = Стопирајте го споделувањето на Вашата веб камера
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Додадете сопствен распоред на листата
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Изменете го Вашиот распоред
bbb.layout.loadButton.toolTip = Превземете распореди од фајл
bbb.layout.saveButton.toolTip = Зачувај распореди во фајл
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Примени распоред
bbb.layout.combo.custom = * Сопствен распоред
bbb.layout.combo.customName = Сопствен распоред
bbb.layout.combo.remote = Далечинско
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Распоредите беа успешно зачувани
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Распоредите беа успешно превземени
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.load.failed =
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Стандарден распоред
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Видео разговор
bbb.layout.name.webcamsfocus = Веб камера средба
bbb.layout.name.presentfocus = Презентациска средба
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Асистент на предавање
bbb.layout.name.lecture = Предавање
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Молив
bbb.highlighter.toolbar.pencil.accessibilityName = Сменете курсор со молив
bbb.highlighter.toolbar.ellipse = Круг
@@ -492,33 +500,34 @@ bbb.highlighter.toolbar.color = Избери Боја
bbb.highlighter.toolbar.color.accessibilityName = Боја на маркер за цртање
bbb.highlighter.toolbar.thickness = Промени дебелина
bbb.highlighter.toolbar.thickness.accessibilityName = Дебелина на цртање на табла
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Одјавени
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = Ок
bbb.logout.appshutdown = Сервер апликацијата беше исклучена
bbb.logout.asyncerror = Се случи асинхрона грешка
bbb.logout.connectionclosed = Конекцијата до серверот е затворена
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Конекцијата до серверот е отфрлена
bbb.logout.invalidapp = red5 апликацијата не постои
bbb.logout.unknown = Вашиот клиент ја изгуби конекцијата со серверот
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Вие се одјавивте од конференцијата
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Ако оваа одјава беше неочекувана, кликнете на копчето подолу за да се конектирате повторно.
bbb.logout.refresh.label = Конектирајте се повторно
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Потврдете ја одјавата
bbb.logout.confirm.message = Дали сте сигурни дека сакате да се одјавите?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Да
bbb.logout.confirm.no = Не
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Детектирани се конекциски проблеми
bbb.connection.reconnecting=Повторна конекција
bbb.connection.reestablished=Конекцијата е стабилизирана
@@ -530,59 +539,60 @@ bbb.notes.title = Белешки
bbb.notes.cmpColorPicker.toolTip = Боја на текст
bbb.notes.saveBtn = Зачувај
bbb.notes.saveBtn.toolTip = Зачувај забелешка
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Одберете "Дозволи" на предупредувањата што се појавуваат за да се провери дали споделувањето на работната површина работи правилно за Вас
bbb.settings.deskshare.start = Проверете го споделувањето на работната површина
bbb.settings.voice.volume = Активност на микрофон
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Грешка на Флеш верзија
bbb.settings.flash.text = Имате Флеш {0} инсталирано, но Ви е потребна барем {1} верзијата за користење на споделувањето на работна површина. Копчето подолу ќе ја инсталира најновата Adobe Flash верзија
bbb.settings.flash.command = Инсталирајте ја најновата верзија на Флеш
bbb.settings.isight.label = iSight грешка на веб камерата
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Инсталирајте Флеш 10.2 RC2
bbb.settings.warning.label = Предупредување
bbb.settings.warning.close = Затворете го предупредувањето
bbb.settings.noissues = Нема пронајдено исклучителни грешки
bbb.settings.instructions = Прифатете го предупредувањето на Flash кое Ве прашува за дозвола за веб камера. Ако излезот се совпаѓа со тоа што е очекувано, Вашиот пребаруват е поставен коректно. Други потенцијални грешки се подолу.Прегледајте ги за да се најде можно решение.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Триаголник
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Сменете го курсот на белата табла со триаголник
ltbcustom.bbb.highlighter.toolbar.line = Линија
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Текст
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Сменете го курсот на белата табла со текст
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Боја на текст
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Големина на фонт
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Подготвено
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Вие сте позицион
bbb.accessibility.chat.chatBox.navigatedLatest = Вие сте позиционирани до последната порака
bbb.accessibility.chat.chatBox.navigatedLatestRead = Вие сте позиционирани на најчесто читаната порака
bbb.accessibility.chat.chatwindow.input = Влез за разговор
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Ве молиме користете ги копчињта со стрелки за да се позиционирате низ разговорните пораки
bbb.accessibility.notes.notesview.input = Влез за забелешки
bbb.shortcuthelp.title = Кратенки
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Минимизирајте го прозорецот со кратенка за помош
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Максимизирајте го прозорецот со кратенка за помош
bbb.shortcuthelp.closeBtn.accessibilityName = Затворете го прозорецот со кратенка за помош
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Глобални кратенки
bbb.shortcuthelp.dropdown.presentation = Презентациски кратенки
bbb.shortcuthelp.dropdown.chat = Разговорни кратенки
bbb.shortcuthelp.dropdown.users = Кориснички кратенки
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Кратенка
bbb.shortcuthelp.headers.function = Функција
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Минимизирајте го се
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Максимизирајте го сегашниот прозорец
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Фокусирајте се надвор од Flash прозорецот
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Вклучете и исклучете звук на Вашиот микрофон
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Преместете го фокусот на презентацискиот прозорец
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Преместете го фокусот на разговорниот прозорец
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Отворете споделувачки прозорец
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Одјавете се од оваа средб
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Подигнете рака
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Прикачете презентација
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Претходниот слајд
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Следниот слајд
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Вклопете ги слајдовите со ширината
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Вклопете ги слајдовите со страната
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Направете ја селектираната личност презентер
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Исфрлете ја селектираната личност од средбата
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Вклучи или исклучи звук на селектираната личност
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Вклучи или исклучи звук на сите корисници
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Исклучи звук на сите освен на презентерот
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Фокусирај на јазичето за разговор
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Фокусирај на избирачот за боја на фонт
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Испрати чат порака
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = За навигација на пораките, Вие мора да се фокусирате на разговорниот прозорец
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Позиционирај на н
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Привремена кратенка за дебагирање
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Направете анкета
bbb.polling.startButton.label = Направете анкета
bbb.polling.publishButton.label = Постирај
bbb.polling.closeButton.label = Затвори
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Моментални резултати од анкета
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Внесете анкетирачки избори
bbb.polling.respondersLabel.novotes = Чекање на одговори
bbb.polling.respondersLabel.text = {0} корисници одговориле
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Затвори ги сите ви
bbb.users.settings.lockAll = Заклучи ги сите корисници
bbb.users.settings.lockAllExcept = Закличи ги корисниците освен презентерот
bbb.users.settings.lockSettings = Заклучи ги гледачите ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Отклучи ги сите гледачи
bbb.users.settings.roomIsLocked = Стандардно заклучен
bbb.users.settings.roomIsMuted = Стандардно исклучен звук
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Примени ги подесувањата з
bbb.lockSettings.cancel = Откажи
bbb.lockSettings.cancel.toolTip = Затвори го прозорецот без зачувувања
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Модераторско заклучување
bbb.lockSettings.privateChat = Приватен Разговор
bbb.lockSettings.publicChat = Јавен разговор
bbb.lockSettings.webcam = Веб камера
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Микрофон
bbb.lockSettings.layout = Рапоред
bbb.lockSettings.title=Заклучи ги гледачите
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Функција
bbb.lockSettings.locked=Заклучен
bbb.lockSettings.lockOnJoin=Заклучување на Приклучување
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ml_IN/bbbResources.properties b/bigbluebutton-client/locale/ml_IN/bbbResources.properties
index 9b14c1d48344..a2823b10c780 100644
--- a/bigbluebutton-client/locale/ml_IN/bbbResources.properties
+++ b/bigbluebutton-client/locale/ml_IN/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = സെര്വര് കണക്ട് ചെയ്യപ്പെടുന്നു
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = ക്ഷമിക്കണം, സെര്വര് കണക്ട് ചെയ്യാന് സാദിക്കുന്നില്ല
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = ലോഗ് വിന്ഡോ തുറക്കുന്നു
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = പുനക്രമീകരീകരിക്കാം
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = പരീക്ഷണ ശബ്ദം ശ്രവിക്കാം
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
+bbb.micSettings.playSound.toolTip =
bbb.micSettings.hearFromHeadset = കമ്പ്യൂട്ടര് സ്പീക്കര്നു പകരം ഹെഡ്സെറ്റില് ശബ്ദം കേള്കേണ്ടതുണ്ട്
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = മൈക്രോഫോണ് മാറ്റാം
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = സംസാരത്തില് ചേരാം
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = സഹായം
bbb.mainToolbar.logoutBtn = ലോഗ്ഔട്ട്
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
bbb.mainToolbar.settingsBtn = സെറ്റിംഗ്സ്
bbb.mainToolbar.settingsBtn.toolTip = സെറ്റിംഗ്സ് തുറക്കാം
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = അവതരണം
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = കാന്സെല് ചെയ്യാം
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/mn_MN/bbbResources.properties b/bigbluebutton-client/locale/mn_MN/bbbResources.properties
index fc7b38df9e1e..4b379a7b763e 100644
--- a/bigbluebutton-client/locale/mn_MN/bbbResources.properties
+++ b/bigbluebutton-client/locale/mn_MN/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Сервер луу холбогдож байна.
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Уучилаарай, бид сервер лүү холбогдож чадсангүй
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Лог цонхийг нээх
bbb.mainshell.meetingNotFound = Уулзалт олдсонгүй
bbb.mainshell.invalidAuthToken = Нууцлалын түлхүүр буруу байна
bbb.mainshell.resetLayoutBtn.toolTip = Байршилыг шинэчилэх
bbb.mainshell.notification.tunnelling = Холбож байна
bbb.mainshell.notification.webrtc = WebRTC Дуу
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Таны толь бичиг хуучирсан байна
bbb.oldlocalewindow.reminder2 = хөтөчийнхөө каш - ийг цэвэрлэнэ үү
bbb.oldlocalewindow.windowTitle = Анхааруулга: Хуучирсан толь байна
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Цуцлах
bbb.micSettings.connectingtoecho = Холбогдож байна
bbb.micSettings.connectingtoecho.error = Цуурай Шалгалтын Алдаа: Админд хандана уу.
bbb.micSettings.cancel.toolTip = Дууг хаах
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Дууны тохиргоо. Энэхүү цонхыг хаах хүртэл энэ нь байсаар байна.
bbb.micSettings.webrtc.title = WebRTC Дэмжлэг
bbb.micSettings.webrtc.capableBrowser = Таны веб хөтөч WebRTC.дэмжиж байна
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Холбогдож байна
bbb.micSettings.webrtc.transferring = Дамжуулах
bbb.micSettings.webrtc.endingecho = Аудио идэвхижүүлж байна
bbb.micSettings.webrtc.endedecho = Цуурай шалгалт дууслаа
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox микрофоны эрх
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome микрофоны эрх
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Дууны анхааруулга
bbb.micWarning.joinBtn.label = Ямар ч тохиолдолд оролцох
bbb.micWarning.testAgain.label = Дахин шалгах
@@ -86,21 +87,21 @@ bbb.webrtcWarning.failedError.1007 = Алдаа 1007: ICE negotiation алдла
bbb.webrtcWarning.failedError.1008 = Алдаа 1008: Дамжуулж чадсангүй
bbb.webrtcWarning.failedError.1009 = Алдаа 1009: STUN/TURN серверийн мэдээллийг авч чадсангүй
bbb.webrtcWarning.failedError.1010 = Алдаа 1010: ICE дамжуулах хугацаа дууссан
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
+bbb.webrtcWarning.failedError.1011 =
bbb.webrtcWarning.failedError.unknown = Алдаа {0}: Үл мэдэгдэх алдааны код
bbb.webrtcWarning.failedError.mediamissing = WebRTC залгахын тулд таны микрофоныг авч чадсангүй
bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC Цуурай шалгалт гэнэт зогслоо
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Тусламж
bbb.mainToolbar.logoutBtn = Гарах
bbb.mainToolbar.logoutBtn.toolTip = Гарах
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Хэлээ сонгох
bbb.mainToolbar.settingsBtn = Тохиргоо
bbb.mainToolbar.settingsBtn.toolTip = Тохиргоог нээх
@@ -110,34 +111,34 @@ bbb.mainToolbar.recordBtn.toolTip.start = Бичлэгийг эхлүүлэх
bbb.mainToolbar.recordBtn.toolTip.stop = Бичлэгийг зогсоох
bbb.mainToolbar.recordBtn.toolTip.recording = Энэ хичээл бичэгдсэн
bbb.mainToolbar.recordBtn.toolTip.notRecording = Энэ хичээл бичигдээгүй
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Бичигдэж буйг баталгаажуулна уу
bbb.mainToolbar.recordBtn.confirm.message.start = Бичлэгийг эхлүүлэх үү?
bbb.mainToolbar.recordBtn.confirm.message.stop = Бичлэгийг зогсоох уу?
-bbb.mainToolbar.recordBtn..notification.title = Бичлэгийн мэдэгдэл
-bbb.mainToolbar.recordBtn..notification.message1 = Та энэ уулзалтыг бичиж болно
-bbb.mainToolbar.recordBtn..notification.message2 = Та бичлэг хийж эхлүүлэх/зогсоохын тулд дээр байгаа Бичлэг Эхлүүлэх/Зогсоох товчлуурыг дарах хэрэгтэй.
+bbb.mainToolbar.recordBtn.notification.title = Бичлэгийн мэдэгдэл
+bbb.mainToolbar.recordBtn.notification.message1 = Та энэ уулзалтыг бичиж болно
+bbb.mainToolbar.recordBtn.notification.message2 = Та бичлэг хийж эхлүүлэх/зогсоохын тулд дээр байгаа Бичлэг Эхлүүлэх/Зогсоох товчлуурыг дарах хэрэгтэй.
bbb.mainToolbar.recordingLabel.recording = (Бичиж байна)
bbb.mainToolbar.recordingLabel.notRecording = Бичихгүй байна
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Мэдэгдлүүдийн тохиргоо
bbb.clientstatus.notification = Уншаагүй мэдэгдэл
-bbb.clientstatus.close = Close
+bbb.clientstatus.close =
bbb.clientstatus.tunneling.title = Галт хана
bbb.clientstatus.tunneling.message = Галт хана сервер лүү холбогдох 1935 портыг хааж байна. Галт ханы тохиргоог янзлах эсвэл өөр сүлжээнээс холбогдож үзэхийг санал болгож байна
bbb.clientstatus.browser.title = Вэб хөтөчийн хувилбар
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Таны вэб хөтөч ({0}) шинэчл
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Таны Flash Player ({0}) шинэчлэгдээгүй байна. Сүүлийн хувилбарыг татахыг санал болгож байна.
bbb.clientstatus.webrtc.title = Дуу
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Дууны чанарыг сайн байлгахын тулд Firefox эсвэл Chrome ашиглахыг санал болгож байна.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Буулгах
bbb.window.maximizeRestoreBtn.toolTip = Өргөх
bbb.window.closeBtn.toolTip = Хаах
@@ -188,21 +189,21 @@ bbb.users.usersGrid.statusItemRenderer = Төлөв
bbb.users.usersGrid.statusItemRenderer.changePresenter = Хөтлөгч болгох
bbb.users.usersGrid.statusItemRenderer.presenter = Хөтлөгч
bbb.users.usersGrid.statusItemRenderer.moderator = Зохицуулагч
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Үзэгч
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Камераа хуваалцах
bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Илтгэгч үү
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Дуу нээгдсэн {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Дуу хаагдсан {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Түгжих {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Нээх {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Хасах {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Камерыг түгээж байна
bbb.users.usersGrid.mediaItemRenderer.micOff = Микрофон унтарсан
bbb.users.usersGrid.mediaItemRenderer.micOn = Микрофон асаалттай
bbb.users.usersGrid.mediaItemRenderer.noAudio = Аудиод холбогдоогүй байна
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Цэвэрлэх
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Танилцуулга файл
bbb.presentation.titleWithPres = Танилцуулга файл {0}
bbb.presentation.quickLink.label = Танилцуулга
bbb.presentation.fitToWidth.toolTip = Танилцуулгыг өргөнөөр багтаах
bbb.presentation.fitToPage.toolTip = Танилцуулгыг хуудсанд багтаах
bbb.presentation.uploadPresBtn.toolTip = Танилцуулга файл илгээх
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Өмнөх хуудас
bbb.presentation.btnSlideNum.accessibilityName = Нийт {1} слайдын {0}
bbb.presentation.btnSlideNum.toolTip = Хуудсаа сонгоно уу
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Илгээж дууслаа. Файлыг хө
bbb.presentation.uploaded = Илгээгдсэн
bbb.presentation.document.supported = Илгээгдсэн файл зөв байна. Хөрвүүлж эхэллээ...
bbb.presentation.document.converted = Оффис бичиг баримтыг хөрвүүлж дууслаа
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Оролт гаралтийн алдаа: систем админд хандана уу.
bbb.presentation.error.security = Нууцлалын алдаа: Системийн админд хандана уу
bbb.presentation.error.convert.notsupported = Алдаа: Таны илгээсэн файл буруу файл байна. Зөв файлыг илгээнэ үү
@@ -283,70 +285,71 @@ bbb.fileupload.uploadBtn = Илгээх
bbb.fileupload.uploadBtn.toolTip = Файл илгээх
bbb.fileupload.deleteBtn.toolTip = Танилцуулга устгах
bbb.fileupload.showBtn = Дүрслэх
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Танилцуулга -ийг үзүүлэх
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Зургийг бий болгож байна
bbb.fileupload.progBarLbl = Явц
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Чат
bbb.chat.quickLink.label = Чат
bbb.chat.cmpColorPicker.toolTip = Бичгийн өнгө
bbb.chat.input.accessibilityName = Зурвас бичих хэсэг
bbb.chat.sendBtn.toolTip = Захидал илгээх
bbb.chat.sendBtn.accessibilityName = Зурвас илгээх
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Бүх текстыг хуулах
bbb.chat.publicChatUsername = Бүгд
bbb.chat.optionsTabName = Тохиргоо
bbb.chat.privateChatSelect = Чатлах хүнээ сонгоно уу
bbb.chat.private.userLeft = Хэрэглэгч гарлаа
bbb.chat.private.userJoined = Хэрэглэгч холбогдлоо
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Харилцах хүнээ сонгоно уу
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Чат тохиргоо
bbb.chat.fontSize = Фонт хэмжээ
bbb.chat.cmbFontSize.toolTip = Фонт хэмжээ
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Зурвасын тавцанг буулгах
bbb.chat.maximizeRestoreBtn.accessibilityName = Зурвасын тавцанг өргөх
bbb.chat.closeBtn.accessibilityName = Зурвасын тавцанг хаах
bbb.chat.chatTabs.accessibleNotice = Шинэ зурвас
bbb.chat.chatMessage.systemMessage = Систем
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
bbb.publishVideo.changeCameraBtn.labelText = Камер солих
bbb.publishVideo.changeCameraBtn.toolTip = Камер тохиргоо хийх
bbb.publishVideo.cmbResolution.tooltip = Камерын хэмжээг тодорхойлно уу
bbb.publishVideo.startPublishBtn.labelText = Түгээж эхлэх
bbb.publishVideo.startPublishBtn.toolTip = Хуваалтыг эхлүүлэх
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
+bbb.publishVideo.startPublishBtn.errorName =
bbb.webcamPermissions.chrome.title = Chrome камерны эрх
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Камер тавцан
bbb.videodock.quickLink.label = Камерны цонх
bbb.video.minimizeBtn.accessibilityName = Камерны тавцанг буулгах
@@ -366,90 +369,92 @@ bbb.video.publish.hint.publishing = Нийтлэж байна
bbb.video.publish.closeBtn.accessName = Камер тохиргоо цонхыг хаах
bbb.video.publish.closeBtn.label = Цуцлах
bbb.video.publish.titleBar = Камер тавцанг түгээх
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Уулзалтыг сонсохоо болих
bbb.toolbar.phone.toolTip.unmute = Уулзалтыг сонсож эхлэх
bbb.toolbar.phone.toolTip.nomic = Микрофон байхгүй байна
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Камераа тараах
bbb.toolbar.video.toolTip.stop = Камер тараахыг зогсоох
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Өөрчилсөн байрлалыг лист рүү нэмэх
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Байрлалаа солих
bbb.layout.loadButton.toolTip = Байрлалыг файлаах унших
bbb.layout.saveButton.toolTip = Байрлалыг файлд хадгалах
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Байрлалыг идэвхжүүлэх
bbb.layout.combo.custom = * Өөрчилсөн байрлал
bbb.layout.combo.customName = Өөрчилсөн байрлал
bbb.layout.combo.remote = Удирдах
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Байрлалууд амжилттай хадгалагдлаа
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Байрлалууд амжилттай уншигдлаа
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.load.failed =
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Заямал байршил
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Видео чат
bbb.layout.name.webcamsfocus = Камертай уулзалт
bbb.layout.name.presentfocus = Танилцуулгатай уулзалт
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Илтгэгчийн туслах
bbb.layout.name.lecture = Илтгэгч
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Тодруулагч
bbb.highlighter.toolbar.pencil.accessibilityName = Курсорыг харандаа болгох
bbb.highlighter.toolbar.ellipse = Бөөрөнхий
@@ -492,33 +500,34 @@ bbb.highlighter.toolbar.color = Өнгөө сонгоно уу
bbb.highlighter.toolbar.color.accessibilityName = Өнгө сонгоно уу
bbb.highlighter.toolbar.thickness = Үе давхраа солих
bbb.highlighter.toolbar.thickness.accessibilityName = Үзэгний хэмжээ
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Гарсан
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = ОК
bbb.logout.appshutdown = Сервер програм унтарсан байна
bbb.logout.asyncerror = Дуу дүрсийг дамжуулах үед алдаа гарлаа
bbb.logout.connectionclosed = Сервер лүү холбогдох холболт хаагдлаа
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Серверийн холболт буцаагдлаа
bbb.logout.invalidapp = Ред5 про байхгүй байна
bbb.logout.unknown = Та серверээс холбоо тасарлаа
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Та конференсээс гарлаа
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Хэрвээ гэнэт гарсан бол доорх товчлуурыг дарж эргэн холбогдоно уу
bbb.logout.refresh.label = Дахин холбогдох
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Гарах
bbb.logout.confirm.message = Өрөөнөөс гарах уу?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Тийм
bbb.logout.confirm.no = Үгүй
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Холболтын алдаа гарлаа
bbb.connection.reconnecting=Дахин холбогдох
bbb.connection.reestablished=Холболт хийгдсэн
@@ -530,59 +539,60 @@ bbb.notes.title = Тэмдэглэл
bbb.notes.cmpColorPicker.toolTip = Текст өнгө
bbb.notes.saveBtn = Хадгалах
bbb.notes.saveBtn.toolTip = Тэмдэглэл хадгалах
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Поп ап ийг зөвшөөрч Дэлгэц түгээлтийг эхлүүлнэ үү
bbb.settings.deskshare.start = Дэлгэц хуваах функцийг шалгах
bbb.settings.voice.volume = Микрофонийн идэвхи
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Флаш хувилбарийн алдаа
bbb.settings.flash.text = Таньд флаш {0} суусан байна, гэвч таньд доор хаяж {1} суусан байж BigBlueButton ийг ажиллуулана. Энд дараад Флаш татаж авна уу.
bbb.settings.flash.command = Шинэ Флаш суулгах
bbb.settings.isight.label = iSight камерт алдаа гарлаа
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Флаш 11.2 RC2 суулгах
bbb.settings.warning.label = Анхаар
bbb.settings.warning.close = Энэ анхааруулгийг хаах
bbb.settings.noissues = Ямар нэгэн дуусгаагүй төлөв илэрсэнгүй
bbb.settings.instructions = Флаш таниас камерийг чинь бусдад тараах зөвшөөрөл авах цонх гарч ирнэ. Хэрвээ та өөрийнхөө камерийг харж, өөрийгөө сонсож болж байвал зүгээр байна гэсэн үг. Бусад ямар нэгэн алдаа байвал хайж олно уу
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Гурвалжин
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Курсорийг гурвалжин дүрст шилжүүлэх
ltbcustom.bbb.highlighter.toolbar.line = Зураас
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Текст
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Курсорийг Текст шилжүүлэх
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Текст өнгө
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Фонт хэмжээ
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Бэлэн
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Эхний зурвасд хү
bbb.accessibility.chat.chatBox.navigatedLatest = Сүүлчийн зурвасд хүрлээ
bbb.accessibility.chat.chatBox.navigatedLatestRead = Хамгийн эхний уншсан зурвасд хүрлээ
bbb.accessibility.chat.chatwindow.input = Чат оролт
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Гаран дээрхи сумны товчлуурыг ашиглан чатны зурвасыг солино уу
bbb.accessibility.notes.notesview.input = Тайлбарын оролт
bbb.shortcuthelp.title = Товчилборууд
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Товчилуурын тусламж тавцанг буулгах
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Товчилуурын тусламж тавцанг өргөх
bbb.shortcuthelp.closeBtn.accessibilityName = Товчилуурын тусламж цонхыг хаах
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Богино холбоос
bbb.shortcuthelp.dropdown.presentation = Танилцуулгын холбоос
bbb.shortcuthelp.dropdown.chat = Чатны холбоос
bbb.shortcuthelp.dropdown.users = Хэрэглэгчийн холбоос
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Холбоос
bbb.shortcuthelp.headers.function = Функц
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Уг тавцанг буулгах
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Уг тавцанг өргөх
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Флаш цонхноос фокус гаргах
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Дуугаа хаах эсвэл нээх
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Танилцуулга тавцан
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Чат тавцан
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Дэлгэц түгээлт
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Гарах
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Гараа өргөх
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Файл илгээх
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Өмнөх хуудас
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Дараагийн хуудас
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Танилцуулгыг өргөнөөр багтаах
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Танилцуулгыг хуудсанд багтаах
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Сонгогдсон хүнийг хөтлөгч болгох
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Өрөөнөөс гаргах
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Сонгогдсон хүний дууг хаах нээх
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Бүх хүмүүсийн дууг хаах нээх
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Хөтлөгчөөс бусад хүмүүсийн дууг хаах
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Чат
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Өнгө сонгогч
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Зурвас илгээх
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Зурвасуудыг үзэхийн тулд чатны цонхийг фокус хийнэ үү.
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Сүүлд уншсан зурв
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Түр дебаг товчлуур
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Санал асуулга эхлүүлэх
bbb.polling.startButton.label = Санал асуулга эхлүүлэх
bbb.polling.publishButton.label = Нийтлэх
bbb.polling.closeButton.label = Хаах
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Санал асуулгын одоогийн үр дүн
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Санал асуулгад орох
bbb.polling.respondersLabel.novotes = Хариу хүлээж байна
bbb.polling.respondersLabel.text = {0} Хэрэглэгч хариулсан байна
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Бүх Видеог хаах
bbb.users.settings.lockAll = Бүх хүмүүсийг түгжих
bbb.users.settings.lockAllExcept = Хөтлөгчөөс бусад хүмүүсийг түгжих
bbb.users.settings.lockSettings = Цоожлох ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Үзэгчдийг цоожноос мултлах
bbb.users.settings.roomIsLocked = Түгжигдсэн
bbb.users.settings.roomIsMuted = Дуу хаагдсан
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Цоожлох тохиргоог идэвхжү
bbb.lockSettings.cancel = Цуцлах
bbb.lockSettings.cancel.toolTip = Хадгалахгүйгээр хаах
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Зохицуулагч түгжиж байна
bbb.lockSettings.privateChat = Хувийн чат
bbb.lockSettings.publicChat = Нийтийн чат
bbb.lockSettings.webcam = Камер
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Микрофон
bbb.lockSettings.layout = Байршил
bbb.lockSettings.title=Үзэгчдийг цоожлох ...
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Онцлог
bbb.lockSettings.locked=Түгжигдсэн
bbb.lockSettings.lockOnJoin=Холбогдсоны дараа түгжих
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/mr/bbbResources.properties b/bigbluebutton-client/locale/mr/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/mr/bbbResources.properties
+++ b/bigbluebutton-client/locale/mr/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ms_MY/bbbResources.properties b/bigbluebutton-client/locale/ms_MY/bbbResources.properties
index 8ef0b49da9b6..056c11a98443 100644
--- a/bigbluebutton-client/locale/ms_MY/bbbResources.properties
+++ b/bigbluebutton-client/locale/ms_MY/bbbResources.properties
@@ -1,33 +1,33 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Penyambungan kepada server
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Maaf, server tidak dapat disambungkan.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Buka Log Window
bbb.mainshell.meetingNotFound = perkumpulan tidak ditemui
bbb.mainshell.invalidAuthToken = Pengesahan Token Tidak sah
bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
+bbb.mainshell.notification.tunnelling =
bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Anda mungkin menggunakan terjemahan bahasa yang lama untuk BigblueButton.
bbb.oldlocalewindow.reminder2 = Sila kosongkan cache browser dan cuba sekali lagi.
bbb.oldlocalewindow.windowTitle = Perhatian: Bahasa Terjemahan yang lama.
bbb.audioSelection.title = Bagaimana anda ingin sertai audio?
bbb.audioSelection.btnMicrophone.label = mikrofon
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
+bbb.audioSelection.btnMicrophone.toolTip =
bbb.audioSelection.btnListenOnly.label = Hanya mendengar
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
+bbb.audioSelection.btnListenOnly.toolTip =
bbb.audioSelection.txtPhone.text = Bagi sertai mesyuarat melalui telefon, dail: {0} diikuti {1} sebagai pin nombor persidangan
bbb.micSettings.title = Ujian Audio
bbb.micSettings.speakers.header = Cubaan Pembesar Suara
@@ -47,7 +47,7 @@ bbb.micSettings.comboMicList.toolTip = Pilihan mikrofon
bbb.micSettings.micRecordVolume.label = Gema
bbb.micSettings.micRecordVolume.toolTip = Aturan gema mikrofon anda
bbb.micSettings.nextButton = selanjutnya
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = Sertai Audio
bbb.micSettings.join.toolTip = \n\nSertai persidangan audio
bbb.micSettings.cancel = Batal
@@ -61,46 +61,47 @@ bbb.micSettings.webrtc.capableBrowser = Carian Sokongan WebRTC
bbb.micSettings.webrtc.capableBrowser.dontuseit = Klik untuk tidak mengunakan WebRTC
bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Klik disini jika anda tidak mengunakan teknologi WebRTC (saranan jika anda mempunyai masalah mengunakannya).
bbb.micSettings.webrtc.notCapableBrowser = WebRTC tidak berfungis dalam carian anda. Sila gunakan Google Chrome (versi 32 and keatas); atau Mozila Firefox (versi 26 dan ke atas). Anda masih boleh sertai persidangan suara mengunakan platform Adobe Flash.
-bbb.micSettings.webrtc.connecting = Calling
+bbb.micSettings.webrtc.connecting =
bbb.micSettings.webrtc.waitingforice = Sambungan
-bbb.micSettings.webrtc.transferring = Transferring
+bbb.micSettings.webrtc.transferring =
bbb.micSettings.webrtc.endingecho = Sertai Audio
bbb.micSettings.webrtc.endedecho = Percubaan Gema tamat.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = kebenaran Mikrofon Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = kebenaran Mikrofon Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Amaran Audio
bbb.micWarning.joinBtn.label = Sertai
bbb.micWarning.testAgain.label = Percubaan semula
bbb.micWarning.message = mikrofon anda tidak menunjukan sebarang aktiviti, kemungkinan anda tidak dapat mendengar semasa sesi.
bbb.webrtcWarning.message = WebRTC isu dikesan: {0}. Anda ingain mengunakan Flash?
bbb.webrtcWarning.title = WebRTC Audio Gagal
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
bbb.webrtcWarning.failedError.1008 = Ralat 1008: hantar gagal
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Bantuan
bbb.mainToolbar.logoutBtn = Keluar
bbb.mainToolbar.logoutBtn.toolTip = Keluar
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Pilih bahasa
bbb.mainToolbar.settingsBtn = Tetapan
bbb.mainToolbar.settingsBtn.toolTip = Buka Tetapan
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = Mulakan rakamaan
bbb.mainToolbar.recordBtn.toolTip.stop = Tamatkan rakamaan
bbb.mainToolbar.recordBtn.toolTip.recording = Sesi telah mula dirakam
bbb.mainToolbar.recordBtn.toolTip.notRecording = sesi belum mula dirakam
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = sahkan rakaman
bbb.mainToolbar.recordBtn.confirm.message.start = Anda pasti ingin mulakan sasi rakaman?
bbb.mainToolbar.recordBtn.confirm.message.stop = Anda pasti ingin hentikan sesi rakaman?
-bbb.mainToolbar.recordBtn..notification.title = Pemberitahuan Rakaman
-bbb.mainToolbar.recordBtn..notification.message1 = Anda boleh rakaman mesyuarat ini.
-bbb.mainToolbar.recordBtn..notification.message2 = Anda boleh menekan butang rakaman Mula/Henti pada bar tajuk untuk Mula/tamatkan rakaman.
+bbb.mainToolbar.recordBtn.notification.title = Pemberitahuan Rakaman
+bbb.mainToolbar.recordBtn.notification.message1 = Anda boleh rakaman mesyuarat ini.
+bbb.mainToolbar.recordBtn.notification.message2 = Anda boleh menekan butang rakaman Mula/Henti pada bar tajuk untuk Mula/tamatkan rakaman.
bbb.mainToolbar.recordingLabel.recording = (Rakaman)
bbb.mainToolbar.recordingLabel.notRecording = Tidak Dirakam
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
bbb.clientstatus.close = batal
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = sambungan Flash Player Anda ({0}) adalah tamat. Saranan untuk mengemaskini ke versi terbaru
bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Kecilkan
bbb.window.maximizeRestoreBtn.toolTip = Besarkan
bbb.window.closeBtn.toolTip = Tutup
@@ -171,8 +172,8 @@ bbb.users.settings.webcamSettings = Tetapan Webcam
bbb.users.settings.muteAll = Senyapkan Semua Pengguna
bbb.users.settings.muteAllExcept = Senyapkan Semua Pengguna Kecuali Penyampai
bbb.users.settings.unmuteAll = Suarakan Semua Pengguna
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
bbb.users.roomMuted.text = Pemerhati disenyapkan
bbb.users.roomLocked.text = Pemerhati dikunci
bbb.users.pushToTalk.toolTip = Cakap
@@ -180,7 +181,7 @@ bbb.users.pushToMute.toolTip = Senyapkan diri sendiri
bbb.users.muteMeBtnTxt.talk = Suarakan
bbb.users.muteMeBtnTxt.mute = Senyapkan
bbb.users.muteMeBtnTxt.muted = Disenyapkan
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Senarai Pengguna. Gunakan kekunci anak panah.
bbb.users.usersGrid.nameItemRenderer = Nama
bbb.users.usersGrid.nameItemRenderer.youIdentifier = anda
@@ -188,24 +189,24 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Tekan untuk pembentangan
bbb.users.usersGrid.statusItemRenderer.presenter = Penyampai
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = Media
bbb.users.usersGrid.mediaItemRenderer.talking = Bercakap
bbb.users.usersGrid.mediaItemRenderer.webcam = Berkongsi Webcam
@@ -214,40 +215,41 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Suarakan {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Senyapkan {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Kunci {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Buka {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Berkongsi Webcam
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon tutup
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon buka
bbb.users.usersGrid.mediaItemRenderer.noAudio = Tidak di dalam sidang audio
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Presentation
bbb.presentation.titleWithPres = Presentation: {0}
bbb.presentation.quickLink.label = Window pembentangan
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
bbb.presentation.uploadPresBtn.toolTip = Muat naik pembentangan
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Slide sebelumnya
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
+bbb.presentation.btnSlideNum.accessibilityName =
bbb.presentation.btnSlideNum.toolTip = Pilih slide
bbb.presentation.forwardBtn.toolTip = Slide seterusnya
bbb.presentation.maxUploadFileExceededAlert = Error: File lebih besar daripada yang dibenarkan.
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Muatnaik telah selesai. Sila tunggu sementara
bbb.presentation.uploaded = dimuatnaik.
bbb.presentation.document.supported = Dokumen yang dimuatnaik adalah disokong. Bermula untuk menukar...
bbb.presentation.document.converted = Berjaya menukar dokumen office.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = Tolong tukar document kepada PDF dahulu.
bbb.presentation.error.io = IO Error: Sila hubungi administrator.
bbb.presentation.error.security = Security Error: Sila hubungi administrator.
@@ -283,51 +285,52 @@ bbb.fileupload.uploadBtn = Muatnaik
bbb.fileupload.uploadBtn.toolTip = Muatnaik fail yang dipilih
bbb.fileupload.deleteBtn.toolTip = Padam Presentation
bbb.fileupload.showBtn = Papar
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Papar Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Menjana image..
bbb.fileupload.progBarLbl = Progres:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chat
bbb.chat.quickLink.label = Window chat
bbb.chat.cmpColorPicker.toolTip = Warna teks
bbb.chat.input.accessibilityName = Mesej Chat Editing Field
bbb.chat.sendBtn.toolTip = Hantar Mesej
bbb.chat.sendBtn.accessibilityName = Hantar mesej chat
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = salin semua teks
bbb.chat.publicChatUsername = Public
bbb.chat.optionsTabName = Options
bbb.chat.privateChatSelect = Pilih seseorang untuk chat secara peribadi
bbb.chat.private.userLeft = Penguna telah keluar
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = pilih penguna ke dalam Chat persendirian
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Chat Options
bbb.chat.fontSize = Mesej Chat Font Size
bbb.chat.cmbFontSize.toolTip = Pilih saiz font untuk mesej chat
@@ -336,24 +339,24 @@ bbb.chat.minimizeBtn.accessibilityName = Kecilkan Chat Window
bbb.chat.maximizeRestoreBtn.accessibilityName = Besarkan Chat Window
bbb.chat.closeBtn.accessibilityName = Tutupkan Chat Window
bbb.chat.chatTabs.accessibleNotice = Mesej baru dalam tab
-bbb.chat.chatMessage.systemMessage = System
+bbb.chat.chatMessage.systemMessage =
bbb.chat.chatMessage.stringRespresentation = Dari {0} {1} pada {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Tukar Webcam
bbb.publishVideo.changeCameraBtn.toolTip = Buka perubahan kekotak dialog webcam
bbb.publishVideo.cmbResolution.tooltip = Pilih resolusi webcam
bbb.publishVideo.startPublishBtn.labelText = Mulakan Perkongsian
bbb.publishVideo.startPublishBtn.toolTip = Mulakan berkongsi webcam anda
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Webcam
bbb.videodock.quickLink.label = Window webcams
bbb.video.minimizeBtn.accessibilityName = Kecilkan Webcam Window
bbb.video.maximizeRestoreBtn.accessibilityName = Besarkan Webcam Window
bbb.video.controls.muteButton.toolTip = Suara or disuarakan {0}
bbb.video.controls.switchPresenter.toolTip = Jadi {0} pebentang
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
+bbb.video.controls.ejectUserBtn.toolTip =
bbb.video.controls.privateChatBtn.toolTip = Chat bersama {0}
bbb.video.publish.hint.noCamera = Tiada webcam tersedia
bbb.video.publish.hint.cantOpenCamera = Tidak boleh memulakan webcam anda
@@ -366,19 +369,20 @@ bbb.video.publish.hint.publishing = Terbitkan...
bbb.video.publish.closeBtn.accessName = Tutup tetapan kotak dialog webcam
bbb.video.publish.closeBtn.label = Batal
bbb.video.publish.titleBar = Terbitkan tetingkap Webcam
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
bbb.screensharePublish.restart.label = semula
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
bbb.screensharePublish.closeBtn.accessibilityName = hentikan perkongsian dan tutup perkosian paparan pada tetingkap
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
bbb.screensharePublish.helpButton.toolTip = Bantuan
bbb.screensharePublish.helpButton.accessibilityName = Bantuan (Buka tutorial dalam tetingkap baru)
bbb.screensharePublish.helpText.PCIE1 = 1. Pilih 'Buka'
@@ -391,15 +395,15 @@ bbb.screensharePublish.helpText.PCChrome1 = 1. Tetapkan 'screenshare.jnlp'
bbb.screensharePublish.helpText.PCChrome2 = klik untuk buka
bbb.screensharePublish.helpText.PCChrome3 = 3. sijil diterima
bbb.screensharePublish.helpText.MacSafari1 = 1. Tetapkan 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
+bbb.screensharePublish.helpText.MacSafari2 =
bbb.screensharePublish.helpText.MacSafari3 = Klik-kanan and pilih 'Buka'
bbb.screensharePublish.helpText.MacSafari4 = 4. Pilih 'Buka' (jika diperlu)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
bbb.screensharePublish.helpText.MacFirefox3 = Klik-kanan and pilih 'Buka'
bbb.screensharePublish.helpText.MacFirefox4 = 4. Pilih 'Buka' (jika diperlu)
bbb.screensharePublish.helpText.MacChrome1 = 1. Tetapkan 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
+bbb.screensharePublish.helpText.MacChrome2 =
bbb.screensharePublish.helpText.MacChrome3 = 3. Klik-kanan and pilih 'Buka'
bbb.screensharePublish.helpText.MacChrome4 = 4. Pilih 'Buka' (jika diperlu)
bbb.screensharePublish.helpText.LinuxFirefox1 = Klik 'OK' untuk proses
@@ -421,35 +425,36 @@ bbb.screensharePublish.tunnelingErrorMessage.two = kemaskini semula pelanggan (k
bbb.screensharePublish.cancelButton.label = batalkan
bbb.screensharePublish.startButton.label = mula
bbb.screensharePublish.stopButton.label = Henti
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Skrin perkongsian
bbb.screenshareView.fitToWindow = Tetingkap sepenuhnya
bbb.screenshareView.actualSize = Paparan saiz sebenar
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
bbb.screenshareView.closeBtn.accessibilityName = Tutup Skrin perkongsian tetingkap
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Henti mendengar persidangan
bbb.toolbar.phone.toolTip.unmute = Mula mendengar persidangan
bbb.toolbar.phone.toolTip.nomic = Mikrofon tidak dikenalpasti
bbb.toolbar.deskshare.toolTip.start = Buka paparan perkongsian terbitan tetingkap
bbb.toolbar.deskshare.toolTip.stop = Hentikan perkongsian paparan Anda
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Kongsi Webcam Anda
bbb.toolbar.video.toolTip.stop = Berhenti Kongsi Webcam Anda
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Tambah aturan ke dalam senarai
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Tukar Aturan Anda
bbb.layout.loadButton.toolTip = muat aturan dari fail
bbb.layout.saveButton.toolTip = Simpan aturan ke dalam fail
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Pohon Aturan
bbb.layout.combo.custom = * Reka aturan
bbb.layout.combo.customName = Reka aturan
bbb.layout.combo.remote = Kawal
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Auturan susunan telah berjaya disimpan
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Auturan susunan telah berjaya masukan
bbb.layout.load.failed = Aturan susun Tidak boleh dimaksukan
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Pensil
bbb.highlighter.toolbar.pencil.accessibilityName = Tukar Konsur papar putih kepada pensil
bbb.highlighter.toolbar.ellipse = Bulatan
@@ -489,11 +497,10 @@ bbb.highlighter.toolbar.clear.accessibilityName = Kosongkan Semua halaman papan
bbb.highlighter.toolbar.undo = undur Anotasi
bbb.highlighter.toolbar.undo.accessibilityName = unduran keapda paparan papan putih yang terakhir
bbb.highlighter.toolbar.color = Pilih Warna
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = Tukar ketebalan
bbb.highlighter.toolbar.thickness.accessibilityName = lukis ketebalan papan putih
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Log telah keluar
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Aplikasi pelayan telah ditutup
bbb.logout.asyncerror = Ansync ralat
@@ -502,249 +509,252 @@ bbb.logout.connectionfailed = Sambungan server berakhir
bbb.logout.rejected = Penyambungan ke server telah ditolak
bbb.logout.invalidapp = Aplikasi red5 tidak wujud
bbb.logout.unknown = Pelangan anda telah terputus sambungan dengan server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Anda telah logout dari persidangan
bbb.logour.breakoutRoomClose = tetingkap carian akan ditutup
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
bbb.logout.refresh.label = Putus
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = sahkan Logout
bbb.logout.confirm.message = Anda pasti untuk logout?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Ya
bbb.logout.confirm.no = Tidak
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
bbb.connection.reconnecting=Sambungan semula
-bbb.connection.reestablished=Connection reestablished
+bbb.connection.reestablished=
bbb.connection.bigbluebutton=BigBlueButton
bbb.connection.sip=SIP
bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.connection.deskshare=
bbb.notes.title = Nota
bbb.notes.cmpColorPicker.toolTip = Warna teks
bbb.notes.saveBtn = Simpan
bbb.notes.saveBtn.toolTip = Simpan Nota
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
bbb.settings.deskshare.start = Periksa Desktop Sharing
bbb.settings.voice.volume = Aktiviti Mikrofon
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
+bbb.settings.flash.text =
bbb.settings.flash.command = Instal Flash yang terkini
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.label =
+bbb.settings.isight.text =
bbb.settings.isight.command = Instal Flash 10.2 RC2
bbb.settings.warning.label = Amaran
bbb.settings.warning.close = Tutup Warning ini
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Segitiga
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
ltbcustom.bbb.highlighter.toolbar.text = Teks
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Warna Teks
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Saiz font
-bbb.caption.window.title = Closed Caption
+bbb.caption.window.title =
bbb.caption.quickLink.label = Tutup kapsyen tetingkap
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
bbb.caption.transcript.noowner = tiada
bbb.caption.transcript.youowner = anda
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
bbb.caption.transcript.inputArea.toolTip = kepsyen sekitar imput
bbb.caption.transcript.outputArea.toolTip = kepsyen sekitar output
bbb.caption.option.label = pilihan
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
bbb.accessibility.chat.chatBox.reachedFirst = Anda telah mencapai mesej yang pertama.
bbb.accessibility.chat.chatBox.reachedLatest = Anda telah mencapai mesej yang terkini.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
bbb.accessibility.chat.chatwindow.input = chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
bbb.accessibility.notes.notesview.input = nota input
bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Shortcut global
bbb.shortcuthelp.dropdown.presentation = Shortcut pembentangan
bbb.shortcuthelp.dropdown.chat = Shortcut chat
bbb.shortcuthelp.dropdown.users = Shortcut pengguna
bbb.shortcuthelp.dropdown.caption = Tutup kapstion pintas
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.headers.function =
bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
+bbb.shortcutkey.general.minimize.function =
bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.maximize.function =
bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
+bbb.shortcutkey.flash.exit.function =
bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
+bbb.shortcutkey.users.muteme.function =
bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
+bbb.shortcutkey.chat.chatinput.function =
bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
+bbb.shortcutkey.present.focusslide.function =
bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.whiteboard.undo.function =
bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
+bbb.shortcutkey.focus.users.function =
bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
+bbb.shortcutkey.focus.video.function =
bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
+bbb.shortcutkey.focus.presentation.function =
bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
+bbb.shortcutkey.focus.chat.function =
bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
+bbb.shortcutkey.share.desktop.function =
bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.webcam.function =
bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
+bbb.shortcutkey.shortcutWindow.function =
bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
+bbb.shortcutkey.logout.function =
bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
+bbb.shortcutkey.present.previous.function =
bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
+bbb.shortcutkey.present.select.function =
bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
+bbb.shortcutkey.present.next.function =
bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
+bbb.shortcutkey.users.mute.function =
bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
+bbb.shortcutkey.users.muteall.function =
bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
+bbb.shortcutkey.users.muteAllButPres.function =
bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
+bbb.shortcutkey.users.breakoutRooms.function =
bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
+bbb.shortcutkey.users.focusBreakoutRooms.function =
bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
+bbb.shortcutkey.chat.changeColour.function =
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Hantar mesej chat
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.explanation.function =
bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
+bbb.shortcutkey.chat.chatbox.advance.function =
bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
+bbb.shortcutkey.chat.chatbox.goback.function =
bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
+bbb.shortcutkey.chat.chatbox.repeat.function =
bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
+bbb.shortcutkey.chat.chatbox.golatest.function =
bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
+bbb.shortcutkey.chat.chatbox.gofirst.function =
bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
+bbb.shortcutkey.chat.chatbox.goread.function =
bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.debug.function =
bbb.shortcutkey.caption.takeOwnership = 79
bbb.shortcutkey.caption.takeOwnership.function = Pilih bahasa untuk pemilikan
@@ -753,151 +763,109 @@ bbb.polling.startButton.tooltip = mula suara
bbb.polling.startButton.label = mula suara
bbb.polling.publishButton.label = terbit
bbb.polling.closeButton.label = Tutup
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = Ya
bbb.polling.answer.No = Tidak
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Mulakan Perkongsian
bbb.publishVideo.changeCameraBtn.labelText = Tukar Webcam
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
bbb.shortcutkey.specialKeys.space = Spacebar
bbb.shortcutkey.specialKeys.left = Arrow Kiri
bbb.shortcutkey.specialKeys.right = Arrow Kanan
bbb.shortcutkey.specialKeys.up = Arrow Atas
bbb.shortcutkey.specialKeys.down = Arrow Bawah
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
bbb.toolbar.videodock.toolTip.closeAllVideos = Tutup semua video
bbb.users.settings.lockAll = kunci semua penguna
bbb.users.settings.lockAllExcept = kunci penguna tidak dikenali
bbb.users.settings.lockSettings = kunci pemerhati...
bbb.users.settings.breakoutRooms = Bilik Pelarian ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Buka kepada semua pemerhati
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
bbb.lockSettings.save = Mohon
bbb.lockSettings.save.tooltip = kunci aturan Permohonan
bbb.lockSettings.cancel = Batal
bbb.lockSettings.cancel.toolTip = Tutup tetingkap tanpa dikemaskini
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Kekunci Sederhana
bbb.lockSettings.privateChat = Chat peribadi
bbb.lockSettings.publicChat = Chat Umum
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = mikrofon
bbb.lockSettings.layout = Aturan
bbb.lockSettings.title=Kunci pemerhati
bbb.lockSettings.feature=Ciri
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
bbb.users.breakout.breakoutRooms = Bilik Pelarian
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
bbb.users.breakout.closing = Tutup
-bbb.users.breakout.rooms = Rooms
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
bbb.users.breakout.roomsCombo.accessibilityName = Reka nombor bilik
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
+bbb.users.breakout.room =
bbb.users.breakout.timeLimit = limit masa
bbb.users.breakout.durationStepper.accessibilityName = had Masa dalam seminit
bbb.users.breakout.minutes = minit
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
bbb.users.breakout.notAssigned = tidak disambungkan
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
+bbb.users.breakout.dragAndDropToolTip =
bbb.users.breakout.start = mula
bbb.users.breakout.invite = Jemput
bbb.users.breakout.close = batal
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ne_NP/bbbResources.properties b/bigbluebutton-client/locale/ne_NP/bbbResources.properties
index 9abdd465b79d..405f98a11e6c 100644
--- a/bigbluebutton-client/locale/ne_NP/bbbResources.properties
+++ b/bigbluebutton-client/locale/ne_NP/bbbResources.properties
@@ -1,271 +1,273 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = सर्भरसँग जडान गर्दै
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = माफगर्नुहोस्, सर्भरसँग जडान हुन सकेन
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = लग सञ्झ्याल खोल्ने
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = स्वरुप पूर्वरुपमा फर्काउने
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = तपाईको बिगब्लु भाषा अनुवाद पुरानो भएको हुनसक्छ
bbb.oldlocalewindow.reminder2 = ब्रउजर अनुप्रयोगको क्याश सफा गरेर पुन: प्रयास गर्नुहोस
bbb.oldlocalewindow.windowTitle = सावधान : पुरानो भाषानुवाद
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = परीक्षण ध्वनी बजाउने
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
+bbb.micSettings.playSound.toolTip =
bbb.micSettings.hearFromHeadset = तपाईले हेडफोनबाट आवाज सुन्नु पर्छ , कम्प्युटरबाट हैन
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = माइक्रोफोन परिवर्तन गर्नुहोस्
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = आवाज सुचारु गर्ने
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Audio instellingen. Enkel dit venster is editeerbaar tot wanneer dit venster gesloten wordt.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = सहायता
bbb.mainToolbar.logoutBtn = निर्गमन
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Selecteer taal
bbb.mainToolbar.settingsBtn = मिलान
bbb.mainToolbar.settingsBtn.toolTip = अभिरुचीहरु मिलान गर्ने
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimaliseer
bbb.window.maximizeRestoreBtn.toolTip = Maximaliseer
bbb.window.closeBtn.toolTip = Sluit
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
bbb.users.title = Gebruikers{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
+bbb.users.titleBar =
+bbb.users.quickLink.label =
bbb.users.minimizeBtn.accessibilityName = Minimaliseer het gebruikers venster
bbb.users.maximizeRestoreBtn.accessibilityName = Maximaliseer het gebruikers venster
bbb.users.settings.buttonTooltip = Instellingen
-bbb.users.settings.audioSettings = Audio Test
+bbb.users.settings.audioSettings =
bbb.users.settings.webcamSettings = Webcam instellingen
bbb.users.settings.muteAll = Demp allen
bbb.users.settings.muteAllExcept = Demp allen behalve presentator
bbb.users.settings.unmuteAll = Iedereen dempen uit
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = Klik om te praten
bbb.users.pushToMute.toolTip = Klik om jezelf te dempen
bbb.users.muteMeBtnTxt.talk = Dempen uit
bbb.users.muteMeBtnTxt.mute = Dempen
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
bbb.users.usersGrid.nameItemRenderer = Naam
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
bbb.users.usersGrid.statusItemRenderer.presenter = Presentator
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Kijker\n
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam gedeeld
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Klik om de webcam te bekijken
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam gedeeld
bbb.users.usersGrid.mediaItemRenderer.micOff = Microfoon uit\n
bbb.users.usersGrid.mediaItemRenderer.micOn = Microfoon aan\n
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = प्रस्तुती
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = पहिलो स्लाइड
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
bbb.presentation.forwardBtn.toolTip = पछिल्लो स्लाइड
bbb.presentation.maxUploadFileExceededAlert = Fout: Het bestand is groter dan de toegelaten limiet.
bbb.presentation.uploadcomplete = Upload gelukt. Gelieve even te wachten terwijl we het document converteren.
bbb.presentation.uploaded = verstuurd.
bbb.presentation.document.supported = Het geüpload bestand wordt ondersteund.
bbb.presentation.document.converted = Het office bestand is succesvol omgezet.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Fout: Gelieve de beheerder te contacteren.
bbb.presentation.error.security = Beveiligingsfout: Gelieve de beheerder te contacteren.
bbb.presentation.error.convert.notsupported = Fout: het geüpload bestand wordt niet ondersteund, gelieve een compatibel bestand te uploaden.
bbb.presentation.error.convert.nbpage = Fout tijdens het tellen van het aantal geüploade bestanden. Gelieve de beheerder te contacteren.
bbb.presentation.error.convert.maxnbpagereach = Het geüpload bestand heeft teveel slides/pagina's ( >100 ) en dit is niet toegelaten: Gelieve een bestand met minder slides/pagina's te uploaden.
bbb.presentation.converted = {0} van {1} pagina's zijn geconverteerd.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = PRESENTATIE BESTAND
bbb.presentation.uploadwindow.pdf = पिडिएफ
bbb.presentation.uploadwindow.word = वर्ड
@@ -276,79 +278,80 @@ bbb.presentation.minimizeBtn.accessibilityName = Minimaliseer het presentatie ve
bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximaliseer het presentatie venster
bbb.presentation.closeBtn.accessibilityName = Sluit het presentatie venster
bbb.fileupload.title = प्रस्तुती उर्ध्वभरण गर्ने
-bbb.fileupload.lblFileName.defaultText = No file selected
+bbb.fileupload.lblFileName.defaultText =
bbb.fileupload.selectBtn.label = Selecteer bestand
bbb.fileupload.selectBtn.toolTip = ब्राउजरको नाम
bbb.fileupload.uploadBtn = उर्ध्वभरण
bbb.fileupload.uploadBtn.toolTip = फाइल उर्ध्वभरण
bbb.fileupload.deleteBtn.toolTip = प्रस्तुतीकरण मेट्ने
bbb.fileupload.showBtn = देखाउने
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = प्रस्तुती देखाउने
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = थम्बनेलहरु(सानो अनुरुप) बनाउँदै
bbb.fileupload.progBarLbl = Voortgang:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = Tekst Kleur
-bbb.chat.input.accessibilityName = Chat Message Editing Field
+bbb.chat.input.accessibilityName =
bbb.chat.sendBtn.toolTip = Stuur bericht
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = Iedereen
-bbb.chat.optionsTabName = Options
+bbb.chat.optionsTabName =
bbb.chat.privateChatSelect = Selecteer een persoon om een privé chat mee te starten
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Chat opties
bbb.chat.fontSize = Tekst grootte
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimaliseer het chat venster
bbb.chat.maximizeRestoreBtn.accessibilityName = Maximaliseer het chat venster
bbb.chat.closeBtn.accessibilityName = Sluit het chat venster
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Wijzig camera
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
bbb.publishVideo.startPublishBtn.labelText = Start delen
bbb.publishVideo.startPublishBtn.toolTip = verstuur je webcam-beeld
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = videoschermen rangschikken
-bbb.videodock.quickLink.label = Webcams Window
+bbb.videodock.quickLink.label =
bbb.video.minimizeBtn.accessibilityName = Minimaliseer het video dock venster
bbb.video.maximizeRestoreBtn.accessibilityName = Maximaliseer het video dock venster
bbb.video.controls.muteButton.toolTip = Dempen of dempen opheffen voor {0}
@@ -361,543 +364,508 @@ bbb.video.publish.hint.waitingApproval = Wachtend op toestemming
bbb.video.publish.hint.videoPreview = Video preview
bbb.video.publish.hint.openingCamera = Camera aan het openen...
bbb.video.publish.hint.cameraDenied = Camera toegang ontzegd
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Publiceren...
bbb.video.publish.closeBtn.accessName = Sluit webcam venster
-bbb.video.publish.closeBtn.label = Cancel
+bbb.video.publish.closeBtn.label =
bbb.video.publish.titleBar = Publiceer webcam venster
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Stift
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
+bbb.highlighter.toolbar.pencil.accessibilityName =
bbb.highlighter.toolbar.ellipse = वृत
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
+bbb.highlighter.toolbar.ellipse.accessibilityName =
bbb.highlighter.toolbar.rectangle = आयतन
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
bbb.highlighter.toolbar.color = रङ छान्नुहोस्
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = Wijzig dikte
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = De server applicatie werd afgesloten
bbb.logout.asyncerror = Een asynchrone fout is opgetreden
bbb.logout.connectionclosed = De verbinding met de server werd gesloten
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = De connectie naar de server is geweigerd
bbb.logout.invalidapp = De red5 applicatie bestaat niet
bbb.logout.unknown = Uw toepassing heeft de connectie met de server verbroken
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = U bent uitgelogd uit de conferentie
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Klik op toelaten in het pop-up venster dat nakijkt of desktop delen correct werkt voor jou
bbb.settings.deskshare.start = Controleer desktop delen
bbb.settings.voice.volume = Microfoon activiteit
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash versie fout
bbb.settings.flash.text = U heeft Flash {0} geinstalleerd, maar u moet ten minste versie {1} hebben om BigBlueButton te gebruiken. Klik op de knop hieronder om de recentste versie van Adobe Flash te installeren.
bbb.settings.flash.command = Installeer recentste Flash
bbb.settings.isight.label = ISight camera fout
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Installeer Flash 10.2 RC2
bbb.settings.warning.label = चेतावनी
bbb.settings.warning.close = यो चेतावनी बन्द गर्नुहोस्
bbb.settings.noissues = Geen openstaande problemen werden ontdekt.
bbb.settings.instructions = Ga akkoord met de flash pop-up die je naar camera permissies vraagt. Als je jezelf kan zien en horen is je browser correct afgesteld. Andere mogelijke oorzaken worden onderaan weergegeven. Klik op iedere mogelijke oorzaak om een oplossing te vinden.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = रद्द गर्ने
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Start delen
bbb.publishVideo.changeCameraBtn.labelText = Wijzig camera
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/nl/bbbResources.properties b/bigbluebutton-client/locale/nl/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/nl/bbbResources.properties
+++ b/bigbluebutton-client/locale/nl/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/nl_BE/bbbResources.properties b/bigbluebutton-client/locale/nl_BE/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/nl_BE/bbbResources.properties
+++ b/bigbluebutton-client/locale/nl_BE/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/nl_NL/bbbResources.properties b/bigbluebutton-client/locale/nl_NL/bbbResources.properties
index b7b4fb4e908d..0d3428a4b503 100644
--- a/bigbluebutton-client/locale/nl_NL/bbbResources.properties
+++ b/bigbluebutton-client/locale/nl_NL/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Verbinding aan het maken met de server
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = We kunnen geen verbinding maken met de server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Open log scherm
bbb.mainshell.meetingNotFound = Meeting kan niet worden gevonden
bbb.mainshell.invalidAuthToken = Ongeldig authenticatie Token
bbb.mainshell.resetLayoutBtn.toolTip = Herstel de scherm-indeling
bbb.mainshell.notification.tunnelling = Tunnel opzetten
bbb.mainshell.notification.webrtc = WebRTC geluid
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = U hebt misschien een verouderde vertaling van BigBlueButton.
bbb.oldlocalewindow.reminder2 = Gelieve de cache van uw browser te wissen en opnieuw te proberen.
bbb.oldlocalewindow.windowTitle = Waarschuwing: verouderde vertalingen
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Annuleren
bbb.micSettings.connectingtoecho = Verbinding aan het maken
bbb.micSettings.connectingtoecho.error = Echo test fout: contacteer alsjebleift de beheerder
bbb.micSettings.cancel.toolTip = Annuleer het meedoen aan de audio conferentie
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Audio instellingen. De focus blijft op dit scherm totdat het scherm gesloten wordt.
bbb.micSettings.webrtc.title = WebRTC ondersteuning
bbb.micSettings.webrtc.capableBrowser = Je internet browser ondersteunt WebRTC
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Verbinding aan het maken
bbb.micSettings.webrtc.transferring = Overdracht loopt
bbb.micSettings.webrtc.endingecho = Participeren in geluid
bbb.micSettings.webrtc.endedecho = Echo test beeindigd
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox microfoon instellingen
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome microfoon toestemming
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Audio waarschuwing
bbb.micWarning.joinBtn.label = Doe in ieder geval mee
bbb.micWarning.testAgain.label = Nogmaals testen
@@ -90,17 +91,17 @@ bbb.webrtcWarning.failedError.1011 = Error 1011: ICE verzamel timeout
bbb.webrtcWarning.failedError.unknown = Fout {0} : Onbekende fout
bbb.webrtcWarning.failedError.mediamissing = We kunnen je microfoon niet vionden voor een WebRTC gesprek
bbb.webrtcWarning.failedError.endedunexpectedly = De WebRTC echo test is onverwacht beeindigd
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Help
bbb.mainToolbar.logoutBtn = Afmelden
bbb.mainToolbar.logoutBtn.toolTip = Afmelden
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Selecteer taal
bbb.mainToolbar.settingsBtn = Instellingen
bbb.mainToolbar.settingsBtn.toolTip = Open instellingen
@@ -110,34 +111,34 @@ bbb.mainToolbar.recordBtn.toolTip.start = Begin met opnemen
bbb.mainToolbar.recordBtn.toolTip.stop = Opnemen beeindigen
bbb.mainToolbar.recordBtn.toolTip.recording = De sessie wordt opgenomen
bbb.mainToolbar.recordBtn.toolTip.notRecording = De sessie wordt niet opgenomen
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Bevestig opnemen
bbb.mainToolbar.recordBtn.confirm.message.start = Weet je zeker dat je deze sessie wilt opnemen?
bbb.mainToolbar.recordBtn.confirm.message.stop = Weet je zeker dat je het opnemen van deze sessie wilt beeindigen?
-bbb.mainToolbar.recordBtn..notification.title = Opname melding
-bbb.mainToolbar.recordBtn..notification.message1 = Je kunt deze meeting opnemen
-bbb.mainToolbar.recordBtn..notification.message2 = Alsjeblieft op de Start /Stop knop klikken in de titel balk om opnemen te starten / stoppen.
+bbb.mainToolbar.recordBtn.notification.title = Opname melding
+bbb.mainToolbar.recordBtn.notification.message1 = Je kunt deze meeting opnemen
+bbb.mainToolbar.recordBtn.notification.message2 = Alsjeblieft op de Start /Stop knop klikken in de titel balk om opnemen te starten / stoppen.
bbb.mainToolbar.recordingLabel.recording = (Aan het opnemen)
bbb.mainToolbar.recordingLabel.notRecording = Niet aan het opnemen
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Configuratie berichten
bbb.clientstatus.notification = Ongelezen berichten
-bbb.clientstatus.close = Close
+bbb.clientstatus.close =
bbb.clientstatus.tunneling.title = Firewall
bbb.clientstatus.tunneling.message = Een firewall zorgt ervoor dat je client geen verbinding kan maken met de externe server op poort 1935. We adviseren een minder afgescherm netwerk voor een stabielere verbinding
bbb.clientstatus.browser.title = Internet browser versie
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Je Internet browser ({0}) is niet up to date.
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Je Flash Player ({0}) is niet up to date. We adviseren om hiervan de laatste versie te gebruiken.
bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = We adviseren om Firefox of Chrome te gebruiken voor een betere geluids kwaliteit.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimaliseer
bbb.window.maximizeRestoreBtn.toolTip = Maximaliseer
bbb.window.closeBtn.toolTip = Sluiten
@@ -188,21 +189,21 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Wijzig presentator
bbb.users.usersGrid.statusItemRenderer.presenter = Presentator
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Kijker\n
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Webcam delen
bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is presentator
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Dempen uit {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Dempen {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Vergrendelen {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Ontgrendelen {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Verwijderen {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam gedeeld
bbb.users.usersGrid.mediaItemRenderer.micOff = Microfoon uit\n
bbb.users.usersGrid.mediaItemRenderer.micOn = Microfoon aan\n
bbb.users.usersGrid.mediaItemRenderer.noAudio = Niet in conferentie gesprek
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Helder
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Presentatie
bbb.presentation.titleWithPres = Presentatie {0}
bbb.presentation.quickLink.label = Presentatie venster
bbb.presentation.fitToWidth.toolTip = Pas de presentatie aan naar breedte
bbb.presentation.fitToPage.toolTip = Pas presentatie aan naar de pagina grootte
bbb.presentation.uploadPresBtn.toolTip = Verzend een document om te presenteren.
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Vorige pagina.
bbb.presentation.btnSlideNum.accessibilityName = Pagina {0} of {1}
bbb.presentation.btnSlideNum.toolTip = Selecteer een pagina
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Upload gelukt. Gelieve even te wachten terwijl
bbb.presentation.uploaded = Verzonden.
bbb.presentation.document.supported = Het verzondenbestand wordt ondersteund en wordt nu geconverteerd.
bbb.presentation.document.converted = Het Office bestand is succesvol geconverteerd.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Fout: Gelieve de beheerder te contacteren.
bbb.presentation.error.security = Beveiligingsfout: Gelieve de beheerder te contacteren.
bbb.presentation.error.convert.notsupported = Fout: het gverzonden bestand wordt niet ondersteund, gelieve een compatibel bestand te uploaden.
@@ -283,70 +285,71 @@ bbb.fileupload.uploadBtn = Upload
bbb.fileupload.uploadBtn.toolTip = Bestand uploaden naar de server
bbb.fileupload.deleteBtn.toolTip = Verwijder presentatie
bbb.fileupload.showBtn = Weergeven
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Geef presentatie weer
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Bezig met aanmaken van thumbnails..
bbb.fileupload.progBarLbl = Voortgang:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chat
bbb.chat.quickLink.label = Chat venster
bbb.chat.cmpColorPicker.toolTip = Tekst Kleur
bbb.chat.input.accessibilityName = Chat booschap invul veld
bbb.chat.sendBtn.toolTip = Stuur bericht
bbb.chat.sendBtn.accessibilityName = Verzend chat bericht
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopieer alle tekst
bbb.chat.publicChatUsername = Iedereen
bbb.chat.optionsTabName = Opties
bbb.chat.privateChatSelect = Selecteer een persoon om een privé chat mee te starten
bbb.chat.private.userLeft = De gebruiker is uitgelogd
bbb.chat.private.userJoined = De gebruiker is ingelogd
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Selecteer gebruiker oim een prive chat te beginnen
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Chat opties
bbb.chat.fontSize = Chat tekst grootte
bbb.chat.cmbFontSize.toolTip = Selecteer chat boodschap letter grootte
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimaliseer het chat venster
bbb.chat.maximizeRestoreBtn.accessibilityName = Maximaliseer het chat venster
bbb.chat.closeBtn.accessibilityName = Sluit het chat venster
bbb.chat.chatTabs.accessibleNotice = Nieuwe berichten in deze tab
bbb.chat.chatMessage.systemMessage = Systeem
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Het bericht is {0} karakter(s) te lang
bbb.publishVideo.changeCameraBtn.labelText = Wijzig camera
bbb.publishVideo.changeCameraBtn.toolTip = Open het webcam aanpassen venster
bbb.publishVideo.cmbResolution.tooltip = Selecteer een webcam resolutie
bbb.publishVideo.startPublishBtn.labelText = Start delen
bbb.publishVideo.startPublishBtn.toolTip = Verstuur beelden vanaf je webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
+bbb.publishVideo.startPublishBtn.errorName =
bbb.webcamPermissions.chrome.title = Chrome webcam toestemming
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = videoschermen rangschikken
bbb.videodock.quickLink.label = Webcam venster
bbb.video.minimizeBtn.accessibilityName = Minimaliseer het webcam venster
@@ -366,90 +369,92 @@ bbb.video.publish.hint.publishing = Publiceren...
bbb.video.publish.closeBtn.accessName = Sluit webcam instellingen venster
bbb.video.publish.closeBtn.label = Annuleren
bbb.video.publish.titleBar = Publiceer webcam venster
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Stop naar de meeting te luisteren
bbb.toolbar.phone.toolTip.unmute = Begin met luisteren naar de meeting
bbb.toolbar.phone.toolTip.nomic = Geen microfoon gevonden
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Deel je webcam
bbb.toolbar.video.toolTip.stop = Stop met het delen van je webcam
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Voeg de aangepaste weergave toe aan de lijst
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Pas de weergave aan
bbb.layout.loadButton.toolTip = Laad weergave uit een bestand
bbb.layout.saveButton.toolTip = Sla de weergave op in een bestand
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Pa een weergave toe
bbb.layout.combo.custom = *Aangepaste weergave
bbb.layout.combo.customName = Aangepaste weergave
bbb.layout.combo.remote = Vanaf afstand
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Weergave is succesvol opgeslagen
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Weergave is succesvol geladen
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.load.failed =
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Standaard weergave
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Video chat
bbb.layout.name.webcamsfocus = Webcam meeting
bbb.layout.name.presentfocus = Presentatie meeting
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Docent assistent
bbb.layout.name.lecture = Docent
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Stift
bbb.highlighter.toolbar.pencil.accessibilityName = Verander de whiteboard cursor in een stift
bbb.highlighter.toolbar.ellipse = Cirkel
@@ -492,33 +500,34 @@ bbb.highlighter.toolbar.color = Selecteer kleur
bbb.highlighter.toolbar.color.accessibilityName = Whiteboard teken kleur
bbb.highlighter.toolbar.thickness = Wijzig dikte
bbb.highlighter.toolbar.thickness.accessibilityName = Whietboard teken dikte
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Uitgelogd
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = De server applicatie werd afgesloten
bbb.logout.asyncerror = Een asynchrone fout is opgetreden
bbb.logout.connectionclosed = De verbinding met de server werd gesloten
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = De connectie naar de server is geweigerd
bbb.logout.invalidapp = De red5 applicatie bestaat niet
bbb.logout.unknown = Uw toepassing heeft de connectie met de server verbroken
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = U bent uitgelogd uit de conferentie
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Als het uitloggen onverwacht was klik dan op onderstaande knop om weer verbinding te maken.
bbb.logout.refresh.label = Weer verbinding maken
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Bevestig uitloggen
bbb.logout.confirm.message = Weet je zeker dat je wilt uitloggen?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Ja
bbb.logout.confirm.no = Nee
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Verbindings problemen gedetecteerd
bbb.connection.reconnecting=Opnieuw verbinden
bbb.connection.reestablished=Verbinding gerealiseerd
@@ -530,59 +539,60 @@ bbb.notes.title = Notities
bbb.notes.cmpColorPicker.toolTip = Tekst kleur
bbb.notes.saveBtn = Opslaan
bbb.notes.saveBtn.toolTip = Sla notitie op
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Klik op toelaten in het pop-up venster dat controleert of scherm delen goed werkt
bbb.settings.deskshare.start = Controleer scherm delen
bbb.settings.voice.volume = Microfoon activiteit
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash versie fout
bbb.settings.flash.text = U heeft Flash {0} geinstalleerd, maar u moet ten minste versie {1} hebben om deze applicatie te kunnen gebruiken. Klik op de knop hieronder om de recentste versie van Adobe Flash te installeren.
bbb.settings.flash.command = Installeer recentste Flash versie
bbb.settings.isight.label = ISight webcam fout
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Installeer Flash 10.2 RC2
bbb.settings.warning.label = Waarschuwing
bbb.settings.warning.close = Sluit deze waarschuwing
bbb.settings.noissues = Geen openstaande problemen werden ontdekt.
bbb.settings.instructions = Ga akkoord met de flash pop-up die je naar camera permissies vraagt. Als je jezelf kan zien en horen is je browser correct afgesteld. Andere mogelijke oorzaken worden onderaan weergegeven. Klik op iedere mogelijke oorzaak om een oplossing te vinden.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Driehoek
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Verander de whiteboard cursor in een driehoek
ltbcustom.bbb.highlighter.toolbar.line = Lijn
@@ -591,25 +601,25 @@ ltbcustom.bbb.highlighter.toolbar.text = Tekst
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Verander de whiteboard cursor naar tekst
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Tekst kleur
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Tekst grootte
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
bbb.caption.option.fontsize = Tekstgrootte:
bbb.caption.option.fontsize.tooltip = Tekstgrootte
bbb.caption.option.backcolor = Achtergrondkleur:
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Je hebt naar het eerste bericht
bbb.accessibility.chat.chatBox.navigatedLatest = Je hebt naar het laatste bericht genavigeerd
bbb.accessibility.chat.chatBox.navigatedLatestRead = Je hebt naar het laatst gelezen bericht genavigeerd
bbb.accessibility.chat.chatwindow.input = Chat invoer
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Gebruik de pijltjes toetsen om door de chat berichten te navigeren
bbb.accessibility.notes.notesview.input = Notities invoer
bbb.shortcuthelp.title = Sneltoetsen
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimaliseer het sneltoetsen help venster
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximaliseer het sneltoetsen help venster
bbb.shortcuthelp.closeBtn.accessibilityName = Sluit het sneltoetsen help venster
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Algemene sneltoetsen
bbb.shortcuthelp.dropdown.presentation = Presentatie sneltoetsen
bbb.shortcuthelp.dropdown.chat = Chat sneltoetsen
bbb.shortcuthelp.dropdown.users = Gebruikers sneltoetsen
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Sneltoets
bbb.shortcuthelp.headers.function = Functie
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Focus op het presentatie venster
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Focus op het chat vernster
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Open het scherm delen venster
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Deze meeting verlaten
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Hand opsteken
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Presentatie uploaden
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Ga naar vorige pagina
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Ga naar de volgende pagina
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Pas de pagina's aan op de breedte
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Pas de pagina's aan naar scherm grootte
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Activeer voor geselecteerde gebruiker de presentator modus
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Verwijder geselecteerde gebruiker uit de meeting
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Dempen of niet dempen van geselecteerde gebruiker
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Dempen of niet dempen van alle gebruikers
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Demp iedereen behalve de presentator
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Focus op de chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Focus op letter kleuren selectie
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Verzend chat bericht
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Voor de navigatie door berichten moet je focussen op de chat box
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Navigeer naar het laatst gelezen
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Tijdelijk probleem met sneltoets
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Start een enquete
bbb.polling.startButton.label = Start enquete
bbb.polling.publishButton.label = Publiceren
bbb.polling.closeButton.label = Sluiten
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Enquete resulaten
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Voer enquete vragen in
bbb.polling.respondersLabel.novotes = Wacht op antwoord
bbb.polling.respondersLabel.text = {0} Gebruikers hebben gereageerd
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Sluit alle video's
bbb.users.settings.lockAll = Vergrendel alle gebruikers
bbb.users.settings.lockAllExcept = Vergrendel alle gebruikers behalve de presentator
bbb.users.settings.lockSettings = Vergrendel kijkers
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Ontgrendel alle kijkers
bbb.users.settings.roomIsLocked = Standaard vergrendeld
bbb.users.settings.roomIsMuted = Standaard gedempt
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Vergendeling instellingen toepassen
bbb.lockSettings.cancel = Annuleren
bbb.lockSettings.cancel.toolTip = Sluit dit venster zonder op te slaan
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Moderator vergrendeling
bbb.lockSettings.privateChat = Prive chat
bbb.lockSettings.publicChat = Publieke chat
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Microfoon
bbb.lockSettings.layout = Weergave
bbb.lockSettings.title=Vergrendel kijkers
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Optie
bbb.lockSettings.locked=Gesloten
bbb.lockSettings.lockOnJoin=Op slot na meedoen
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
bbb.users.breakout.record = Neem op
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/no_NO/bbbResources.properties b/bigbluebutton-client/locale/no_NO/bbbResources.properties
index a955b4a0fc1a..678e0567ea3f 100644
--- a/bigbluebutton-client/locale/no_NO/bbbResources.properties
+++ b/bigbluebutton-client/locale/no_NO/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Kobler opp til serveren
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Beklager, vi kan ikke koble til serveren
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Åpne loggvindu
bbb.mainshell.meetingNotFound = Finner ikke møtet
bbb.mainshell.invalidAuthToken = Ugyldig identifikasjon
bbb.mainshell.resetLayoutBtn.toolTip = Nullstill layout
bbb.mainshell.notification.tunnelling = Tunnelling
bbb.mainshell.notification.webrtc = WebRTC lyd
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Du har kanskje en gammel språkfil
bbb.oldlocalewindow.reminder2 = Vennligst slett nettleserens mellomlager og prøv igjen.
bbb.oldlocalewindow.windowTitle = Advarsel: Gammel språkfil
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Avbryt
bbb.micSettings.connectingtoecho = Lager forbindelse
bbb.micSettings.connectingtoecho.error = Ekkotest feil: Vennligst kontakt administrator.
bbb.micSettings.cancel.toolTip = Avbryt å delta i lydkonferanse
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Lydinnstillinger. Fokus er på dette vinduet til det lukkes.
bbb.micSettings.webrtc.title = WebRTC støtte
bbb.micSettings.webrtc.capableBrowser = Din nettleser støtter WebRTC
@@ -63,44 +63,45 @@ bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Klikk her hvis du ikke
bbb.micSettings.webrtc.notCapableBrowser = WebRTC støttes ikke av din nettleser. Vennligst bruk Google Chrome (versjon 32 eller nyere) eller Mozilla Firefox (versjon 26 eller nyere). Du kan fortsatt delta i lydkonferansen ved å bruke Adobe Flash Platform.
bbb.micSettings.webrtc.connecting = Ringer
bbb.micSettings.webrtc.waitingforice = Lager forbindelse
-bbb.micSettings.webrtc.transferring = Transferring
+bbb.micSettings.webrtc.transferring =
bbb.micSettings.webrtc.endingecho = Deltar med lyd
bbb.micSettings.webrtc.endedecho = Ekkotest er over.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox mikrofon tillatelser
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome mikrofon tillatelser
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Lyd advarsel
bbb.micWarning.joinBtn.label = Delta likevel
bbb.micWarning.testAgain.label = Test på nytt
bbb.micWarning.message = Mikrofonen viste ingen aktivitet, andre kan antakelig ikke høre deg i denne sesjonen.
bbb.webrtcWarning.message = Følgende WebRTC hendelse ble detektert: {0}. Vil du prøve Flash i stedet?
-bbb.webrtcWarning.title = WebRTC Audio Failure
+bbb.webrtcWarning.title =
bbb.webrtcWarning.failedError.1001 = Feil 1001: WebSocket ble koplet fra
bbb.webrtcWarning.failedError.1002 = Feil 1002: Greide ikke å få WebSocket oppkopling
bbb.webrtcWarning.failedError.1003 = Feil 1003: Nettleser versjon er ikke støttet
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
+bbb.webrtcWarning.failedError.1004 =
bbb.webrtcWarning.failedError.1005 = Feil 1005: Samtalen ble uventet avsluttet
bbb.webrtcWarning.failedError.1006 = Feil 1006: Samtalen ble tidsavbrutt
bbb.webrtcWarning.failedError.1007 = Feil 1007: ICE kontroll feilet
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
bbb.webrtcWarning.failedError.unknown = Feil {0}: Ukjent feilkode
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Hjelp
bbb.mainToolbar.logoutBtn = Logg ut
bbb.mainToolbar.logoutBtn.toolTip = Logg ut
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Velg språk
bbb.mainToolbar.settingsBtn = Innstillinger
bbb.mainToolbar.settingsBtn.toolTip = Åpne Innstillinger
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = Start opptak
bbb.mainToolbar.recordBtn.toolTip.stop = Stopp opptak
bbb.mainToolbar.recordBtn.toolTip.recording = Det blir gjort opptak av denne sesjonen
bbb.mainToolbar.recordBtn.toolTip.notRecording = Det blir ikke gjort opptak av denne sesjonen
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Bekreft opptak
bbb.mainToolbar.recordBtn.confirm.message.start = Er du sikker på at du vil gjøre opptak av sesjonen?
bbb.mainToolbar.recordBtn.confirm.message.stop = Er du sikker på at du vil stoppe optaket av sesjonen?
-bbb.mainToolbar.recordBtn..notification.title = Innspilling markør
-bbb.mainToolbar.recordBtn..notification.message1 = Du kan gjøre opptak av dette møtet.
-bbb.mainToolbar.recordBtn..notification.message2 = Du må klikke Start/Stopp innspillingsknapp i tittelfeltet for å begynne/avslutte innspilling.
+bbb.mainToolbar.recordBtn.notification.title = Innspilling markør
+bbb.mainToolbar.recordBtn.notification.message1 = Du kan gjøre opptak av dette møtet.
+bbb.mainToolbar.recordBtn.notification.message2 = Du må klikke Start/Stopp innspillingsknapp i tittelfeltet for å begynne/avslutte innspilling.
bbb.mainToolbar.recordingLabel.recording = (Opptak)
bbb.mainToolbar.recordingLabel.notRecording = Gjør ikke opptak
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimer
bbb.window.maximizeRestoreBtn.toolTip = Maksimer
bbb.window.closeBtn.toolTip = Lukk
@@ -171,8 +172,8 @@ bbb.users.settings.webcamSettings = Webkamera innstillinger
bbb.users.settings.muteAll = Demp alle
bbb.users.settings.muteAllExcept = Demp alle unntatt presenterer
bbb.users.settings.unmuteAll = Slå lyd på for alle
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
bbb.users.roomMuted.text = Seere er dempet
bbb.users.roomLocked.text = Seere er låst
bbb.users.pushToTalk.toolTip = Klikk for å snakke
@@ -180,7 +181,7 @@ bbb.users.pushToMute.toolTip = Klikk for å dempe deg selv
bbb.users.muteMeBtnTxt.talk = Slå på lyd
bbb.users.muteMeBtnTxt.mute = Slå av lyd
bbb.users.muteMeBtnTxt.muted = Lyd er slått av
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Brukerliste. Bla med piltaster.
bbb.users.usersGrid.nameItemRenderer = Navn
bbb.users.usersGrid.nameItemRenderer.youIdentifier = du
@@ -188,24 +189,24 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Klikk for å velge presenterer
bbb.users.usersGrid.statusItemRenderer.presenter = Presenterer
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Seer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = Media
bbb.users.usersGrid.mediaItemRenderer.talking = Snakker
bbb.users.usersGrid.mediaItemRenderer.webcam = Webkamera deles
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Klikk for å slå på lyd for
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Klikk for å slå lyd av for bruker
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lås {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Lås opp {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Vis bort bruker
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Webkamera deles
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon av
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon på
bbb.users.usersGrid.mediaItemRenderer.noAudio = Ikke med i lydkonferanse
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Presentasjon
bbb.presentation.titleWithPres = Presentasjon: {0}
bbb.presentation.quickLink.label = Presentasjonsvindu
bbb.presentation.fitToWidth.toolTip = Tilpass presentasjonen til bredden
bbb.presentation.fitToPage.toolTip = Tilpass presentasjonen til siden
bbb.presentation.uploadPresBtn.toolTip = Last opp presentasjonen
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Forrige lysark.
bbb.presentation.btnSlideNum.accessibilityName = Slide {0} av {1}
bbb.presentation.btnSlideNum.toolTip = Klikk for å velge et lysark
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Opplasting er fullført
bbb.presentation.uploaded = lastet opp.
bbb.presentation.document.supported = Godkjent dokumenttype. Starter konvertering...
bbb.presentation.document.converted = Vellykket konvertering av dokument.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO feil: Vennligst kontakt administrator.
bbb.presentation.error.security = Sikkerhetsfeil: Vennligst kontakt administrator.
bbb.presentation.error.convert.notsupported = Feil: Filtypen som ble lastet opp er støttet. Vennligst last opp en kompatibel type.
@@ -283,70 +285,71 @@ bbb.fileupload.uploadBtn = Last opp
bbb.fileupload.uploadBtn.toolTip = Last opp valgt fil
bbb.fileupload.deleteBtn.toolTip = Slett presentasjon
bbb.fileupload.showBtn = Vis
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Vis presentasjon
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Lager ikoner..
bbb.fileupload.progBarLbl = Framdrift:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Meldinger
bbb.chat.quickLink.label = Chat vindu
bbb.chat.cmpColorPicker.toolTip = Tekstfarge
bbb.chat.input.accessibilityName = Chat melding redigeringsfelt
bbb.chat.sendBtn.toolTip = Send melding
bbb.chat.sendBtn.accessibilityName = Send chat melding
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopier hele teksten
bbb.chat.publicChatUsername = Alle
bbb.chat.optionsTabName = Innstillinger
bbb.chat.privateChatSelect = Velg person til privat chat
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Innstillinger for prat
bbb.chat.fontSize = Chatvindu Fontstørrelse
bbb.chat.cmbFontSize.toolTip = Velg fontstørrelse for chat
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimer chatvindu
bbb.chat.maximizeRestoreBtn.accessibilityName = Maksimer chatvindu
bbb.chat.closeBtn.accessibilityName = Lukk chatvindu
bbb.chat.chatTabs.accessibleNotice = Ingen nye meldinger i denne fanen.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Endre kamera innstillinger
bbb.publishVideo.changeCameraBtn.toolTip = Klikk for å åpne dialogboks for kameravalg
bbb.publishVideo.cmbResolution.tooltip = Velg oppløsning for webkamera
bbb.publishVideo.startPublishBtn.labelText = Start deling
bbb.publishVideo.startPublishBtn.toolTip = Start deling av webkamera
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
+bbb.publishVideo.startPublishBtn.errorName =
bbb.webcamPermissions.chrome.title = Chrome webkamera tillatelser.
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Video dokk
bbb.videodock.quickLink.label = Webkamera vindu
bbb.video.minimizeBtn.accessibilityName = Minimer videodokk vindu
@@ -361,95 +364,97 @@ bbb.video.publish.hint.waitingApproval = Venter på godkjenning
bbb.video.publish.hint.videoPreview = Video forhåndsvisning
bbb.video.publish.hint.openingCamera = Starter kamera...
bbb.video.publish.hint.cameraDenied = Kamera tilgang avvist
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Publiserer...
bbb.video.publish.closeBtn.accessName = Lukk oppsettboksen for webkamera
bbb.video.publish.closeBtn.label = Avbryt
bbb.video.publish.titleBar = Webkamera deling Vindu
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Stopp å lytte til konferansen
bbb.toolbar.phone.toolTip.unmute = Start å lytte til konferansen
bbb.toolbar.phone.toolTip.nomic = Ingen mikrofon er detektert
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Del ut ditt webkamera
bbb.toolbar.video.toolTip.stop = Stopp å dele ut ditt webkamera
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Legg til egendefinert layout i liste
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Endre din layout
bbb.layout.loadButton.toolTip = Last inn layout fra fil
bbb.layout.saveButton.toolTip = Lagre layout til fil
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Ta i bruk layout
bbb.layout.combo.custom = * Egendefinert layout
bbb.layout.combo.customName = Egendefinert layout
bbb.layout.combo.remote = Fjern
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Layout ble lagret
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Layout ble lastet inn
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.load.failed =
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Standard utforming
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Video Chat
bbb.layout.name.webcamsfocus = Webcam møte
bbb.layout.name.presentfocus = Presentasjon møte
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Leksjon assistent
bbb.layout.name.lecture = Leksjon
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Blyant
bbb.highlighter.toolbar.pencil.accessibilityName = Endre tavlepeker til plyant
bbb.highlighter.toolbar.ellipse = Sirkel
@@ -492,97 +500,99 @@ bbb.highlighter.toolbar.color = Velg farge
bbb.highlighter.toolbar.color.accessibilityName = Farge for tegning på tavla
bbb.highlighter.toolbar.thickness = Velg tykkelse
bbb.highlighter.toolbar.thickness.accessibilityName = Endre tykkelse av tegnestrek på tavla
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logget ut
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Appen server er lukket
bbb.logout.asyncerror = Det oppstod en Async feil
bbb.logout.connectionclosed = Forbindelsen med serveren er slått av
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Forbindelsen til serveren ble avvist
bbb.logout.invalidapp = Appen red5 finnes ikke
bbb.logout.unknown = Din klient har mistet forbindelsen til serveren
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Du har logget ut av konferansen
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Hvis denne utloggingen var uventet kan du klilkke nedenfor for å logge inn igjen.
bbb.logout.refresh.label = Kople opp igjen
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Bekreft utlogging
bbb.logout.confirm.message = Er du sikker på at du vil logge ut?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Ja
bbb.logout.confirm.no = Nei
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = Notater
bbb.notes.cmpColorPicker.toolTip = Telstfarge
bbb.notes.saveBtn = Lagre
bbb.notes.saveBtn.toolTip = Lagre notat
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Klikk Tillat for å teste skrivebordsdeling
bbb.settings.deskshare.start = Sjekk skrivebordsdeling
bbb.settings.voice.volume = Mikrofonaktivitet
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Feil versjon av Flash
bbb.settings.flash.text = Du har installert versjon {0} av Flash, men trenger minst versjon {1}. Klikk nedenfor for å installere siste Adobe Flash versjon.
bbb.settings.flash.command = Installer nyeste Flash
bbb.settings.isight.label = Feil med iSight kamera
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Installer Flash 10.2 RC2
bbb.settings.warning.label = Advarsel
bbb.settings.warning.close = Lukk denne advarselen
bbb.settings.noissues = Ingen alvorlige feil er oppdaget.
bbb.settings.instructions = Tillat at Flash vil bruke ditt kamera. Hvis du kan se og høre deg selv er din nettleser satt opp korrekt. Nedenfor er det vist noen feilsituasjoner som kan undersøkes.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Triangel
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Endre tavlepeker til triangel
ltbcustom.bbb.highlighter.toolbar.line = Linje
@@ -591,34 +601,34 @@ ltbcustom.bbb.highlighter.toolbar.text = Tekst
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Endre tavlepeker til tekst
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Skriftfarge
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Skriftstørelse
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
bbb.accessibility.chat.chatBox.reachedFirst = Du er kommet til første melding.
bbb.accessibility.chat.chatBox.reachedLatest = Du er kommet til siste melding.
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Du er kommet til første meldin
bbb.accessibility.chat.chatBox.navigatedLatest = Du er kommet til siste melding.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Du er kommet til sist leste melding.
bbb.accessibility.chat.chatwindow.input = Chatting
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Bruk piltaster til å bla igjennom chat meldinger.
bbb.accessibility.notes.notesview.input = Notater inntasting
bbb.shortcuthelp.title = Hurtigtaster
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimer hurtigtast vindu
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maksimer hurtigtast vindu
bbb.shortcuthelp.closeBtn.accessibilityName = Lukk hurtigtast vindu
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Generelle hurtigtaster
bbb.shortcuthelp.dropdown.presentation = Hurtigtaster for presentasjon
bbb.shortcuthelp.dropdown.chat = Hurtigtaster for chatt
bbb.shortcuthelp.dropdown.users = Brukers snarveier
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Hurtitast
bbb.shortcuthelp.headers.function = Funksjon
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Minimer gjeldende vindu
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Maksimer gjeldende vindu
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Fokuser ut fra Flash vindu
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Slå av eller på mikrofon
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Endre fokus til presentasjonsvindu
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Endre fokus til chatvindu
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Åpne skrivebordsdeling vindu
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Logg ut av møtet
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Gjør håndsopprekking
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Last opp presentasjon
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Gå til neste lysark
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Gå til neste lysark
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Tilpass lysark til sidebredde
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Tilpass lysark til siden
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Gjør valgt person til presenterer
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Vis bort vlgte person fra møtet
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Slå ly av eller på for valgte person
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Slå lyd av eller på for alle personer
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Slå lyd av for alle unntatt presenterer
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Endre fokus til chat faner
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Endre fokus til fargeplukker
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Send chat melding
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Endre fokus til chat boks for å bla i meldinger
@@ -746,32 +756,33 @@ bbb.shortcutkey.chat.chatbox.goread.function = Gå til siste leste melding
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Midlertidig debug hurtigtast
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = Publiser
bbb.polling.closeButton.label = Lukk
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = Ja
bbb.polling.answer.No = Nei
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Start deling
bbb.publishVideo.changeCameraBtn.labelText = Endre kamera innstillinger
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Lukk alle videoer
bbb.users.settings.lockAll = Lås alle brukere
bbb.users.settings.lockAllExcept = Lås brukere unntat presenterer
bbb.users.settings.lockSettings = Lås seere...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Avslutt låsing av seere
bbb.users.settings.roomIsLocked = Låst som standardsetting
bbb.users.settings.roomIsMuted = Dempet som standardsetting
@@ -802,102 +813,59 @@ bbb.lockSettings.save.tooltip = Bruk låsing
bbb.lockSettings.cancel = Avbryt
bbb.lockSettings.cancel.toolTip = Lukk alle vinduer uten å lagre
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Moderator låser
bbb.lockSettings.privateChat = Privat chat
bbb.lockSettings.publicChat = Åpen chat
bbb.lockSettings.webcam = Webkamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Lås seere
bbb.lockSettings.feature=Mulighet
bbb.lockSettings.locked=Låst
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/nqo/bbbResources.properties b/bigbluebutton-client/locale/nqo/bbbResources.properties
index acac36165341..5736a96f5ce2 100644
--- a/bigbluebutton-client/locale/nqo/bbbResources.properties
+++ b/bigbluebutton-client/locale/nqo/bbbResources.properties
@@ -1,159 +1,160 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = ߜߊ߲߬ߞߎ߲߬ߠߌ߲ ߌߘߐ߫ ߛߐߘߊ ߟߊ߫
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = ߥߊߦߌߞߊ߬߸ ߊ߲ ߕߍ߫ ߛߴߊ߲ ߜߊ߲߬ߞߎ߲߬ ߠߊ߫ ߛߐߘߊ ߟߊ߫.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
bbb.micSettings.echoTestAudioYes = ߊ߬ߥߊ߬
bbb.micSettings.echoTestAudioNo = ߍ߲߬ߍ߲߫
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = ߊ߬ ߘߐߛߊ߬
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
bbb.micSettings.cancel.toolTip = ߜߊ߬ߙߊ ߡߍ߲ߞߊ߲ ߜߊ߲߬ߞߎ߲߬ߠߌ߲ ߘߐߛߊ߬
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = ߘߍ߬ߡߍ߲߬ߠߌ߲
bbb.mainToolbar.logoutBtn = ߜߊ߲߬ߞߎ߲߬ߓߐ߬ߟߌ
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = ߞߊ߲ ߓߊߕߐߡߐ߲߫
bbb.mainToolbar.settingsBtn = ߘߐ߬ߓߍ߲߬ߠߌ߲ ߠߎ߬
bbb.mainToolbar.settingsBtn.toolTip = ߘߐ߬ߓߍ߲߬ߠߌ߲߬ ߠߎ߬ ߘߊߦߟߍ߬
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = ߊ߬ ߟߊߘߐߦߊ߫
bbb.window.maximizeRestoreBtn.toolTip = ߊ߬ ߟߊߓߏ߲߬ߧߊ߬
bbb.window.closeBtn.toolTip = ߊ߬ ߘߊߕߎ߲߯
@@ -162,742 +163,709 @@ bbb.presentation.titleBar = ߦߌ߬ߘߊ߬ߟߌ߬ ߝߢߐߘߊ ߡߙߎߝߋ ߛߟߊߟߊ
bbb.chat.titleBar = ߓߊ߬ߙߏ߬ߘߊ߬ ߝߢߐߘߊ ߡߙߎߝߋ ߛߟߊߟߊ
bbb.users.title = ߕߣߐ߬ߓߐ߬ߟߊ߬ {0} {1}
bbb.users.titleBar = ߕߣߐ߬ߓߐ߬ߟߌ߬ ߝߢߐߘߊ ߡߙߎߝߋ ߛߟߊߟߊ
-bbb.users.quickLink.label = Users Window
+bbb.users.quickLink.label =
bbb.users.minimizeBtn.accessibilityName = ߕߣߐ߬ߓߐ߬ߟߌ߬ ߝߢߐߘߊ ߟߎ߬ ߟߊߘߐߦߊ߫
bbb.users.maximizeRestoreBtn.accessibilityName = ߕߣߐ߬ߓߐ߬ߟߌ߬ ߝߢߐߘߊ ߟߎ߬ ߟߊߓߏ߲߬ߧߊ߬
bbb.users.settings.buttonTooltip = ߘߐ߬ߓߍ߲߬ߠߌ߲ ߠߎ߬
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
bbb.video.publish.closeBtn.label = ߊ߬ ߘߐߛߊ߬
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = ߌ ߜߊ߲߬ߞߎ߲߬ߓߐ߬
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = ߊ߬ߥߊ߬
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = ߊ߬ߥߊ߬
bbb.logout.confirm.no = ߍ߲߬ߍ߲߫
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = ߊ߬ ߘߊߕߎ߲߯
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = ߊ߬ߥߊ߬
bbb.polling.answer.No = ߍ߲߬ߍ߲߫
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = ߊ߬ ߘߐߛߊ߬
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/oc/bbbResources.properties b/bigbluebutton-client/locale/oc/bbbResources.properties
index bafd272ab486..d20c2b4b9b6b 100644
--- a/bigbluebutton-client/locale/oc/bbbResources.properties
+++ b/bigbluebutton-client/locale/oc/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Connexion al servidor
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = O planhèm, impossible d'establir una connexion al servidor.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (version {0})
bbb.mainshell.logBtn.toolTip = Dobrir la fenèstra de log
@@ -9,17 +9,17 @@ bbb.mainshell.invalidAuthToken = Geton d'autentificacion invalid
bbb.mainshell.resetLayoutBtn.toolTip = Disposicion per defaut
bbb.mainshell.notification.tunnelling = Tunèl
bbb.mainshell.notification.webrtc = Àudio WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Avètz probablament d'ancianas traduccions de BigBlueButton.
bbb.oldlocalewindow.reminder2 = Escafatz la memòria cache de vòstre navigador web e ensajatz tornamai.
bbb.oldlocalewindow.windowTitle = Avertiment : Las traduccions son pas a jorn
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Connexion en cors
bbb.micSettings.webrtc.transferring = Transferiment en cors
bbb.micSettings.webrtc.endingecho = Jónher l'àudio
bbb.micSettings.webrtc.endedecho = Tèst de resson acabat.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Permissions del microfòn de Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Permissions del microfòn de Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Avertissement àudio
bbb.micWarning.joinBtn.label = Jónher de tot biais
bbb.micWarning.testAgain.label = Testar tornamai
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Lo tèst de resson WebRTC s'es
bbb.webrtcWarning.connection.dropped = Connexion a WebRTC fracassada
bbb.webrtcWarning.connection.reconnecting = Ensag de reconnexion
bbb.webrtcWarning.connection.reestablished = Connexion a WebRTC restablida
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Ajuda
bbb.mainToolbar.logoutBtn = Desconnexion
bbb.mainToolbar.logoutBtn.toolTip = Se desconnectar
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Seleccionar vòstra lenga
bbb.mainToolbar.settingsBtn = Paramètres
bbb.mainToolbar.settingsBtn.toolTip = Dobrir los paramètres
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Començar l'enregistrament
bbb.mainToolbar.recordBtn.toolTip.stop = Arrestar l'enregistrament
bbb.mainToolbar.recordBtn.toolTip.recording = Aquesta session es enregistrada
bbb.mainToolbar.recordBtn.toolTip.notRecording = Aquesta session es pas enregistrada
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Confirmar l'enregistrament
bbb.mainToolbar.recordBtn.confirm.message.start = Volètz començar l'enregistrament de la session ?
bbb.mainToolbar.recordBtn.confirm.message.stop = Volètz arrestar l'enregistrament de la session ?
-bbb.mainToolbar.recordBtn..notification.title = Enregistrar la notificacion
-bbb.mainToolbar.recordBtn..notification.message1 = Podètz enregistrar aquesta conferéncia.
-bbb.mainToolbar.recordBtn..notification.message2 = Vos cal clicar sul boton Aviar / Arrestar l'enregistrament dins la barra de títol per començar / arrestar l’enregistrament.
+bbb.mainToolbar.recordBtn.notification.title = Enregistrar la notificacion
+bbb.mainToolbar.recordBtn.notification.message1 = Podètz enregistrar aquesta conferéncia.
+bbb.mainToolbar.recordBtn.notification.message2 = Vos cal clicar sul boton Aviar / Arrestar l'enregistrament dins la barra de títol per començar / arrestar l’enregistrament.
bbb.mainToolbar.recordingLabel.recording = (Enregistrament en cors)
bbb.mainToolbar.recordingLabel.notRecording = Enregistra pas
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Configuracion de las notificacions
bbb.clientstatus.notification = Notificacions pas legidas
bbb.clientstatus.close = Tampar
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Vòstre navigador ({0}) es pas a jorn. Es rec
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Vòstra extension Flash Player ({0}) es pas a jorn. Es recomandat d'installar la darrièra version.
bbb.clientstatus.webrtc.title = Àudio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Vos recomandam d'utilizar Firefox o Chrome per una melhora qualitat sonòra.
bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Reduire
bbb.window.maximizeRestoreBtn.toolTip = Agrandir
bbb.window.closeBtn.toolTip = Tampar
@@ -188,16 +189,16 @@ bbb.users.usersGrid.statusItemRenderer = Estatut
bbb.users.usersGrid.statusItemRenderer.changePresenter = Clicar per ne far lo presentador
bbb.users.usersGrid.statusItemRenderer.presenter = Presentador
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
bbb.users.usersGrid.statusItemRenderer.confused = Confús
bbb.users.usersGrid.statusItemRenderer.neutral = Neutre
bbb.users.usersGrid.statusItemRenderer.happy = Urós
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Desactivar la sordina per {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Activar la sordina per {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Verrolhar {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Desverrolhar {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Bandir {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Partejar la webcam
bbb.users.usersGrid.mediaItemRenderer.micOff = Microfòn tampat
bbb.users.usersGrid.mediaItemRenderer.micOn = Microfòn dobèrt
bbb.users.usersGrid.mediaItemRenderer.noAudio = Sètz pas en conferéncia àudio
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Suprimir
-bbb.users.emojiStatus.raiseHand = Raise hand
+bbb.users.emojiStatus.raiseHand =
bbb.users.emojiStatus.happy = Urós
bbb.users.emojiStatus.neutral = Neutre
bbb.users.emojiStatus.sad = Triste
bbb.users.emojiStatus.confused = Confús
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Presentacion
bbb.presentation.titleWithPres = Presentacion : {0}
bbb.presentation.quickLink.label = Fenèstra de presentacion
bbb.presentation.fitToWidth.toolTip = Ajustar la presentacion a la largor
bbb.presentation.fitToPage.toolTip = Ajustar la presentacion a la pagina
bbb.presentation.uploadPresBtn.toolTip = Mandatz un document de presentar
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Diapositiva precedenta.
bbb.presentation.btnSlideNum.accessibilityName = Diapositiva {0} sus {1}
bbb.presentation.btnSlideNum.toolTip = Seleccionar una pagina
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Mandadís del fichièr acabat. Mercé de pacie
bbb.presentation.uploaded = mandat.
bbb.presentation.document.supported = Lo document mandat es compatible.
bbb.presentation.document.converted = Conversion del fichièr capitada.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = D'en primièr, convertissètz aqueste document en PDF.
bbb.presentation.error.io = Error del servidor : Contactatz l'administrator.
bbb.presentation.error.security = Error de seguretat : Contactatz l'administrator.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Mandar
bbb.fileupload.uploadBtn.toolTip = Mandar lo fichièr seleccionat
bbb.fileupload.deleteBtn.toolTip = Suprimir aquesta presentacion
bbb.fileupload.showBtn = Afichar
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Afichar aquesta presentacion
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Generacion dels apercebuts..
bbb.fileupload.progBarLbl = Progression :
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Discussion
bbb.chat.quickLink.label = Fenèstra de discussion
bbb.chat.cmpColorPicker.toolTip = Color del tèxte
bbb.chat.input.accessibilityName = Camp de picada de messatge
bbb.chat.sendBtn.toolTip = Mandar aqueste messatge
bbb.chat.sendBtn.accessibilityName = Mandar aqueste messatge
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Copiar tot lo tèxte
bbb.chat.publicChatUsername = Public
bbb.chat.optionsTabName = Opcions
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Aviar lo partiment
bbb.publishVideo.startPublishBtn.toolTip = Començar lo partiment de ma webcam
bbb.publishVideo.startPublishBtn.errorName = Impossible de partejar la camèra. Rason: {0}
bbb.webcamPermissions.chrome.title = Permissions de la webcam de Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Webcams
bbb.videodock.quickLink.label = Fenèstra de las webcams
bbb.video.minimizeBtn.accessibilityName = Reduire la fenèstra de las webcams
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Tampar la fenèstra de paramètres per l
bbb.video.publish.closeBtn.label = Anullar
bbb.video.publish.titleBar = Publicar la webcam
bbb.video.streamClose.toolTip = Tampar l'emission de : {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = Partiment de burèu \: Apercebut del presentador
bbb.screensharePublish.pause.tooltip = Metre lo partiment d'ecran en pause
bbb.screensharePublish.pause.label = Pausa
@@ -374,7 +378,7 @@ bbb.screensharePublish.restart.tooltip = Reprene lo partiment d'ecran
bbb.screensharePublish.restart.label = Reprene
bbb.screensharePublish.maximizeRestoreBtn.toolTip = Podètz pas agrandir aquesta fenèstra.
bbb.screensharePublish.closeBtn.toolTip = Arrestar de partejar e tampar
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = Reduire
bbb.screensharePublish.minimizeBtn.accessibilityName = Reduire la fenèstra de partiment d'ecran
bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Agrandir la fenèstra de partiment d'ecran
@@ -421,35 +425,36 @@ bbb.screensharePublish.tunnelingErrorMessage.two = Ensajar de refrescar lo clien
bbb.screensharePublish.cancelButton.label = Anullar
bbb.screensharePublish.startButton.label = Aviar
bbb.screensharePublish.stopButton.label = Arrestar
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Partiment d'ecran
bbb.screenshareView.fitToWindow = Adaptar la talha a la fenèstra
bbb.screenshareView.actualSize = Afichar a la talha normala
bbb.screenshareView.minimizeBtn.accessibilityName = Reduire la fenèstra de partiment d'ecran
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Agrandir la fenèstra de partiment d'ecran
bbb.screenshareView.closeBtn.accessibilityName = Tampar la fenèstra de partiment d'ecran
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Daissar d'escotar la conferéncia
bbb.toolbar.phone.toolTip.unmute = Aviar l'escota la conferéncia
bbb.toolbar.phone.toolTip.nomic = Cap de microfòn pas detectat
bbb.toolbar.deskshare.toolTip.start = Dobrir la fenèstra de publicacion de partiment d'ecran
bbb.toolbar.deskshare.toolTip.stop = Arrestar de partejar vòstre burèu
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Partejar vòstra webcam
bbb.toolbar.video.toolTip.stop = Arrestar lo partiment de vòstra webcam
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Apondre la mesa en pagina personalizada a la lista
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Cambiar la disposicion
bbb.layout.loadButton.toolTip = Telecargar de mesas en pagina dempuèi un fichièr
bbb.layout.saveButton.toolTip = Salvar las mesas en pagina dins un fichièr
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Aplicar una mesa en pagina
bbb.layout.combo.custom = * Mesa en pagina personalizada
bbb.layout.combo.customName = Mesa en pagina personalizada
bbb.layout.combo.remote = Distant
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Las mesas en pagina son estadas salvadas amb succès
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Las mesas en pagina son estadas telecargadas amb succès
bbb.layout.load.failed = Impossible de cargar las mesas en pagina
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Configuracion per defaut
bbb.layout.name.closedcaption = Sostitolatge per sords e malentendents
bbb.layout.name.videochat = Discussion vidèo
bbb.layout.name.webcamsfocus = Webconferéncia
bbb.layout.name.presentfocus = Visioconferéncia
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Assistent de lectura
bbb.layout.name.lecture = Lectura
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Gredon
bbb.highlighter.toolbar.pencil.accessibilityName = Cambiar lo cursor del tablèu pel gredon
bbb.highlighter.toolbar.ellipse = Cercle
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Seleccionar una color
bbb.highlighter.toolbar.color.accessibilityName = Color de la marca
bbb.highlighter.toolbar.thickness = Cambiar l'espessor
bbb.highlighter.toolbar.thickness.accessibilityName = Espessor del trait
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Desconnectat
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = D'acòrdi
bbb.logout.appshutdown = L'aplicacion servidor es estada arrestada
bbb.logout.asyncerror = Una error de sincronizacion s'es produita
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = La connexion al servidor es estada tampada
bbb.logout.rejected = La connexion al servidor es estada refusada
bbb.logout.invalidapp = L'aplicacion red5 existís pas
bbb.logout.unknown = Vòstre client a perdut la connexion al servidor
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Ara, sètz desconnectat de la conferéncia
bbb.logour.breakoutRoomClose = La fenèstra de vòstre navigador se va tampar
-bbb.logout.ejectedFromMeeting = Un moderator vos a bandit de la reünion.
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Se aquesta fin de session était involontaire, clicar lo boton çaijós per vos reconnectar.
bbb.logout.refresh.label = Reconnectar
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
bbb.settings.title = Paramètres
bbb.settings.ok = D'acòrdi
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Confirmar la desconnexion
bbb.logout.confirm.message = Sètz segur que vos volètz desconnectar ?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Òc
bbb.logout.confirm.no = Non
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Problèmas de connectivitat detectats
bbb.connection.reconnecting=Reconnexion en cors
bbb.connection.reestablished=Connexion restablida
@@ -530,59 +539,60 @@ bbb.notes.title = Nòtas
bbb.notes.cmpColorPicker.toolTip = Color del tèxte
bbb.notes.saveBtn = Salvar
bbb.notes.saveBtn.toolTip = Salvar la nòta
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Clicatz sus Autorizar sul convit que s'aficha per verificar que lo partiment d'ecran fonciona corrèctament per vos
bbb.settings.deskshare.start = Verificar lo partiment d'ecran
bbb.settings.voice.volume = Activitat del microfòn
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Error de la version de Flash
bbb.settings.flash.text = Avètz Flash {0} d'installat, mas vos cal aver al mens la version {1} per utilizar BigBlueButton convenablement. Per installar la version la mai recenta de Adobe Flash, clicatz sul boton çaijós.
bbb.settings.flash.command = Installar la novèla version de Flash
bbb.settings.isight.label = Error de webcam iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Installar Flash 10.2 RC2
bbb.settings.warning.label = Atencion
bbb.settings.warning.close = Tampar aquesta alèrta
bbb.settings.noissues = Cap de problèma seriós es pas estat detectat.
bbb.settings.instructions = Acceptar la demanda de Flash per accedir a vòstra webcam. Se la sortida correspond a çò qu'esperàvetz, vòstre navigator es configurat corrèctament. Los problèmas potencials son descriches çaijós, i podètz getar un còp d’uèlh per trobar una solucion.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Cambiar lo cursor del tablèu per un triangle
ltbcustom.bbb.highlighter.toolbar.line = Linha
@@ -600,8 +610,8 @@ bbb.caption.transcript.noowner = Pas cap
bbb.caption.transcript.youowner = Vos
bbb.caption.transcript.pastewarning.title = Avertiment de pegatge de sostítol
bbb.caption.transcript.pastewarning.text = Impossible de pegar mai de {0} caractèrs. Avètz pegat {1} caractèrs.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
bbb.caption.option.label = Opcions
bbb.caption.option.language = Lenga :
bbb.caption.option.language.tooltip = Lenga\:
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Avètz navigat fins al darrièr
bbb.accessibility.chat.chatBox.navigatedLatestRead = Avètz navigat fins al messatge lo mai recent qu'avètz legit.
bbb.accessibility.chat.chatwindow.input = Picada de tèxte
bbb.accessibility.chat.chatwindow.audibleChatNotification = Son de notificacion de chat
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Utilizar las sagetas per navigar entre los messatges.
bbb.accessibility.notes.notesview.input = Picada de nòtas
bbb.shortcuthelp.title = Acorchis de clavièr
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Reduire l'ajuda suls acorchis
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Agrandir l'ajuda suls acorchis
bbb.shortcuthelp.closeBtn.accessibilityName = Tampar l'ajuda suls acorchis
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Acorchis globals
bbb.shortcuthelp.dropdown.presentation = Acorchis de presentacion
bbb.shortcuthelp.dropdown.chat = Acorchis de discussion
bbb.shortcuthelp.dropdown.users = Acorchis utilizaires
bbb.shortcuthelp.dropdown.caption = Acorchis de Sostitolatge
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Acorchi
bbb.shortcuthelp.headers.function = Foncion
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Ajustar las paginas a la pagina
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Far de la persona seleccionada lo presentador
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Ejectar la persona seleccionada de la conferéncia
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Activar o desactivar la sordina per la persona seleccionada
bbb.shortcutkey.users.muteall = 65
@@ -721,7 +731,7 @@ bbb.shortcutkey.users.joinBreakoutRoom.function = Jónher la sala de grop selecc
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Metre lo fòcus suls onglets de la fenèstra de discussion
bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Metre lo fòcus sus la seleccion de la color de la poliça
bbb.shortcutkey.chat.sendMessage = 83
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Publicar
bbb.polling.closeButton.label = Tampar
bbb.polling.customPollOption.label = Vòtes personalizats...
bbb.polling.pollModal.title = Los resultats del vòte en dirècte
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Entrar las causidas del vòte
bbb.polling.respondersLabel.novotes = En espèra de las responsas
bbb.polling.respondersLabel.text = {0} Utilizaires an respondut
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Aplicar los paramètres de verrolhatge
bbb.lockSettings.cancel = Anullar
bbb.lockSettings.cancel.toolTip = Tampar aquesta fenèstra sens salvar
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Verrolhatge del moderator
bbb.lockSettings.privateChat = Discussion privada
bbb.lockSettings.publicChat = Discussion publica
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Microfòn
bbb.lockSettings.layout = Mesa en pagina
bbb.lockSettings.title=Verrolhar los participants
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Verrolhar a la connexion
bbb.users.breakout.breakoutRooms = Metre las salas en pausa
bbb.users.breakout.updateBreakoutRooms = Metre a jorn las Salas de Grop
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = Temps impartit per las salas de grop
bbb.users.breakout.calculatingRemainingTime = Calcul del temps restant...
bbb.users.breakout.closing = Tampadura
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Salas
bbb.users.breakout.roomsCombo.accessibilityName = Nombre de salas de crear
bbb.users.breakout.room = Sala
-bbb.users.breakout.randomAssign = Afectar los utilizaires aleatòriament
bbb.users.breakout.timeLimit = Limit de temps
bbb.users.breakout.durationStepper.accessibilityName = Limit de temps en minutas
bbb.users.breakout.minutes = Minutas
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = Convidar
bbb.users.breakout.close = Tampar
bbb.users.breakout.closeAllRooms = Tampar Totas las Salas de Grop
bbb.users.breakout.insufficientUsers = Nombre d'utilizaires insufisent. Deuriatz apondre al mens un utilizaire per sala
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
bbb.users.breakout.joinSession = Rejónher la session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = Sala
bbb.users.roomsGrid.users = Utilizaires
bbb.users.roomsGrid.action = Accion
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Transferiment àudio
bbb.users.roomsGrid.join = Rejónher
bbb.users.roomsGrid.noUsers = Pas cap d'utilizaire dins aquesta sala
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabi
-bbb.langSelector.az_AZ=Azèri
-bbb.langSelector.eu_EU=Basc
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgar
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinés (Simplificat)
-bbb.langSelector.zh_TW=Chinés (Tradicional)
-bbb.langSelector.hr_HR=Croat
-bbb.langSelector.cs_CZ=Chèc
-bbb.langSelector.da_DK=Danés
-bbb.langSelector.nl_NL=Neerlandés
-bbb.langSelector.en_US=Anglés
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finés
-bbb.langSelector.fr_FR=Francés
-bbb.langSelector.fr_CA=Francés (Quebèc)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=Alemand
-bbb.langSelector.el_GR=Grèc
-bbb.langSelector.he_IL=Ebrèu
-bbb.langSelector.hu_HU=Ongrés
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japonés
-bbb.langSelector.ko_KR=Corean
-bbb.langSelector.lv_LV=Leton
-bbb.langSelector.lt_LT=Lituanian
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepalés
-bbb.langSelector.no_NO=Norvegian
-bbb.langSelector.pl_PL=Polonés
-bbb.langSelector.pt_BR=Portugués (Brasilièr)
-bbb.langSelector.pt_PT=Portugués
-bbb.langSelector.ro_RO=Romanés
-bbb.langSelector.ru_RU=Rus
-bbb.langSelector.sr_SR=Sèrbi (Cirillic)
-bbb.langSelector.sr_RS=Sèrbi (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Eslovac
-bbb.langSelector.sl_SL=Eslovèn
-bbb.langSelector.es_ES=Espanhòl
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Suedés
-bbb.langSelector.th_TH=Tai
-bbb.langSelector.tr_TR=Turc
-bbb.langSelector.uk_UA=Ucraïnian
-bbb.langSelector.vi_VN=Vietnamian
-bbb.langSelector.cy_GB=Galés
-bbb.langSelector.oc=Occitan-Lengadocian
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/or_IN/bbbResources.properties b/bigbluebutton-client/locale/or_IN/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/or_IN/bbbResources.properties
+++ b/bigbluebutton-client/locale/or_IN/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/pl_PL/bbbResources.properties b/bigbluebutton-client/locale/pl_PL/bbbResources.properties
index 5d9eb5e46aef..cbbfa04f6287 100644
--- a/bigbluebutton-client/locale/pl_PL/bbbResources.properties
+++ b/bigbluebutton-client/locale/pl_PL/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Łączenie z serwerem
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Przepraszamy, brak połączenia z serwerem.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Otwórz okno dziennika
bbb.mainshell.meetingNotFound = Nie Znaleziono Spotkania
bbb.mainshell.invalidAuthToken = Nieprawidłowe Potwierdzenie Autentyczności Żetonu
bbb.mainshell.resetLayoutBtn.toolTip = Resetuj układ okien
bbb.mainshell.notification.tunnelling = Tunelowanie
bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Możliwe, że masz stare tłumaczenie dla BigBlueButton.
bbb.oldlocalewindow.reminder2 = Prosimy wyczyścić cache przeglądarki, a następnie spróbować ponownie.
bbb.oldlocalewindow.windowTitle = Uwaga: Nieaktualne tłumaczenie
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Łączenie
bbb.micSettings.webrtc.transferring = Przesyłanie
bbb.micSettings.webrtc.endingecho = Połączenie audio
bbb.micSettings.webrtc.endedecho = Test na echo zakończony.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Pozwolenia Mikrofonu Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Pozwolenia Mikrofonu Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Ostrzeżenie Audio
bbb.micWarning.joinBtn.label = Weź udział w każdym razie
bbb.micWarning.testAgain.label = Testuj ponownie
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Test echo dla WebRTC został n
bbb.webrtcWarning.connection.dropped = Połączenie WebRTC zostało przerwane
bbb.webrtcWarning.connection.reconnecting = Próba ponownego połączenia
bbb.webrtcWarning.connection.reestablished = Ustanowiono ponownie połączenie WebRTC
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Pomoc
bbb.mainToolbar.logoutBtn = Wyloguj
bbb.mainToolbar.logoutBtn.toolTip = Wyloguj
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Wybierz język
bbb.mainToolbar.settingsBtn = Ustawienia
bbb.mainToolbar.settingsBtn.toolTip = Otwórz ustawienia
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Zacznij nagrywanie
bbb.mainToolbar.recordBtn.toolTip.stop = Zakończ nagrywanie
bbb.mainToolbar.recordBtn.toolTip.recording = Sesja jest nagrywana
bbb.mainToolbar.recordBtn.toolTip.notRecording = Sesja nie jest nagrywana
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Potwierdź nagrywanie
bbb.mainToolbar.recordBtn.confirm.message.start = Czy jesteś pewien, że chcesz zacząć nagrywanie tej sesji?
bbb.mainToolbar.recordBtn.confirm.message.stop = Czy jesteś pewien, że chcesz zakończyć nagrywanie tej sesji?
-bbb.mainToolbar.recordBtn..notification.title = Powiadomienia o nagraniu
-bbb.mainToolbar.recordBtn..notification.message1 = Możesz nagrywać to spotkanie.
-bbb.mainToolbar.recordBtn..notification.message2 = Musisz nacisnąć na przycisk Zacznij/Zakończ Nagrywanie na belce tytułowej, aby zacząć/zakończyć nagrywanie.
+bbb.mainToolbar.recordBtn.notification.title = Powiadomienia o nagraniu
+bbb.mainToolbar.recordBtn.notification.message1 = Możesz nagrywać to spotkanie.
+bbb.mainToolbar.recordBtn.notification.message2 = Musisz nacisnąć na przycisk Zacznij/Zakończ Nagrywanie na belce tytułowej, aby zacząć/zakończyć nagrywanie.
bbb.mainToolbar.recordingLabel.recording = (Nagrywanie)
bbb.mainToolbar.recordingLabel.notRecording = Nie Nagrywa
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Konfiguracja powiadomień
bbb.clientstatus.notification = Powiadomienie o nieprzeczytaniu
bbb.clientstatus.close = Zamknij
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Twoja przeglądarka ({0}) jest nieaktualna. Z
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Wtyczka Flash ({0}) jest nieaktualna. Zalecana jest aktualizacja do najnowszej wersji.
bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Zalecane jest użycie przeglądarki Firefox lub Chrome dla lepszej jakości dźwięku.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Zwiń
bbb.window.maximizeRestoreBtn.toolTip = Powiększ
bbb.window.closeBtn.toolTip = Zamknij
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Naciśnij by uczynić Prezenterem
bbb.users.usersGrid.statusItemRenderer.presenter = Prezenter
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Wyczyść status
bbb.users.usersGrid.statusItemRenderer.viewer = Uczestnik
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Udostępnianie kamerki internetowej.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Kliknij aby dać głos użytk
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Kliknij aby wyciszyć użytkownika
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Zablokuj {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Odblokuj {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Wyrzuć użytkownika
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Udostępnij kamerę
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon wyłączony
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon włączony
bbb.users.usersGrid.mediaItemRenderer.noAudio = Nie w konferencji audio
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Wyczyść
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentacja
bbb.presentation.titleWithPres = Prezentacja: {0}
bbb.presentation.quickLink.label = Okno Prezentacji
bbb.presentation.fitToWidth.toolTip = Dopasuj Prezentację do Szerokości
bbb.presentation.fitToPage.toolTip = Dopasuj Prezentację do Strony
bbb.presentation.uploadPresBtn.toolTip = Wgraj Prezentację
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Poprzedni slajd
bbb.presentation.btnSlideNum.accessibilityName = Slajd {0} z {1}
bbb.presentation.btnSlideNum.toolTip = Kliknij aby wybrać slajd
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Wysyłanie zakończone, prosimy czekać aż do
bbb.presentation.uploaded = wysłany.
bbb.presentation.document.supported = Wysłany dokument jest obsługiwany, rozpoczynanie konwersji...
bbb.presentation.document.converted = Poprawnie wykonano konwersję dokumentu.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Błąd wejścia/wyjścia: Prosimy o kontakt z administratorem.
bbb.presentation.error.security = Błąd bezpieczeństwa: Prosimy o kontakt z administratorem.
bbb.presentation.error.convert.notsupported = Błąd: Przesłany dokument nie jest obsługiwany, prosimy o przesłanie dokumentu kompatybilnego.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Wyślij
bbb.fileupload.uploadBtn.toolTip = Wyślij wybrany plik
bbb.fileupload.deleteBtn.toolTip = Usuń prezentację
bbb.fileupload.showBtn = Pokaż
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Pokaż prezentację
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Generowanie miniatur...
bbb.fileupload.progBarLbl = Postęp:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Czat
bbb.chat.quickLink.label = Okno Chatu
bbb.chat.cmpColorPicker.toolTip = Kolor tekstu
bbb.chat.input.accessibilityName = Pole Edycji Wiadomości Chat
bbb.chat.sendBtn.toolTip = Wyślij wiadomość
bbb.chat.sendBtn.accessibilityName = Wyślij wiadomość czatu
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopiuj Cały Tekst
bbb.chat.publicChatUsername = Wszyscy
bbb.chat.optionsTabName = Opcje
@@ -331,13 +334,13 @@ bbb.chat.usersList.accessibilityName = Wybierz użytkownika do prywatnego chatu.
bbb.chat.chatOptions = Opcje czatu
bbb.chat.fontSize = Rozmiar czcionki czatu
bbb.chat.cmbFontSize.toolTip = Wybierz Rozmiar Czcionki dla Wiadomości Chat
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Zwiń okno czatu
bbb.chat.maximizeRestoreBtn.accessibilityName = Powiększ okno czatu
bbb.chat.closeBtn.accessibilityName = Zamknij okno czatu
bbb.chat.chatTabs.accessibleNotice = Nowa wiadomość w tej zakładce.
bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Wiadomość jest za długa o {0} znaków.
bbb.publishVideo.changeCameraBtn.labelText = Zmień kamerę
bbb.publishVideo.changeCameraBtn.toolTip = Kliknij aby otworzyć okno zmiany kamery
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Rozpoczęcie udostępniania
bbb.publishVideo.startPublishBtn.toolTip = Rozpoczęcie udostępniania kamery
bbb.publishVideo.startPublishBtn.errorName = Nie można udostępnić kamerki internetowej. Powód: {0}
bbb.webcamPermissions.chrome.title = Pozwolenia Kamerki Internetowej Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Dokowanie wideo
bbb.videodock.quickLink.label = Okno Kamerek Internetowych
bbb.video.minimizeBtn.accessibilityName = Zwiń okno wideo
@@ -367,89 +370,91 @@ bbb.video.publish.closeBtn.accessName = Zamknij okno dialogowe ustawień kamery
bbb.video.publish.closeBtn.label = Anuluj
bbb.video.publish.titleBar = Okno publikacji kamery
bbb.video.streamClose.toolTip = Zamknij strumień dla: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Przestań słuchać konferencji
bbb.toolbar.phone.toolTip.unmute = Zacznij słuchać konferencji
bbb.toolbar.phone.toolTip.nomic = Nie wykryto mikrofonu
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Udostępnij Obraz Swojej Kamery Internetowej
bbb.toolbar.video.toolTip.stop = Wyłącz Udostępnianie Obrazu Swojej Kamery Internetowej
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Dodaj niestandardowy układ do listy
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Zmień Swój Układ
bbb.layout.loadButton.toolTip = Wczytaj układy z pliku
bbb.layout.saveButton.toolTip = Zapisz układy do pliku
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Zastosuj układ
bbb.layout.combo.custom = * Niestandardowy układ
bbb.layout.combo.customName = Niestandardowy układ
bbb.layout.combo.remote = Zdalny
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Układ został zapisany
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Układ został wczytany
bbb.layout.load.failed = Nie można załadować układów
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Standardowy układ
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Chat video
bbb.layout.name.webcamsfocus = Kamerki internetowe
bbb.layout.name.presentfocus = Prezentacja
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Asystent
bbb.layout.name.lecture = Wykład
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Ołówek
bbb.highlighter.toolbar.pencil.accessibilityName = Zamień kursor na ołówek
bbb.highlighter.toolbar.ellipse = Okrąg
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Wybierz kolor
bbb.highlighter.toolbar.color.accessibilityName = Wybierz kolor do rysowania
bbb.highlighter.toolbar.thickness = Zmień grubość
bbb.highlighter.toolbar.thickness.accessibilityName = Zmiana grubości rysowania
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Wylogowany
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Serwer aplikacji został wyłączony
bbb.logout.asyncerror = Wystąpił błąd Async
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Połączenie z serwerem zostało zakończone
bbb.logout.rejected = Połączenie z serwerem zostało utracone
bbb.logout.invalidapp = Aplikacja red5 nie istnieje
bbb.logout.unknown = Twój klient stracił połączenie z serwerem
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Wylogowałeś się z konferencji
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Moderator wyrzucił Cię ze spotkania.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Jeśli to wylogowanie było niezamierzone, naciśnij na przycisk poniżej by ponownie połączyć.
bbb.logout.refresh.label = Połącz ponownie
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Potwierdź Wylogowanie Się
bbb.logout.confirm.message = Czy jesteś pewien, że chcesz się wylogować?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Tak
bbb.logout.confirm.no = Nie
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Wykryto problemy z połączeniem
bbb.connection.reconnecting=Ponowne łączenie
bbb.connection.reestablished=Przywrócono połączenie
@@ -530,59 +539,60 @@ bbb.notes.title = Notatki
bbb.notes.cmpColorPicker.toolTip = Kolor tekstu
bbb.notes.saveBtn = Zapisz
bbb.notes.saveBtn.toolTip = Zapisz notatkę
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Kliknij zezwalaj aby sprawdzić czy udostępnianie pulpitu działa u Ciebie poprawnie
bbb.settings.deskshare.start = Sprawdź udostępnianie pulpitu
bbb.settings.voice.volume = Aktywność mikrofonu
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Błąd wersji Flash
bbb.settings.flash.text = Posiadasz zainstalowany Flash w wersji {0}, ale nie masz najnowszej wersji {1} wymaganej do używania BigBlueButton. Kliknij aby zainstalować najnowszy Adobe Flash.
bbb.settings.flash.command = Instaluj najnowszy Flash
bbb.settings.isight.label = Błąd kamery iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instaluj Flash 10.2 RC2
bbb.settings.warning.label = Ostrzeżenie
bbb.settings.warning.close = Zamknij to ostrzeżenie
bbb.settings.noissues = Nie wykryto żadnych problemów
bbb.settings.instructions = Zaakceptuj zapytanie Flash. Jeśli się widzisz i słyszysz masz poprawne ustawienia, jeśli coś jest nie tak zobaczysz to poniżej.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Trójkąt
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Zamień kursor na trójkąt
ltbcustom.bbb.highlighter.toolbar.line = Linia
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Tekst
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Zamień kursor na tekst
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Kolor tekstu
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Wielkość czcionki
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Gotowe
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Idź do ostatniej wiadomości.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Idź do ostatniej przeczytanej wiadomości.
bbb.accessibility.chat.chatwindow.input = Wpisz tekst
bbb.accessibility.chat.chatwindow.audibleChatNotification = Dźwiękowe powiadomienia chatu
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Użyj klawiszy strzałek aby poruszać się po wiadomościach chat.
bbb.accessibility.notes.notesview.input = Wpisz tekst
bbb.shortcuthelp.title = Skróty klawiszowe
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Zwiń okno słownika skrótów
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Powiększ okno słownika skrótów
bbb.shortcuthelp.closeBtn.accessibilityName = Zamknij okno słownika skrótów
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Globalne skróty
bbb.shortcuthelp.dropdown.presentation = Skróty prezentacji
bbb.shortcuthelp.dropdown.chat = Skróty czatu
bbb.shortcuthelp.dropdown.users = Skróty użytkownika
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Sktót
bbb.shortcuthelp.headers.function = Funkcja
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Zwiń aktualne okno
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Powiększ aktualne okno
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = A1
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Wycisz i włącz Twój mikrofon
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Aktywuj prezentację
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Aktywuj okno czatu
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Otwórz okno udostępniania pulpitu
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Wyloguj z meetingu
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Podnieś rękę
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Wczytaj prezentację
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Idź do poprzedniego slajdu
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Idź do następnego slajdu
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Dopasuj slajdy do szerokości
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Dopasuj slajdy do strony
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Zrób wybraną osobę prezenterem
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Wyrzuć daną osobę z meetingu
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Wycisz lub włącz wybraną osobę
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Wycisz lub włącz wszystkich użytkowników
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Wycisz wszystkich, ale nie prezentera
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Aktywuj zakładkę czatu
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Pokaż wybór koloru czcionki.
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Idź do najnowszej przeczytanej w
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Debugowanie
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Rozpocznij głosowanie
bbb.polling.startButton.label = Rozpocznij głosowanie
bbb.polling.publishButton.label = Publikuj
bbb.polling.closeButton.label = Zamknij
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Wyniki głosowania
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Wprowadź wybory głosowania
bbb.polling.respondersLabel.novotes = Oczekiwanie na odpowiedzi
bbb.polling.respondersLabel.text = Odpowiedziało {0} użytkowników
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Zamknij Wszystkie Wideo
bbb.users.settings.lockAll = Zablokuj Wszystkich Użytkowników
bbb.users.settings.lockAllExcept = Zablokuj Użytkowników Oprócz Prezentera
bbb.users.settings.lockSettings = Zablokuj Widzów
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Odblokuj Wszystkich Widzów
bbb.users.settings.roomIsLocked = Zablokowany domyślnie
bbb.users.settings.roomIsMuted = Wyciszony domyślnie
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Zastosuj ustawienia blokowania
bbb.lockSettings.cancel = Anuluj
bbb.lockSettings.cancel.toolTip = Zamknij okno bez zapisywania
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Blokowanie moderatora
bbb.lockSettings.privateChat = Chat Prywatny
bbb.lockSettings.publicChat = Chat Publiczny
bbb.lockSettings.webcam = Kamerka Internetowa
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Układ
bbb.lockSettings.title=Zablokuj Widzów
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Cecha
bbb.lockSettings.locked=Zablokowany
bbb.lockSettings.lockOnJoin=Zablokuj podczas dołączania
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/pt_BR/bbbResources.properties b/bigbluebutton-client/locale/pt_BR/bbbResources.properties
index 3c2a291e8128..12ae03e19e3d 100644
--- a/bigbluebutton-client/locale/pt_BR/bbbResources.properties
+++ b/bigbluebutton-client/locale/pt_BR/bbbResources.properties
@@ -1,6 +1,6 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Conectando ao servidor
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = Carregando
bbb.mainshell.statusProgress.cannotConnectServer = Desculpe, não foi possível conectar ao servidor.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Abrir janela de log
@@ -9,16 +9,16 @@ bbb.mainshell.invalidAuthToken = Token de autenticação inválido
bbb.mainshell.resetLayoutBtn.toolTip = Restaurar layout
bbb.mainshell.notification.tunnelling = Tunelando
bbb.mainshell.notification.webrtc = Áudio WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
+bbb.mainshell.fullscreenBtn.toolTip = Alternar para tela cheia
+bbb.mainshell.quote.sentence.1 = Não há segredos para o sucesso. Ele é o resultado da preparação, do trabalho árduo e de aprender com as falhas.
bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
+bbb.mainshell.quote.sentence.2 = Diga-me e eu esquecerei. Ensina-me e eu lembrarei. Envolva-me e eu aprenderei.
bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
+bbb.mainshell.quote.sentence.3 = Eu aprendi o valor do trabalho duro trabalhando duro.
bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
+bbb.mainshell.quote.sentence.4 = Desenvolva uma paixão pela aprendizagem. Se você fizer isso, você nunca deixará de crescer.
bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
+bbb.mainshell.quote.sentence.5 = Pesquisar é criar novo conhecimento.
bbb.mainshell.quote.attribution.5 = Neil Armstrong
bbb.oldlocalewindow.reminder1 = Você deve ter uma versão antiga da tradução do BigBlueButton.
bbb.oldlocalewindow.reminder2 = Por favor, apague os arquivos temporários do seu navegador e tente novamente.
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = Conectando
bbb.micSettings.webrtc.transferring = Transferindo
bbb.micSettings.webrtc.endingecho = Habilitando o áudio
bbb.micSettings.webrtc.endedecho = Teste de eco encerrado.
+bbb.micPermissions.message.browserhttp = Este servidor não está configurado com SSL. Portanto, {0} desativou o compartilhamento de seu microfone.
bbb.micPermissions.firefox.title = Permissões de microfone do Firefox
bbb.micPermissions.firefox.message = Clique em Permitir para dar ao Firefox permissão para utilizar seu microfone.
bbb.micPermissions.chrome.title = Permissões de microfone do Chrome
@@ -116,9 +117,9 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Esta sessão não pode ser gravad
bbb.mainToolbar.recordBtn.confirm.title = Confirmar gravação
bbb.mainToolbar.recordBtn.confirm.message.start = Você tem certeza que deseja iniciar a gravação?
bbb.mainToolbar.recordBtn.confirm.message.stop = Você tem certeza que deseja parar a gravação?
-bbb.mainToolbar.recordBtn..notification.title = Notificação de gravação
-bbb.mainToolbar.recordBtn..notification.message1 = Você pode gravar esta sessão.
-bbb.mainToolbar.recordBtn..notification.message2 = Você precisa clicar no botão de Iniciar/Encerrar gravação na barra superior para começar/terminar a gravação.
+bbb.mainToolbar.recordBtn.notification.title = Notificação de gravação
+bbb.mainToolbar.recordBtn.notification.message1 = Você pode gravar esta sessão.
+bbb.mainToolbar.recordBtn.notification.message2 = Você precisa clicar no botão de Iniciar/Encerrar gravação na barra superior para começar/terminar a gravação.
bbb.mainToolbar.recordingLabel.recording = (Gravando)
bbb.mainToolbar.recordingLabel.notRecording = Não gravando
bbb.waitWindow.waitMessage.message = Você é um convidado. Por favor, aguarde aprovação do moderador.
@@ -129,10 +130,10 @@ bbb.guests.message.plural = {0} usuários desejam entrar nesta reunião
bbb.guests.allowBtn.toolTip = Permitir
bbb.guests.allowEveryoneBtn.text = Permitir todos
bbb.guests.denyBtn.toolTip = Rejeitar
-bbb.guests.denyEveryoneBtn.text = Deny everyone
+bbb.guests.denyEveryoneBtn.text = Negar todos
bbb.guests.rememberAction.text = Lembrar escolha
bbb.guests.alwaysAccept = Sempre aceitar
-bbb.guests.alwaysDeny = Always deny
+bbb.guests.alwaysDeny = Sempre negar
bbb.guests.askModerator = Pergunte ao moderador
bbb.guests.Management = Gerenciamento de convidados
bbb.clientstatus.title = Configuração de Notificações
@@ -245,7 +246,8 @@ bbb.presentation.quickLink.label = Janela de apresentação
bbb.presentation.fitToWidth.toolTip = Ajustar apresentação à largura
bbb.presentation.fitToPage.toolTip = Ajustar apresentação à página
bbb.presentation.uploadPresBtn.toolTip = Carregar apresentação
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip = Fazer download das apresentações
+bbb.presentation.poll.response = Responder à enquete
bbb.presentation.backBtn.toolTip = Slide anterior
bbb.presentation.btnSlideNum.accessibilityName = Slide {0} de {1}
bbb.presentation.btnSlideNum.toolTip = Selecionar um slide
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Envio finalizado. Por favor, aguarde enquanto
bbb.presentation.uploaded = carregado.
bbb.presentation.document.supported = O documento carregado é suportado. Iniciando a conversão...
bbb.presentation.document.converted = O documento foi convertido com sucesso.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed = Tente converter o documento para PDF e fazer o upload novamente.
bbb.presentation.error.document.convert.invalid = Por favor, converta esse documento para PDF.
bbb.presentation.error.io = Erro de entrada e saída: Por favor, contate o administrador.
bbb.presentation.error.security = Erro de segurança: Por favor, contate o administrador.
@@ -283,19 +285,19 @@ bbb.fileupload.uploadBtn = Carregar
bbb.fileupload.uploadBtn.toolTip = Carregar o arquivo selecionado
bbb.fileupload.deleteBtn.toolTip = Excluir apresentação
bbb.fileupload.showBtn = Mostrar
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = Tente outro arquivo
bbb.fileupload.showBtn.toolTip = Mostrar apresentação
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = Fechar
+bbb.fileupload.close.accessibilityName = Fechar janela de upload de arquivos
bbb.fileupload.genThumbText = Gerando miniaturas dos slides...
bbb.fileupload.progBarLbl = Progresso:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
+bbb.fileupload.fileFormatHint = Você pode enviar qualquer documento do Office ou PDF. Para obter o melhor resultado, recomendamos fazer o upload de um PDF.
bbb.fileupload.letUserDownload = Liberar download da apresentação
bbb.fileupload.letUserDownload.tooltip = Marque aqui se você deseja que outros usuários façam o download de sua apresentação
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
+bbb.filedownload.title = Fazer download das apresentações
+bbb.filedownload.close.tooltip = Fechar
+bbb.filedownload.close.accessibilityName = Fechar janela de download de arquivos
+bbb.filedownload.fileLbl = Escolha o arquivo para download:
bbb.filedownload.downloadBtn = Baixar
bbb.filedownload.downloadBtn.toolTip = Baixar apresentação
bbb.filedownload.thisFileIsDownloadable = Arquivo disponível para download
@@ -309,6 +311,7 @@ bbb.chat.saveBtn.toolTip = Salvar chat
bbb.chat.saveBtn.accessibilityName = Salvar chat em arquivo de texto
bbb.chat.saveBtn.label = Salvar
bbb.chat.save.complete = Chat salvo com sucesso
+bbb.chat.save.ioerror = Falha ao salvar o bate-papo. Tente novamente.
bbb.chat.save.filename = chat-publico
bbb.chat.copyBtn.toolTip = Copiar chat
bbb.chat.copyBtn.accessibilityName = Copiar chat para a área de transferência
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Fechar caixa de diálogo de configuraç
bbb.video.publish.closeBtn.label = Cancelar
bbb.video.publish.titleBar = Janela de transmissão de vídeo
bbb.video.streamClose.toolTip = Fechar transmissão para: {0}
+bbb.video.message.browserhttp = Este servidor não está configurado com SSL. Portanto, {0} desativou o compartilhamento de sua webcam.
bbb.screensharePublish.title = Compartilhamento de Tela: Visão do Apresentador
bbb.screensharePublish.pause.tooltip = Pausar compartilhamento de tela
bbb.screensharePublish.pause.label = Pausar
@@ -446,6 +450,7 @@ bbb.toolbar.deskshare.toolTip.stop = Para o Compartilhamento de Tela
bbb.toolbar.sharednotes.toolTip = Abrir notas compartilhadas
bbb.toolbar.video.toolTip.start = Transmitir sua câmera
bbb.toolbar.video.toolTip.stop = Interromper compartilhamento da sua câmera
+bbb.layout.addButton.label = Adicionar
bbb.layout.addButton.toolTip = Adicionar layout atual à lista
bbb.layout.overwriteLayoutName.title = Sobrescrever layout
bbb.layout.overwriteLayoutName.text = Este nome já está em uso. Deseja sobrescrevê-lo?
@@ -459,7 +464,10 @@ bbb.layout.combo.custom = * Layout personalizado
bbb.layout.combo.customName = Layout personalizado
bbb.layout.combo.remote = Remoto
bbb.layout.window.name = Nome do layout
+bbb.layout.window.close.tooltip = Fechar
+bbb.layout.window.close.accessibilityName = Fechar janela de adicionar novos layouts
bbb.layout.save.complete = Layouts salvos com sucesso
+bbb.layout.save.ioerror = Não foi possível salvar os layouts. Tente novamente.
bbb.layout.load.complete = Layouts carregados com sucesso
bbb.layout.load.failed = Não foi possível carregar os layouts
bbb.layout.sync = Seu layout foi aplicado para todos os participantes
@@ -468,7 +476,7 @@ bbb.layout.name.closedcaption = Legenda
bbb.layout.name.videochat = Vídeo Chamada
bbb.layout.name.webcamsfocus = Reunião com câmeras
bbb.layout.name.presentfocus = Reunião com apresentação
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers = Apresentação + Usuários
bbb.layout.name.lectureassistant = Assistente de aula
bbb.layout.name.lecture = Aula
bbb.layout.name.sharednotes = Notas compartilhadas
@@ -493,7 +501,6 @@ bbb.highlighter.toolbar.color.accessibilityName = Cor da anotação do quadro br
bbb.highlighter.toolbar.thickness = Alterar espessura
bbb.highlighter.toolbar.thickness.accessibilityName = Espessura da anotação do quadro branco
bbb.highlighter.toolbar.multiuser = Interação multi-usuário
-bbb.logout.title = Desconectado
bbb.logout.button.label = OK
bbb.logout.appshutdown = A aplicação no servidor foi interrompida
bbb.logout.asyncerror = Um erro assíncrono ocorreu
@@ -505,9 +512,11 @@ bbb.logout.unknown = Seu cliente perdeu conexão com o servidor
bbb.logout.guestkickedout = O moderador não permitiu que você entrasse na reunião
bbb.logout.usercommand = Você saiu da conferência
bbb.logour.breakoutRoomClose = A janela do navegador será fechada
-bbb.logout.ejectedFromMeeting = Um moderador expulsou você da sala.
+bbb.logout.ejectedFromMeeting = Você foi removido da reunião.
bbb.logout.refresh.message = Se você foi desconectado de maneira inesperada, clique no botão baixo para reconectar.
bbb.logout.refresh.label = Reconectar
+bbb.logout.feedback.hint = Como podemos melhorar o BigBlueButton?
+bbb.logout.feedback.label = Adoraríamos saber sobre sua experiência com o BigBlueButton (opcional)
bbb.settings.title = Configurações
bbb.settings.ok = OK
bbb.settings.cancel = Cancelar
@@ -532,32 +541,33 @@ bbb.notes.saveBtn = Salvar
bbb.notes.saveBtn.toolTip = Salvar nota
bbb.sharedNotes.title = Notas compartilhadas
bbb.sharedNotes.quickLink.label = Janela de notas compartilhadas
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
+bbb.sharedNotes.createNoteWindow.label = Nome da nota
+bbb.sharedNotes.createNoteWindow.close.tooltip = Fechar
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Fechar janela de criar novas notas compartilhadas
bbb.sharedNotes.typing.single = {0} está digitando...
bbb.sharedNotes.typing.double = {0} e {1} estão digitando...
bbb.sharedNotes.typing.multiple = Diversas pessoas digitando...
bbb.sharedNotes.save.toolTip = Salvar notas em um arquivo
bbb.sharedNotes.save.complete = Notas salvas com sucesso
+bbb.sharedNotes.save.ioerror = Não foi possível salvar as notas. Tente novamente.
bbb.sharedNotes.save.htmlLabel = Texto formatado (.html)
bbb.sharedNotes.save.txtLabel = Texto plano (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
+bbb.sharedNotes.new.label = Criar
+bbb.sharedNotes.new.toolTip = Criar nota adicional
+bbb.sharedNotes.limit.label = Limite das notas atingido
+bbb.sharedNotes.clear.label = Limpar essa nota compartilhada
bbb.sharedNotes.undo.toolTip = Desfazer modificação
bbb.sharedNotes.redo.toolTip = Refazer modificação
bbb.sharedNotes.toolbar.toolTip = Barra de ferramentas de formatação de texto
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
+bbb.sharedNotes.settings.toolTip = Configurações de notas compartilhadas
+bbb.sharedNotes.clearWarning.title = Limpar notas compartidas
+bbb.sharedNotes.clearWarning.message = Esta ação irá limpar as notas nesta janela para todos, e não há como desfazer. Tem certeza de que deseja limpar essas notas?
bbb.sharedNotes.additionalNotes.closeWarning.title = Fechando notas compartilhadas
bbb.sharedNotes.additionalNotes.closeWarning.message = Esta ação apagará as notas nesta janela para todos, e não é possível desfazer esta ação. Tem certeza que deseja fechar estas notas?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.messageLengthWarning.title = Limite de mudança de caractere excedido
+bbb.sharedNotes.messageLengthWarning.text = Sua alteração excede o limite por {0}. Tente fazer uma mudança menor.
+bbb.sharedNotes.remaining.tooltip = Espaço restante disponível para notas compartilhadas
+bbb.sharedNotes.full.tooltip = Capacidade alcançada (tente excluir algum texto)
bbb.settings.deskshare.instructions = Clique em Permitir na janela que será aberta para verificar se o compartilhamento de tela está funcionando corretamente
bbb.settings.deskshare.start = Verificar compartilhamento de tela
bbb.settings.voice.volume = Atividade do microfone
@@ -576,9 +586,9 @@ bbb.settings.noissues = Nenhum problema foi detectado.
bbb.settings.instructions = Aceite a notificação do Flash quando ele requisitar permissão para acessar sua câmera. Se você consegue ver e ouvir a si mesmo, seu navegador foi configurado corretamente. Outros erros em potencial estão indicados abaixo. Verifique cada um para encontrar uma possível solução.
bbb.bwmonitor.title = Status da rede
bbb.bwmonitor.upload = Enviar
-bbb.bwmonitor.upload.short = Up
+bbb.bwmonitor.upload.short = Enviar
bbb.bwmonitor.download = Baixar
-bbb.bwmonitor.download.short = Down
+bbb.bwmonitor.download.short = Baixar
bbb.bwmonitor.total = Total
bbb.bwmonitor.current = Atual
bbb.bwmonitor.available = Disponível
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Ajustar slides à página
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Tornar a pessoa selecionada o apresentador
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Expulsar a pessoa selecionada da sessão
+bbb.shortcutkey.users.kick.function = Expulsar a pessoa selecionada da reunião
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Silenciar ou acionar microfone da pessoa selecionada
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Publicar
bbb.polling.closeButton.label = Cancelar
bbb.polling.customPollOption.label = Enquete personalizada...
bbb.polling.pollModal.title = Resultados da enquete em tempo real
+bbb.polling.pollModal.hint = Deixe esta janela aberta para permitir que os alunos respondam à enquete. Clicar no botão Publicar ou Fechar finalizará a enquete.
bbb.polling.customChoices.title = Entre com as opções da enquete
bbb.polling.respondersLabel.novotes = Aguardando respostas
bbb.polling.respondersLabel.text = {0} usuários responderam
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Aplicar configurações de restrição
bbb.lockSettings.cancel = Cancelar
bbb.lockSettings.cancel.toolTip = Fecha esta janela sem aplicar
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Bloqueio de moderador
bbb.lockSettings.privateChat = Chat privado
bbb.lockSettings.publicChat = Chat público
bbb.lockSettings.webcam = Câmera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Microfone
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Restringir participantes
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Restringir ao entrar
bbb.users.breakout.breakoutRooms = Salas de Apoio
bbb.users.breakout.updateBreakoutRooms = Atualizar salas de apoio
+bbb.users.breakout.timerForRoom.toolTip = Tempo restante para essa sala de apoio
bbb.users.breakout.timer.toolTip = Tempo restante para as salas de apoio
bbb.users.breakout.calculatingRemainingTime = Calculando tempo restante...
bbb.users.breakout.closing = Fechando
+bbb.users.breakout.closewarning.text = As salas de apoio serão fechadas em um minuto.
bbb.users.breakout.rooms = Salas
bbb.users.breakout.roomsCombo.accessibilityName = Número de sala para criar
bbb.users.breakout.room = Sala
-bbb.users.breakout.randomAssign = Atribuir Usuários Aleatoriamente
bbb.users.breakout.timeLimit = Tempo Limite
bbb.users.breakout.durationStepper.accessibilityName = Tempo limite em minutos
bbb.users.breakout.minutes = Minutos
@@ -836,11 +850,11 @@ bbb.users.breakout.closeAllRooms = Fechar Todas as Salas de Apoio
bbb.users.breakout.insufficientUsers = Usuários insuficientes. Você deve colocar pelo menos um usuário em uma sala de apoio.
bbb.users.breakout.confirm = Entrar em uma sala de apoio
bbb.users.breakout.invited = Você foi convidado a entrar em Sala de Apoio
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
+bbb.users.breakout.accept = Ao aceitar, você deixará automaticamente a conferência de áudio e as videoconferências.
bbb.users.breakout.joinSession = Entrar na reunião
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
+bbb.users.breakout.joinSession.accessibilityName = Entrar na sala de apoio
+bbb.users.breakout.joinSession.close.tooltip = Fechar
+bbb.users.breakout.joinSession.close.accessibilityName = Fechar a janela de juntar-se a sala de apoio
bbb.users.breakout.youareinroom = Você está na Sala de Apoio {0}
bbb.users.roomsGrid.room = Sala
bbb.users.roomsGrid.users = Usuários
@@ -850,54 +864,8 @@ bbb.users.roomsGrid.join = Entrar
bbb.users.roomsGrid.noUsers = Nenhum usuário nesta sala
bbb.langSelector.default=Idioma padrão
-bbb.langSelector.ar=Árabe
-bbb.langSelector.az_AZ=Azeri
-bbb.langSelector.eu_EU=Basco
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Búlgaro
-bbb.langSelector.ca_ES=Catalão
-bbb.langSelector.zh_CN=Chinês (simplificado)
-bbb.langSelector.zh_TW=Chinês (tradicional)
-bbb.langSelector.hr_HR=Croata
-bbb.langSelector.cs_CZ=Tcheco
-bbb.langSelector.da_DK=Dinamarquês
-bbb.langSelector.nl_NL=Holandês
-bbb.langSelector.en_US=Inglês
-bbb.langSelector.et_EE=Estoniano
-bbb.langSelector.fa_IR=Persa
-bbb.langSelector.fi_FI=Finlandês
-bbb.langSelector.fr_FR=Francês
-bbb.langSelector.fr_CA=Francês (Canadense)
-bbb.langSelector.ff_SN=Fula
-bbb.langSelector.de_DE=Alemão
-bbb.langSelector.el_GR=Grego
-bbb.langSelector.he_IL=Hebraico
-bbb.langSelector.hu_HU=Húngaro
-bbb.langSelector.id_ID=Indonésio
-bbb.langSelector.it_IT=Italiano
-bbb.langSelector.ja_JP=Japonês
-bbb.langSelector.ko_KR=Coreano
-bbb.langSelector.lv_LV=Letão
-bbb.langSelector.lt_LT=Lituânia
-bbb.langSelector.mn_MN=Mongol
-bbb.langSelector.ne_NE=Nepalês
-bbb.langSelector.no_NO=Norueguês
-bbb.langSelector.pl_PL=Polonês
-bbb.langSelector.pt_BR=Português (Brasileiro)
-bbb.langSelector.pt_PT=Português
-bbb.langSelector.ro_RO=Romêno
-bbb.langSelector.ru_RU=Russo
-bbb.langSelector.sr_SR=Sérvio (cirílico)
-bbb.langSelector.sr_RS=Sérvio (latino)
-bbb.langSelector.si_LK=Cingalês
-bbb.langSelector.sk_SK=Eslovaco
-bbb.langSelector.sl_SL=Esloveno
-bbb.langSelector.es_ES=Espanhol
-bbb.langSelector.es_LA=Espanhol (latino-americano)
-bbb.langSelector.sv_SE=Sueco
-bbb.langSelector.th_TH=Tailandês
-bbb.langSelector.tr_TR=Turco
-bbb.langSelector.uk_UA=Ucraniano
-bbb.langSelector.vi_VN=Vietnamita
-bbb.langSelector.cy_GB=Galês
-bbb.langSelector.oc=Occitano
+
+bbb.alert.cancel = Cancelar
+bbb.alert.ok = OK
+bbb.alert.no = Não
+bbb.alert.yes = Sim
diff --git a/bigbluebutton-client/locale/pt_PT/bbbResources.properties b/bigbluebutton-client/locale/pt_PT/bbbResources.properties
index 294d87a3a7a8..160d9c09b26f 100644
--- a/bigbluebutton-client/locale/pt_PT/bbbResources.properties
+++ b/bigbluebutton-client/locale/pt_PT/bbbResources.properties
@@ -1,159 +1,160 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Ligando ao Servidor
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Desculpe, não foi possível estabelecer ligação ao servidor.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Abrir janela de registo
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Restaurar layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
bbb.micSettings.title = Teste audio
bbb.micSettings.speakers.header = Testar microfone
bbb.micSettings.microphone.header = Testar microphone
bbb.micSettings.playSound = Testar microfone
bbb.micSettings.playSound.toolTip = Tocar música para testar o seu microfone
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = Testar ou alterar o microfone
bbb.micSettings.changeMic.toolTip = Abrir a janela de definições do microfone - Flash Player
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = Adicione audio
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = Cancelar
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
bbb.micSettings.cancel.toolTip = Cancelar adesão à conferência áudio.
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Ajuda
bbb.mainToolbar.logoutBtn = Sair
bbb.mainToolbar.logoutBtn.toolTip = Sair da sessão
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Selecione idioma
bbb.mainToolbar.settingsBtn = Configurações
bbb.mainToolbar.settingsBtn.toolTip = Abrir configurações
bbb.mainToolbar.shortcutBtn = Atalhos
bbb.mainToolbar.shortcutBtn.toolTip = Abrir janela de atalhos
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
bbb.clientstatus.browser.title = Versão do browser
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimizar
bbb.window.maximizeRestoreBtn.toolTip = Máximizar
bbb.window.closeBtn.toolTip = Fechar
@@ -171,16 +172,16 @@ bbb.users.settings.webcamSettings = Definições da webcam
bbb.users.settings.muteAll = Silenciar todos os participantes
bbb.users.settings.muteAllExcept = Silenciar todos os participantes exceto o apresentador
bbb.users.settings.unmuteAll = Todos os participantes com som
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = Falar
bbb.users.pushToMute.toolTip = Desligar microfone
bbb.users.muteMeBtnTxt.talk = Com som
bbb.users.muteMeBtnTxt.mute = Sem som
bbb.users.muteMeBtnTxt.muted = Sem som
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Lista de participantes. Use as setas para navegar.
bbb.users.usersGrid.nameItemRenderer = Nome
bbb.users.usersGrid.nameItemRenderer.youIdentifier = Tu
@@ -188,64 +189,65 @@ bbb.users.usersGrid.statusItemRenderer = Estado
bbb.users.usersGrid.statusItemRenderer.changePresenter = Clique para conceder a apresentação
bbb.users.usersGrid.statusItemRenderer.presenter = Apresentador
bbb.users.usersGrid.statusItemRenderer.moderator = Espetador
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Vista
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
bbb.users.usersGrid.mediaItemRenderer.talking = A falar
bbb.users.usersGrid.mediaItemRenderer.webcam = A partilhar a webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Ligar som a {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Silenciar {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Bloquear {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Desbloquear {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Expulsar {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = A partilhar a webcam
bbb.users.usersGrid.mediaItemRenderer.micOff = Microfone desligado
bbb.users.usersGrid.mediaItemRenderer.micOn = Microfone ligado
bbb.users.usersGrid.mediaItemRenderer.noAudio = Não está ligado à conferência de audio
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Apresentação
bbb.presentation.titleWithPres = Apresentação\: {0}
bbb.presentation.quickLink.label = Janela de apresentação
bbb.presentation.fitToWidth.toolTip = Ajustar apresentação à largura
bbb.presentation.fitToPage.toolTip = Ajustar apresentação à página
bbb.presentation.uploadPresBtn.toolTip = Submeter apresentação
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Slide anterior.
bbb.presentation.btnSlideNum.accessibilityName = Diapositivo {0} de {1}
bbb.presentation.btnSlideNum.toolTip = Selecione um diapositivo
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Envio finalizado. Por favor, aguarde enquanto
bbb.presentation.uploaded = Enviado.
bbb.presentation.document.supported = O documento é suportado. A iniciar converção...
bbb.presentation.document.converted = Documento convertido com sucesso.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Erro. Por favor, contacte o Administrador.
bbb.presentation.error.security = Erro de segurança. Por favor, contacte o Administrador.
bbb.presentation.error.convert.notsupported = Erro o formato do arquivo enviado não é suportado. Por favor, envie um arquivo compatível.
@@ -264,8 +266,8 @@ bbb.presentation.error.convert.nbpage = Erro a determinar o número de páginas
bbb.presentation.error.convert.maxnbpagereach = Erro. O limite de páginas do ficheiro excedeu. Por favor, envie um arquivo com menos páginas/slides.
bbb.presentation.converted = Convertendo {0} de {1} slides.
bbb.presentation.slider = Nível de zoom da apresentação
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = Arquivo de apresentação
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
@@ -283,72 +285,73 @@ bbb.fileupload.uploadBtn = Enviar
bbb.fileupload.uploadBtn.toolTip = Enviar arquivo
bbb.fileupload.deleteBtn.toolTip = Eliminar apresentação
bbb.fileupload.showBtn = Mostrar
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Mostrar apresentação
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Gerando miniaturas dos slides...
bbb.fileupload.progBarLbl = Progresso:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = Cor do texto
bbb.chat.input.accessibilityName = Campo de edição da mensagem de chat
bbb.chat.sendBtn.toolTip = Enviar menssagem
bbb.chat.sendBtn.accessibilityName = Enviar mensagem de chat
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = Todos
bbb.chat.optionsTabName = Opções
bbb.chat.privateChatSelect = Seleccione uma pessoa para conversar em privado
bbb.chat.private.userLeft = O participante deixou a sessão
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
bbb.chat.usersList.toolTip = Clique no participante para conversar em privado
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Opções de conversação
bbb.chat.fontSize = Tamanho da fonte
bbb.chat.cmbFontSize.toolTip = Selecione o tamanho da fonte das menssagens de chat
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimizar a janela de chat
bbb.chat.maximizeRestoreBtn.accessibilityName = Minimizar a janela de chat
bbb.chat.closeBtn.accessibilityName = Fechar a janela de chat
bbb.chat.chatTabs.accessibleNotice = Novas mensagens neste separador.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Alterar a webcam
bbb.publishVideo.changeCameraBtn.toolTip = Abrir a janela de definições da webcam
bbb.publishVideo.cmbResolution.tooltip = Selecione a resolução da webcam
bbb.publishVideo.startPublishBtn.labelText = Iniciar partilha
bbb.publishVideo.startPublishBtn.toolTip = Iniciar transmissão
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
bbb.video.minimizeBtn.accessibilityName = Minimizar a janela das webcams
bbb.video.maximizeRestoreBtn.accessibilityName = Maximizar a janela das webcams
bbb.video.controls.muteButton.toolTip = Silenciar ou permitir som a {0}
@@ -361,95 +364,97 @@ bbb.video.publish.hint.waitingApproval = À espera de obter aprovação
bbb.video.publish.hint.videoPreview = Pré-visualização da webcam
bbb.video.publish.hint.openingCamera = A ligar à webcam...
bbb.video.publish.hint.cameraDenied = Acesso negado à webcam
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = A publicar...
bbb.video.publish.closeBtn.accessName = Fechar janela de definições da webcam
bbb.video.publish.closeBtn.label = Cancelar
bbb.video.publish.titleBar = Publicar a janela da webcam
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Partilhar webcam
bbb.toolbar.video.toolTip.stop = Parar partilha da webcam
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Adicionar o layout personalizado à lista
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Alterar layout
bbb.layout.loadButton.toolTip = Carregar layouts a partir de um ficheiro
bbb.layout.saveButton.toolTip = Gravar layouts para um ficheiro
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Aplicar um layout
bbb.layout.combo.custom = * Layout personalizado
bbb.layout.combo.customName = Layout personalizado
bbb.layout.combo.remote = Remoto
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Os layouts foram gravados com sucesso
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Os layouts foram carregados com sucesso
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Sublinhar
bbb.highlighter.toolbar.pencil.accessibilityName = Alterar o cursor do whiteboard para lápis
bbb.highlighter.toolbar.ellipse = Circulo
@@ -489,100 +497,102 @@ bbb.highlighter.toolbar.clear.accessibilityName = Limpar a página do whiteboard
bbb.highlighter.toolbar.undo = Anular anotação
bbb.highlighter.toolbar.undo.accessibilityName = Anular a última forma do whiteboard
bbb.highlighter.toolbar.color = Selecionar cor
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = Mudar espessura
bbb.highlighter.toolbar.thickness.accessibilityName = Espessura do desenho
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = O servidor aplicacional foi desligado
bbb.logout.asyncerror = Ocorreu um erro assíncrono
bbb.logout.connectionclosed = A ligação ao servidor for fechada
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = A ligação ao servidor for rejeitada
bbb.logout.invalidapp = aplicação red5 não existe
bbb.logout.unknown = Foi perdida a ligação ao servidor
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Saiu da conferencia
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = Notas
bbb.notes.cmpColorPicker.toolTip = Cor do texto
bbb.notes.saveBtn = Gravar
bbb.notes.saveBtn.toolTip = Gravar nota
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
bbb.settings.deskshare.start = Verificar Partilha de Ambiente de Trabalho
bbb.settings.voice.volume = Actividade de Microfone
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Erro na Versão do flash
bbb.settings.flash.text = Este PC tem instalada a versão {0} do Flash. No entanto, esta aplicação requer pelo menos a versão {1}. O botão abaixo irá instalar a versão mais recente do Adobe Flash.
bbb.settings.flash.command = Instale uma versão mais recente do flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.label =
+bbb.settings.isight.text =
bbb.settings.isight.command = Instale o Flash 10.2 RC2
bbb.settings.warning.label = Aviso
bbb.settings.warning.close = Fechar este aviso
-bbb.settings.noissues = No outstanding issues have been detected.
+bbb.settings.noissues =
bbb.settings.instructions = Aceite a janela de Flash que lhe pede permissões para aceder à webcam. Se o resultado coincidir com o esperado, o browser será configurado corretamente. Outros potenciais problemas são descritos abaixo. Examine-os para encontrar uma possível solução.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Triângulo
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Alterar o cursor do whiteboard para triângulo
ltbcustom.bbb.highlighter.toolbar.line = Linha
@@ -591,193 +601,194 @@ ltbcustom.bbb.highlighter.toolbar.text = Texto
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Alterar o cursor do whiteboard para texto
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Cor de texto
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Tamanho do texto
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
bbb.accessibility.chat.chatBox.reachedFirst = Chegou à primeira mensagem.
bbb.accessibility.chat.chatBox.reachedLatest = Chegou à ultima mensagem.
bbb.accessibility.chat.chatBox.navigatedFirst = Navegou para a primeira mensagem.
bbb.accessibility.chat.chatBox.navigatedLatest = Navegou para a ultima mensagem.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Navegou para a mensagem lida mais recentemente.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Por favor, use as setas direcionais para navegar nas mensagens de chat.
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
bbb.shortcuthelp.title = Atalhos
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimizar a janela de ajuda dos atalhos
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximizar a janela de ajuda dos atalhos
bbb.shortcuthelp.closeBtn.accessibilityName = Fechar a janela de ajuda dos atalhos
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Atalhos globais
bbb.shortcuthelp.dropdown.presentation = Atalhos da apresentação
bbb.shortcuthelp.dropdown.chat = Atalhos do chat
bbb.shortcuthelp.dropdown.users = Atalhos da janela de participantes
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Atalho
bbb.shortcuthelp.headers.function = Função
-bbb.shortcutkey.general.minimize = 189
+bbb.shortcutkey.general.minimize =
bbb.shortcutkey.general.minimize.function = Minimizar a janela atual
-bbb.shortcutkey.general.maximize = 187
+bbb.shortcutkey.general.maximize =
bbb.shortcutkey.general.maximize.function = Maximizar a janela atual
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
+bbb.shortcutkey.share.desktop =
bbb.shortcutkey.share.desktop.function = Abrir janela de partilha do ambiente de trabalho
-bbb.shortcutkey.share.webcam = 66
+bbb.shortcutkey.share.webcam =
bbb.shortcutkey.share.webcam.function = Abrir a janela de partilha da webcam
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
bbb.shortcutkey.logout.function = Sair desta sessão
-bbb.shortcutkey.raiseHand = 82
+bbb.shortcutkey.raiseHand =
bbb.shortcutkey.raiseHand.function = Pedir autorização para falar
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Submeter apresentação
-bbb.shortcutkey.present.previous = 65
+bbb.shortcutkey.present.previous =
bbb.shortcutkey.present.previous.function = Ir para diapositivo anterior
-bbb.shortcutkey.present.select = 83
+bbb.shortcutkey.present.select =
bbb.shortcutkey.present.select.function = Ver todos os diapositivos
-bbb.shortcutkey.present.next = 69
+bbb.shortcutkey.present.next =
bbb.shortcutkey.present.next.function = Ir para próximo diapositivo
-bbb.shortcutkey.present.fitWidth = 70
+bbb.shortcutkey.present.fitWidth =
bbb.shortcutkey.present.fitWidth.function = Ajustar diapositivo à largura
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Ajustar diapositivos à página
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Conceder o controlo de apresentador ao participante selecionado
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Expulsar o participante selecionado da sessão
-bbb.shortcutkey.users.mute = 83
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
bbb.shortcutkey.users.mute.function = Silenciar ou permitir falar o participante selecionado
-bbb.shortcutkey.users.muteall = 65
+bbb.shortcutkey.users.muteall =
bbb.shortcutkey.users.muteall.function = Silenciar ou permitir falar a todos os participantes
-bbb.shortcutkey.users.muteAllButPres = 65
+bbb.shortcutkey.users.muteAllButPres =
bbb.shortcutkey.users.muteAllButPres.function = Silenciar todos os participantes exceto o apresentador
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
+bbb.shortcutkey.chat.focusTabs =
bbb.shortcutkey.chat.focusTabs.function = Ativar separadores do chat
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
bbb.shortcutkey.chat.sendMessage.function = Enviar mensagem de chat
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
bbb.shortcutkey.chat.explanation.function = Para navegar nas mensagens, clique na caixa do chat.
-bbb.shortcutkey.chat.chatbox.advance = 40
+bbb.shortcutkey.chat.chatbox.advance =
bbb.shortcutkey.chat.chatbox.advance.function = Navegar para a mensagem seguinte
-bbb.shortcutkey.chat.chatbox.goback = 38
+bbb.shortcutkey.chat.chatbox.goback =
bbb.shortcutkey.chat.chatbox.goback.function = Navegar para a mensagem anterior
-bbb.shortcutkey.chat.chatbox.repeat = 32
+bbb.shortcutkey.chat.chatbox.repeat =
bbb.shortcutkey.chat.chatbox.repeat.function = Repetir a mensagem atual
-bbb.shortcutkey.chat.chatbox.golatest = 39
+bbb.shortcutkey.chat.chatbox.golatest =
bbb.shortcutkey.chat.chatbox.golatest.function = Navegar para a mensagem mais recente
-bbb.shortcutkey.chat.chatbox.gofirst = 37
+bbb.shortcutkey.chat.chatbox.gofirst =
bbb.shortcutkey.chat.chatbox.gofirst.function = Navegar para a primeira mensagem
-bbb.shortcutkey.chat.chatbox.goread = 75
+bbb.shortcutkey.chat.chatbox.goread =
bbb.shortcutkey.chat.chatbox.goread.function = Navegar para a mensagem lida mais recentemente
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = Fechar
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Iniciar partilha
bbb.publishVideo.changeCameraBtn.labelText = Alterar a webcam
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
bbb.shortcutkey.specialKeys.space = Espaço
bbb.shortcutkey.specialKeys.left = Seta esquerda
@@ -787,117 +798,74 @@ bbb.shortcutkey.specialKeys.down = Seta baixo
bbb.shortcutkey.specialKeys.plus = Mais
bbb.shortcutkey.specialKeys.minus = Menos
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = Cancelar
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ro_RO/bbbResources.properties b/bigbluebutton-client/locale/ro_RO/bbbResources.properties
index 860042c5b65e..8cbc6d162d4f 100644
--- a/bigbluebutton-client/locale/ro_RO/bbbResources.properties
+++ b/bigbluebutton-client/locale/ro_RO/bbbResources.properties
@@ -1,25 +1,25 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Se conectează la server
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Nu s-a putut realiza conexiunea cu serverul.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Afişaţi Jurnalul
bbb.mainshell.meetingNotFound = Conferința nu există
bbb.mainshell.invalidAuthToken = Autentificare invalidă
bbb.mainshell.resetLayoutBtn.toolTip = Reiniţializare Pagină
bbb.mainshell.notification.tunnelling = Tunelare request
bbb.mainshell.notification.webrtc = Audio WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = S-ar putea să aveţi traduceri vechi
bbb.oldlocalewindow.reminder2 = Curăţaţi cache-ul browser-ului şi încercaţi din nou.
bbb.oldlocalewindow.windowTitle = Avertisment\: Traduceri vechi
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Conectare
bbb.micSettings.webrtc.transferring = Transfer
bbb.micSettings.webrtc.endingecho = Conectare audio
bbb.micSettings.webrtc.endedecho = Test audio incheiat
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Permisiuni microfon Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Permisiuni microfon Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Notificare audio
bbb.micWarning.joinBtn.label = Conectare oricum
bbb.micWarning.testAgain.label = Testează din nou
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Testul WebRTC a eşuat neaşte
bbb.webrtcWarning.connection.dropped = Conexiunea WebRTC a fost închisă
bbb.webrtcWarning.connection.reconnecting = Se încearcă reconectarea
bbb.webrtcWarning.connection.reestablished = Counexiunea WebRTC refacută
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Ajutor
bbb.mainToolbar.logoutBtn = Ieşire
bbb.mainToolbar.logoutBtn.toolTip = Ieșire
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Alege limba
bbb.mainToolbar.settingsBtn = Configurări
bbb.mainToolbar.settingsBtn.toolTip = Deschide Configurările
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Start înregistrare
bbb.mainToolbar.recordBtn.toolTip.stop = Stop înregistrare
bbb.mainToolbar.recordBtn.toolTip.recording = Sesiunea se înregistrează
bbb.mainToolbar.recordBtn.toolTip.notRecording = Sesiunea nu se înregistrează
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Confirmă înregistrarea conferinţei
bbb.mainToolbar.recordBtn.confirm.message.start = Eşti sigur că doreşti înregistrarea conferinţei?
bbb.mainToolbar.recordBtn.confirm.message.stop = Eşti sigur că doreşti oprirea înregistrării conferinţei?
-bbb.mainToolbar.recordBtn..notification.title = Notificare înregistrare
-bbb.mainToolbar.recordBtn..notification.message1 = Poţi înregistra conferinţa.
-bbb.mainToolbar.recordBtn..notification.message2 = Poţi utilza butoanele start/stop pentru a porni/opri înregistrarea conferinţei.
+bbb.mainToolbar.recordBtn.notification.title = Notificare înregistrare
+bbb.mainToolbar.recordBtn.notification.message1 = Poţi înregistra conferinţa.
+bbb.mainToolbar.recordBtn.notification.message2 = Poţi utilza butoanele start/stop pentru a porni/opri înregistrarea conferinţei.
bbb.mainToolbar.recordingLabel.recording = (Se înregistrează)
bbb.mainToolbar.recordingLabel.notRecording = Nu se înregistrează
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Configurare notificări
bbb.clientstatus.notification = Notificări necitite
bbb.clientstatus.close = Închide
@@ -150,10 +151,10 @@ bbb.clientstatus.webrtc.almostStrongStatus = Conexiunea WebRTC este în regulă
bbb.clientstatus.webrtc.almostWeakStatus = Conexiunea WebRTC este slabă
bbb.clientstatus.webrtc.weakStatus = Conexiunea WebRTC este slabă
bbb.clientstatus.webrtc.message = Foloseşte Firefox sau Chrome pentru o conexiune audio mai bună.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimizează
bbb.window.maximizeRestoreBtn.toolTip = Maximizează
bbb.window.closeBtn.toolTip = Inchidere
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Click pentru a desemna prezentator
bbb.users.usersGrid.statusItemRenderer.presenter = Prezentator
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Înlătură statusul
bbb.users.usersGrid.statusItemRenderer.viewer = Spectator
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Webcam activ.
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Activează {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Opreşte {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Blochează {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Deblochează {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Elimina participantul {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam activ
bbb.users.usersGrid.mediaItemRenderer.micOff = Microfon oprit
bbb.users.usersGrid.mediaItemRenderer.micOn = Microfon pornit
bbb.users.usersGrid.mediaItemRenderer.noAudio = Audio inactiv în conferinţă
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentare
bbb.presentation.titleWithPres = Prezentarea: {0}
bbb.presentation.quickLink.label = Fereastra prezentare
bbb.presentation.fitToWidth.toolTip = Adaptează prezentarea la laţimea ferestrei
bbb.presentation.fitToPage.toolTip = Adaptează prezentarea la pagina
bbb.presentation.uploadPresBtn.toolTip = Adaugă prezentare
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Slide-ul anterior.
bbb.presentation.btnSlideNum.accessibilityName = Slide-ul {0} din {1}
bbb.presentation.btnSlideNum.toolTip = Selectează un slide
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Încărcare completă. Aşteptaţi până se f
bbb.presentation.uploaded = încărcat.
bbb.presentation.document.supported = Documentul încărcat este acceptat.
bbb.presentation.document.converted = Conversia documentului a reuşit.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = Documentul trebuie să fie în format PDF.
bbb.presentation.error.io = Eroare IO: trebuie să contactaţi un administrator.
bbb.presentation.error.security = Eroare de securitate: trebuie să contactaţi un administrator.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Încărcaţi
bbb.fileupload.uploadBtn.toolTip = Încărcaţi fişierul
bbb.fileupload.deleteBtn.toolTip = Ştergeţi prezentarea
bbb.fileupload.showBtn = Vizualizare
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Vizualizaţi prezentarea
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Se generează miniaturile...
bbb.fileupload.progBarLbl = Progres:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chat
bbb.chat.quickLink.label = Fereastră chat
bbb.chat.cmpColorPicker.toolTip = Culoarea textului
bbb.chat.input.accessibilityName = Scrie textul în chat
bbb.chat.sendBtn.toolTip = Trimiteţi mesajul
bbb.chat.sendBtn.accessibilityName = Trimiteţi mesajul
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Copiază tot textul
bbb.chat.publicChatUsername = Toţi
bbb.chat.optionsTabName = Opţiuni
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Începe partajarea
bbb.publishVideo.startPublishBtn.toolTip = Porniţi fluxul video
bbb.publishVideo.startPublishBtn.errorName = Nu se poate partaja webcam-ul. Motiv: {0}
bbb.webcamPermissions.chrome.title = Permisiuni Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Caemere web
bbb.videodock.quickLink.label = Fereastră camere web
bbb.video.minimizeBtn.accessibilityName = Minimizează fereastra camerelor web
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Inchide fereastra
bbb.video.publish.closeBtn.label = Anulare
bbb.video.publish.titleBar = Partajează camera web
bbb.video.streamClose.toolTip = Închide fluxul pentru: {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = Partajare ecran: previzualizare prezentator
bbb.screensharePublish.pause.tooltip = Suspendă partajarea ecranului
bbb.screensharePublish.pause.label = Suspendă
@@ -428,28 +432,29 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = Nu se poate detecta p
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = Pare că foloseşti modul Incognito/Privat. Asigură-te ca plugin-ul funcţionează în acest mod.
bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click aici pentru instalare
bbb.screensharePublish.WebRTCUseJavaButton.label = Click aici pentru a folosi Java
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Partajare ecran
bbb.screenshareView.fitToWindow = Adaptează la dimensiunea ferestrei
bbb.screenshareView.actualSize = Adaptează la dimensiunea reală a fluxlui video
bbb.screenshareView.minimizeBtn.accessibilityName = Minimizează fereastra de partajare a ecranului
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximizează fereastra de partajare a ecranului
bbb.screenshareView.closeBtn.accessibilityName = Închide fereastra de partajare a ecranului
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Opreşte fluxul audio al conferinţei
bbb.toolbar.phone.toolTip.unmute = Porneşte fluxul audio al conferinţei
bbb.toolbar.phone.toolTip.nomic = Nu s-a detectat nici un microfon
bbb.toolbar.deskshare.toolTip.start = Deschide fereastra de partajare a ecranului
bbb.toolbar.deskshare.toolTip.stop = Opreşte partajarea ecranului
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Partajează webcam-ul
bbb.toolbar.video.toolTip.stop = Opreşte partajarea webcam-ului
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Adaugă layout-ul personalizat listei tale
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Schimbă layout-ul
bbb.layout.loadButton.toolTip = Încarcă un layout din fişier
bbb.layout.saveButton.toolTip = Salvează layout-ul în fişier
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Aplică layout
bbb.layout.combo.custom = * Layout personalizat
bbb.layout.combo.customName = Layout personalizat
bbb.layout.combo.remote = La distantă
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Layout-urile au fost salvate cu succes
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Layout-urile au fost încărcate cu succes
bbb.layout.load.failed = Layout-urile nu au fost încărcate cu succes
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Layout implicit
bbb.layout.name.closedcaption = Subtitrare
bbb.layout.name.videochat = Chat video
bbb.layout.name.webcamsfocus = Conferinţă video
bbb.layout.name.presentfocus = Conferinţă
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Asistent lecţie
bbb.layout.name.lecture = Lecţie
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Evidenţiator
bbb.highlighter.toolbar.pencil.accessibilityName = Schimbă cursorul ecranului în evidenţiator
bbb.highlighter.toolbar.ellipse = Cerc
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Selectaţi Culoarea
bbb.highlighter.toolbar.color.accessibilityName = Selectaţi Culoarea
bbb.highlighter.toolbar.thickness = Schimbă grosimea
bbb.highlighter.toolbar.thickness.accessibilityName = Schimbă grosimea
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logout
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Aplicația server a fost oprită
bbb.logout.asyncerror = A apărut o eroare asincronă
@@ -502,87 +509,90 @@ bbb.logout.connectionfailed = Conexiunea la server a fost închisă
bbb.logout.rejected = Conexiunea la server a fost respinsă
bbb.logout.invalidapp = Aplicatia red5 nu există
bbb.logout.unknown = Clientul dumneavoastră a pierdut conexiunea cu serverul
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Aţi ieşit din conferinţă
bbb.logour.breakoutRoomClose = Fereastra browser-ului va fi închisă
-bbb.logout.ejectedFromMeeting = Moderatorul te-a eliminat din conferinţă
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Daca logout-ul nu era aşteptat apasă Reconectare
bbb.logout.refresh.label = Reconectare
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Confirmă ieşirea din conferinţă
bbb.logout.confirm.message = Sigur vrei sa ieşi din conferinţă?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Da
bbb.logout.confirm.no = Nu
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=S-au detectat probleme de conexiune
bbb.connection.reconnecting=Reconectare
bbb.connection.reestablished=Conexiune restabilită
bbb.connection.bigbluebutton=ServerConferinţă
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = Note
bbb.notes.cmpColorPicker.toolTip = Culoare text
bbb.notes.saveBtn = Salvează
bbb.notes.saveBtn.toolTip = Salvează note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Apăsați "Allow" în fereastra de dialog ce va apărea pentru a verifica faptul că partajarea spațiului de lucru funcționează corect pentru dvs.
bbb.settings.deskshare.start = Verifică partajarea spaţiului de lucru
bbb.settings.voice.volume = Activitate Microfon
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Eroare la versiunea Flash
bbb.settings.flash.text = Aveți instalat Flash, versiunea {0}, dar vă trebuie cel puțin versiunea {1} pentru a rula BigBlueButton in mod adecvat. Apăsați pe butonul de mai jos pentru a instala ultima versiune a Adobe Flash.
bbb.settings.flash.command = Instalați ultima versiune de Flash
bbb.settings.isight.label = Eroare a camerei iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instalează flash 10.2 RC2
bbb.settings.warning.label = Avertisment
bbb.settings.warning.close = Închide acest avertisment
bbb.settings.noissues = N-au fost identificate probleme deosebite.
bbb.settings.instructions = Acceptați cererea de acces la camera video facută de Flash. Dacă vă puteți vedea și auzi, browserul dvs. a fost setat curect. Alte probleme probabile sunt afișate dedesubt. Faceți click pe fiecare pentru a găsi o posibilă soluție.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Triunghi
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Schimbă cursorul în triunghi
ltbcustom.bbb.highlighter.toolbar.line = Linie
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Ai navigat către ultimul mesaj
bbb.accessibility.chat.chatBox.navigatedLatestRead = Ai navigat către ultimul mesaj citit.
bbb.accessibility.chat.chatwindow.input = Scrie
bbb.accessibility.chat.chatwindow.audibleChatNotification = Notificare audio chat
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Foloşte săgeţile pentru a naviga prin mesaje.
bbb.accessibility.notes.notesview.input = Scrie
@@ -647,106 +657,106 @@ bbb.shortcuthelp.browserWarning.text = Lista completă de scurtături poate fi l
bbb.shortcuthelp.headers.shortcut = Scurtătură
bbb.shortcuthelp.headers.function = Funcţie
-bbb.shortcutkey.general.minimize = 189
+bbb.shortcutkey.general.minimize =
bbb.shortcutkey.general.minimize.function = Minimizează fereastra curentă
-bbb.shortcutkey.general.maximize = 187
+bbb.shortcutkey.general.maximize =
bbb.shortcutkey.general.maximize.function = Maximizează fereastra curentă
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Elimină focalizare de pe fereastra de Flash
-bbb.shortcutkey.users.muteme = 77
+bbb.shortcutkey.users.muteme =
bbb.shortcutkey.users.muteme.function = Funcţia Mute/Unmute a microfonului
-bbb.shortcutkey.chat.chatinput = 73
+bbb.shortcutkey.chat.chatinput =
bbb.shortcutkey.chat.chatinput.function = Setează focalizarea pe fereastra chat-ului
-bbb.shortcutkey.present.focusslide = 67
+bbb.shortcutkey.present.focusslide =
bbb.shortcutkey.present.focusslide.function = Setează focalizarea pe fereastra prezentării
-bbb.shortcutkey.whiteboard.undo = 90
+bbb.shortcutkey.whiteboard.undo =
bbb.shortcutkey.whiteboard.undo.function = Înlătură ultima modificare
-bbb.shortcutkey.focus.users = 49
+bbb.shortcutkey.focus.users =
bbb.shortcutkey.focus.users.function = Setează focalizarea pe fereastra utilizatorilor
-bbb.shortcutkey.focus.video = 50
+bbb.shortcutkey.focus.video =
bbb.shortcutkey.focus.video.function = Setează focalizarea pe fereastra webcam-ului
-bbb.shortcutkey.focus.presentation = 51
+bbb.shortcutkey.focus.presentation =
bbb.shortcutkey.focus.presentation.function = Setează focalizarea pe fereastra prezentării
-bbb.shortcutkey.focus.chat = 52
+bbb.shortcutkey.focus.chat =
bbb.shortcutkey.focus.chat.function = Setează focalizarea pe fereastra chat-ului
-bbb.shortcutkey.focus.caption = 53
+bbb.shortcutkey.focus.caption =
bbb.shortcutkey.focus.caption.function = Setează focalizarea pe fereastra legendei
-bbb.shortcutkey.share.desktop = 68
+bbb.shortcutkey.share.desktop =
bbb.shortcutkey.share.desktop.function = Deschide fereastra de partajare a ecranului
-bbb.shortcutkey.share.webcam = 66
+bbb.shortcutkey.share.webcam =
bbb.shortcutkey.share.webcam.function = Deschide fereastra de partajare a webcam-ului
-bbb.shortcutkey.shortcutWindow = 72
+bbb.shortcutkey.shortcutWindow =
bbb.shortcutkey.shortcutWindow.function = Deschide/setează focalizarea pe fereastra scurtăturilor
-bbb.shortcutkey.logout = 76
+bbb.shortcutkey.logout =
bbb.shortcutkey.logout.function = Ieşi din conferinţă
-bbb.shortcutkey.raiseHand = 82
+bbb.shortcutkey.raiseHand =
bbb.shortcutkey.raiseHand.function = Ridică mâna
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Încarcă prezentare
-bbb.shortcutkey.present.previous = 65
+bbb.shortcutkey.present.previous =
bbb.shortcutkey.present.previous.function = Du-te la slide-ul anterior
-bbb.shortcutkey.present.select = 83
+bbb.shortcutkey.present.select =
bbb.shortcutkey.present.select.function = Vezi toate slide-urile
-bbb.shortcutkey.present.next = 69
+bbb.shortcutkey.present.next =
bbb.shortcutkey.present.next.function = Mergi la slide-ul următor
-bbb.shortcutkey.present.fitWidth = 70
+bbb.shortcutkey.present.fitWidth =
bbb.shortcutkey.present.fitWidth.function = Dimensionează slide-ul la lăţimea ferestrei
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Dimensionează slide-ul la lăţimea paginei
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Alocă rolul de prezentator persoanei selectate
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Elimină persoana selectată din conferinţă
-bbb.shortcutkey.users.mute = 83
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
bbb.shortcutkey.users.mute.function = Setează pe mute/unmute persoana selectată
-bbb.shortcutkey.users.muteall = 65
+bbb.shortcutkey.users.muteall =
bbb.shortcutkey.users.muteall.function = Setează pe mute/unmute toţi participanţii
-bbb.shortcutkey.users.muteAllButPres = 65
+bbb.shortcutkey.users.muteAllButPres =
bbb.shortcutkey.users.muteAllButPres.function = Setează pe mute/unmute toţi participanţii cu excepţia prezentatorului
-bbb.shortcutkey.users.breakoutRooms = 75
+bbb.shortcutkey.users.breakoutRooms =
bbb.shortcutkey.users.breakoutRooms.function = Fereastră camere secundare private
-bbb.shortcutkey.users.focusBreakoutRooms = 82
+bbb.shortcutkey.users.focusBreakoutRooms =
bbb.shortcutkey.users.focusBreakoutRooms.function = Setează focalizarea pe fereastra camerelor secundare private
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
+bbb.shortcutkey.users.listenToBreakoutRoom =
bbb.shortcutkey.users.listenToBreakoutRoom.function = Ascultă camera secundară selectată
-bbb.shortcutkey.users.joinBreakoutRoom = 79
+bbb.shortcutkey.users.joinBreakoutRoom =
bbb.shortcutkey.users.joinBreakoutRoom.function = Alatură-te camerei secundare selectate
-bbb.shortcutkey.chat.focusTabs = 89
+bbb.shortcutkey.chat.focusTabs =
bbb.shortcutkey.chat.focusTabs.function = Setează focalizarea pe fereastra chat-ului
-bbb.shortcutkey.chat.focusBox = 82
+bbb.shortcutkey.chat.focusBox =
bbb.shortcutkey.chat.focusBox.function = Setează focalizarea pe fereastra chat-ului
-bbb.shortcutkey.chat.changeColour = 67
+bbb.shortcutkey.chat.changeColour =
bbb.shortcutkey.chat.changeColour.function = Schimbă couloarea fontului
-bbb.shortcutkey.chat.sendMessage = 83
+bbb.shortcutkey.chat.sendMessage =
bbb.shortcutkey.chat.sendMessage.function = Trimite mesaj
-bbb.shortcutkey.chat.closePrivate = 69
+bbb.shortcutkey.chat.closePrivate =
bbb.shortcutkey.chat.closePrivate.function = Închide chat privat
-bbb.shortcutkey.chat.explanation = ----
+bbb.shortcutkey.chat.explanation =
bbb.shortcutkey.chat.explanation.function = Pentru a naviga prin mesaje, setează focalizarea pe fereastra chat-ului
-bbb.shortcutkey.chat.chatbox.advance = 40
+bbb.shortcutkey.chat.chatbox.advance =
bbb.shortcutkey.chat.chatbox.advance.function = Următorul mesaj
-bbb.shortcutkey.chat.chatbox.goback = 38
+bbb.shortcutkey.chat.chatbox.goback =
bbb.shortcutkey.chat.chatbox.goback.function = Mesajul anterior
-bbb.shortcutkey.chat.chatbox.repeat = 32
+bbb.shortcutkey.chat.chatbox.repeat =
bbb.shortcutkey.chat.chatbox.repeat.function = Repetă mesajul
-bbb.shortcutkey.chat.chatbox.golatest = 39
+bbb.shortcutkey.chat.chatbox.golatest =
bbb.shortcutkey.chat.chatbox.golatest.function = Mergi la ultimul mesaj
-bbb.shortcutkey.chat.chatbox.gofirst = 37
+bbb.shortcutkey.chat.chatbox.gofirst =
bbb.shortcutkey.chat.chatbox.gofirst.function = Mergi la primul mesaj
-bbb.shortcutkey.chat.chatbox.goread = 75
+bbb.shortcutkey.chat.chatbox.goread =
bbb.shortcutkey.chat.chatbox.goread.function = Mergi la ultimul mesaj citit
-bbb.shortcutkey.chat.chatbox.debug = 71
+bbb.shortcutkey.chat.chatbox.debug =
bbb.shortcutkey.chat.chatbox.debug.function = Debug
-bbb.shortcutkey.caption.takeOwnership = 79
+bbb.shortcutkey.caption.takeOwnership =
bbb.shortcutkey.caption.takeOwnership.function = Asumă-ţi rolul de autor al mesajului selectat
bbb.polling.startButton.tooltip = Începe un sondaj
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Publică
bbb.polling.closeButton.label = Închide
bbb.polling.customPollOption.label = Sondaj personalizat...
bbb.polling.pollModal.title = Rezultate sondaj in timp real
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Optiuni sondaj
bbb.polling.respondersLabel.novotes = Se aşteapă răspunsuri
bbb.polling.respondersLabel.text = {0} participanţi au răspuns
@@ -763,13 +774,13 @@ bbb.polling.answer.Yes = Da
bbb.polling.answer.No = Nu
bbb.polling.answer.True = Adevărat
bbb.polling.answer.False = Fals
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
bbb.polling.results.accessible.header = Rezultate sondaj
bbb.polling.results.accessible.answer = Răspunsul {0} are {1} voturi.
@@ -779,13 +790,13 @@ bbb.publishVideo.changeCameraBtn.labelText = Schimbă webcam
bbb.accessibility.alerts.madePresenter = Esti prezentator acum.
bbb.accessibility.alerts.madeViewer = Esti spectator acum.
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
bbb.toolbar.videodock.toolTip.closeAllVideos = Închide toate ferestrele video
bbb.users.settings.lockAll = Blocheză toţi participanţii
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Salvează
bbb.lockSettings.cancel = Anulare
bbb.lockSettings.cancel.toolTip = Închide fereastra fără a salva
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Blocheză moderatorul
bbb.lockSettings.privateChat = Chat privat
bbb.lockSettings.publicChat = Chat public
bbb.lockSettings.webcam = Cameră web
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Microfon
bbb.lockSettings.layout = Layout
bbb.lockSettings.title=Blocheză spectatorii
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Blocheză la autentificare
bbb.users.breakout.breakoutRooms = Camere secundare
bbb.users.breakout.updateBreakoutRooms = Actualizează camerele secundare
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = Timp rămas pentru camerele secundare
bbb.users.breakout.calculatingRemainingTime = Se calculează timpul ramas...
bbb.users.breakout.closing = Se închide
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Camere
bbb.users.breakout.roomsCombo.accessibilityName = Numărul de camere
bbb.users.breakout.room = Cameră
-bbb.users.breakout.randomAssign = Alocare aleatoare a participanţilor catre camere
bbb.users.breakout.timeLimit = Limiă de timp
bbb.users.breakout.durationStepper.accessibilityName = Limiă de timp în minute
bbb.users.breakout.minutes = Minute
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = Invită
bbb.users.breakout.close = Închide
bbb.users.breakout.closeAllRooms = Închide toate camerele
bbb.users.breakout.insufficientUsers = Nu sunt suficienţi participanţi. Este necesar cel puţin un participant pe cameră
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = Cameră
bbb.users.roomsGrid.users = Participant
bbb.users.roomsGrid.action = Acţiune
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Transferă audio
bbb.users.roomsGrid.join = Alăturare
bbb.users.roomsGrid.noUsers = Nu sunt participanţi în această cameră
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/ru_RU/bbbResources.properties b/bigbluebutton-client/locale/ru_RU/bbbResources.properties
index 0faeef2358ed..56f7e18aa62c 100755
--- a/bigbluebutton-client/locale/ru_RU/bbbResources.properties
+++ b/bigbluebutton-client/locale/ru_RU/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Подключение к серверу...
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = Загрузка
bbb.mainshell.statusProgress.cannotConnectServer = К сожалению, мы не можем подключиться к серверу.
bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
bbb.mainshell.logBtn.toolTip = Открыть окно журнала
bbb.mainshell.meetingNotFound = Конференция не найдена
bbb.mainshell.invalidAuthToken = Неверный ключ аутентификации
-bbb.mainshell.resetLayoutBtn.toolTip = Сбросить расположение окон
+bbb.mainshell.resetLayoutBtn.toolTip = Сбросить раскладку окон
bbb.mainshell.notification.tunnelling = Туннелирование
bbb.mainshell.notification.webrtc = Трансляция звука с помощью WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip = Переключить полноэкранный режим
+bbb.mainshell.quote.sentence.1 = Нет никаких секретов успеха. Он является результатом подготовки, тяжелой работы и обучения на ошибках.
+bbb.mainshell.quote.attribution.1 = Колин Пауэлл
+bbb.mainshell.quote.sentence.2 = Скажите мне - и я забуду. Научите меня - и я запомню. Вовлеките меня - и я научусь.
+bbb.mainshell.quote.attribution.2 = Бенджамин Франклин
+bbb.mainshell.quote.sentence.3 = Только тяжело работая, я поняла значение тяжелой работы.
+bbb.mainshell.quote.attribution.3 = Маргарет Мид
+bbb.mainshell.quote.sentence.4 = Развивайте страсть к обучению. Если вы это сделаете, вы никогда не перестанете расти.
+bbb.mainshell.quote.attribution.4 = Энтони Дж. Д'Анджело
+bbb.mainshell.quote.sentence.5 = Исследование создает новое знание.
+bbb.mainshell.quote.attribution.5 = Нил Армстронг
bbb.oldlocalewindow.reminder1 = Возможно, у вас устаревшая версия перевода BigBlueButton.
bbb.oldlocalewindow.reminder2 = Пожалуйста, очистите кэш браузера и повторите попытку.
bbb.oldlocalewindow.windowTitle = Внимание: устаревшая версия перевода
@@ -34,14 +34,14 @@ bbb.micSettings.speakers.header = Протестировать динамики
bbb.micSettings.microphone.header = Протестировать микрофон
bbb.micSettings.playSound = Воспроизвести тестовый звук
bbb.micSettings.playSound.toolTip = Воспроизвести музыку для тестирования ваших динамиков
-bbb.micSettings.hearFromHeadset = Вы должны услышать звук из гарнитуры, а не с динамиков компьютера.
+bbb.micSettings.hearFromHeadset = Вы должны услышать звук из гарнитуры, а не из динамиков компьютера.
bbb.micSettings.speakIntoMic = Если Вы используете гарнитуру (или наушники), Вы должны услышать звук из нее -- а не из колонок, подключенных к компьютеру.
bbb.micSettings.echoTestMicPrompt = Это приватный тест корректной настройки звука. Произнесите несколько слов. Слышите ли Вы воспроизведение звука речи?
bbb.micSettings.echoTestAudioYes = Да
bbb.micSettings.echoTestAudioNo = Нет
bbb.micSettings.speakIntoMicTestLevel = Говорите в микрофон. Вы должны видеть, что индикатор движется. Если нет, выберите другой микрофон.
bbb.micSettings.recommendHeadset = Для наилучшей слышимости используйте аудио гарнитуру с микрофоном.
-bbb.micSettings.changeMic = Проверить/сменить микрофон
+bbb.micSettings.changeMic = Проверить или сменить микрофон
bbb.micSettings.changeMic.toolTip = Открыть окно настроек микрофона Flash Player
bbb.micSettings.comboMicList.toolTip = Выбрать микрофон
bbb.micSettings.micRecordVolume.label = Усиление
@@ -50,12 +50,12 @@ bbb.micSettings.nextButton = Далее
bbb.micSettings.nextButton.toolTip = Начать эхо-тест
bbb.micSettings.join = Присоединиться к аудио-конференции
bbb.micSettings.join.toolTip = Войти в аудио-конференцию
-bbb.micSettings.cancel = Отмена
+bbb.micSettings.cancel = Отменить
bbb.micSettings.connectingtoecho = Подключение
bbb.micSettings.connectingtoecho.error = Ошибка эхо теста: Пожалуйста, обратитесь к администратору.
bbb.micSettings.cancel.toolTip = Отменить вход в аудиоконференцию
bbb.micSettings.access.helpButton = Помощь (открыть обучающие видеоролики в новой странице)
-bbb.micSettings.access.title = Настройка звука. Окно будет активно, пока не будет закрыто.
+bbb.micSettings.access.title = Настройки звука. Окно будет оставаться активным, пока не будет закрыто.
bbb.micSettings.webrtc.title = Поддержка WebRTC
bbb.micSettings.webrtc.capableBrowser = Ваш браузер поддерживает WebRTC.
bbb.micSettings.webrtc.capableBrowser.dontuseit = Кликните, чтобы не использовать WebRTC
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Подключение
bbb.micSettings.webrtc.transferring = Идет передача...
bbb.micSettings.webrtc.endingecho = Присоединение к аудио-конференции
bbb.micSettings.webrtc.endedecho = Эхо тест завершен.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Разрешения микрофона Firefox
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message = Нажмите "Разрешить/Allow", чтобы дать возможность Firefox использовать Ваш микрофон.
bbb.micPermissions.chrome.title = Разрешения микрофона Chrome
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message = Нажмите "Разрешить/Allow", чтобы дать возможность Chrome использовать Ваш микрофон.
bbb.micWarning.title = Звуковое предупреждение
bbb.micWarning.joinBtn.label = Все равно войти
bbb.micWarning.testAgain.label = Проверить еще раз
@@ -93,48 +94,48 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Эхо-тест с испол
bbb.webrtcWarning.connection.dropped = WebRTC соединение утрачено
bbb.webrtcWarning.connection.reconnecting = Попытка переподключения
bbb.webrtcWarning.connection.reestablished = WebRTC соединение восстановлено
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title = Обнаружено отсутствие активности
+bbb.inactivityWarning.message = Кажется, эта конференция не активна. Выполняется автоматическое завершение...
+bbb.shuttingDown.message = Эта конференция была закрыта по причине неактивности
+bbb.inactivityWarning.cancel = Отменить
bbb.mainToolbar.helpBtn = Помощь
bbb.mainToolbar.logoutBtn = Выход
bbb.mainToolbar.logoutBtn.toolTip = Выйти
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn = {0} | Сбросить таймер отключения
bbb.mainToolbar.langSelector = Выбрать язык
bbb.mainToolbar.settingsBtn = Настройки
-bbb.mainToolbar.settingsBtn.toolTip = Открыть Настройки
+bbb.mainToolbar.settingsBtn.toolTip = Открыть настройки
bbb.mainToolbar.shortcutBtn = Клавиши быстрого доступа
-bbb.mainToolbar.shortcutBtn.toolTip = Открыть окно со списком сочетаний клавиш
+bbb.mainToolbar.shortcutBtn.toolTip = Открыть окно со списком клавиш быстрого доступа
bbb.mainToolbar.recordBtn.toolTip.start = Начать запись
bbb.mainToolbar.recordBtn.toolTip.stop = Остановить запись
bbb.mainToolbar.recordBtn.toolTip.recording = Эта сессия записывается
bbb.mainToolbar.recordBtn.toolTip.notRecording = Сессия не будет записана
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Только модераторы могут начинать и останавливать запись
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = Эта запись не может быть прервана
+bbb.mainToolbar.recordBtn.toolTip.wontRecord = Эта сессия не может быть записана
bbb.mainToolbar.recordBtn.confirm.title = Подтвердить запись
bbb.mainToolbar.recordBtn.confirm.message.start = Вы уверены, что хотите начать запись сессии?
bbb.mainToolbar.recordBtn.confirm.message.stop = Вы уверены, что хотите остановить запись сессии?
-bbb.mainToolbar.recordBtn..notification.title = Предупреждение о записи
-bbb.mainToolbar.recordBtn..notification.message1 = Вы можете записать эту конференцию.
-bbb.mainToolbar.recordBtn..notification.message2 = Чтобы начать/закончить запись, вы должны нажать на кнопку Начать/Остановить запись на верхней панели.
+bbb.mainToolbar.recordBtn.notification.title = Предупреждение о записи
+bbb.mainToolbar.recordBtn.notification.message1 = Вы можете записать эту конференцию.
+bbb.mainToolbar.recordBtn.notification.message2 = Чтобы начать/закончить запись, вы должны нажать на кнопку Начать/Остановить запись на верхней панели.
bbb.mainToolbar.recordingLabel.recording = (Ведется запись)
bbb.mainToolbar.recordingLabel.notRecording = Запись не ведется
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message = Вы гость. Пожалуйста, подождите, пока модератор подтвердит Ваше участие.
+bbb.waitWindow.waitMessage.title = Ожидание
+bbb.guests.title = Гости
+bbb.guests.message.singular = {0} пользователей(я) хотят подключиться к этой конференции
+bbb.guests.message.plural = {0} пользователей(я) хотят подключиться к этой конференции
+bbb.guests.allowBtn.toolTip = Разрешить
+bbb.guests.allowEveryoneBtn.text = Разрешить всем
+bbb.guests.denyBtn.toolTip = Запретить
+bbb.guests.denyEveryoneBtn.text = Запретить всем
+bbb.guests.rememberAction.text = Запомнить выбор
+bbb.guests.alwaysAccept = Всегда принимать
+bbb.guests.alwaysDeny = Всегда запрещать
+bbb.guests.askModerator = Спросить модератора
+bbb.guests.Management = Управление гостями
bbb.clientstatus.title = Уведомления о конфигурации
bbb.clientstatus.notification = Непрочитанные уведомления
bbb.clientstatus.close = Закрыть
@@ -151,57 +152,57 @@ bbb.clientstatus.webrtc.almostWeakStatus = Ваше качество WebRTC ау
bbb.clientstatus.webrtc.weakStatus = Возможно у вас проблема с WebRTC аудио соединением
bbb.clientstatus.webrtc.message = Рекомендуется использовать Firefox или Chrome для улучшения качества аудио.
bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.notdetected = Версия Java не определена.
+bbb.clientstatus.java.notinstalled = У Вас не установлена Java. Пожалуйста, нажмите здесь для установки последней версии Java, чтобы использовать фунционал демонстрации рабочего стола.
+bbb.clientstatus.java.oldversion = У Вас установлена устаревшая версия Java. Пожалуйста, нажмите здесь для установки последней версии, чтобы использовать фунционал демонстрации рабочего стола.
bbb.window.minimizeBtn.toolTip = Свернуть
bbb.window.maximizeRestoreBtn.toolTip = Развернуть
bbb.window.closeBtn.toolTip = Закрыть
-bbb.videoDock.titleBar = Видео-трансляции
-bbb.presentation.titleBar = Презентация
-bbb.chat.titleBar = Чат
+bbb.videoDock.titleBar = Заголовок окна веб-камеры
+bbb.presentation.titleBar = Заголовок окна презентации
+bbb.chat.titleBar = Заголовок окна чата
bbb.users.title = Пользователи{0} {1}
-bbb.users.titleBar = Пользователи
+bbb.users.titleBar = Заголовок окна пользователей
bbb.users.quickLink.label = Окно пользователей
bbb.users.minimizeBtn.accessibilityName = Свернуть окно пользователей
bbb.users.maximizeRestoreBtn.accessibilityName = Развернуть окно пользователей
bbb.users.settings.buttonTooltip = Настройки
bbb.users.settings.audioSettings = Проверка звука
bbb.users.settings.webcamSettings = Настройки веб-камеры
-bbb.users.settings.muteAll = Выкл. всех
-bbb.users.settings.muteAllExcept = Выключить микрофоны у всех кроме ведущего
-bbb.users.settings.unmuteAll = Включить микрофоны у всех
+bbb.users.settings.muteAll = Выключить микрофоны всех пользователей
+bbb.users.settings.muteAllExcept = Выключить микрофоны у всех, кроме ведущего
+bbb.users.settings.unmuteAll = Включить микрофоны у всех пользователей
bbb.users.settings.clearAllStatus = Очистить все надписи
bbb.users.emojiStatusBtn.toolTip = Обновить мой статус
bbb.users.roomMuted.text = Участники с выключенным микрофоном
bbb.users.roomLocked.text = Участники заблокированы
-bbb.users.pushToTalk.toolTip = Кликните чтоб говорить
-bbb.users.pushToMute.toolTip = Кликните чтоб выключить свой микрофон
-bbb.users.muteMeBtnTxt.talk = Вкл. мик.
-bbb.users.muteMeBtnTxt.mute = Выкл. мик.
-bbb.users.muteMeBtnTxt.muted = Выкл-ый мик.
+bbb.users.pushToTalk.toolTip = Говорите
+bbb.users.pushToMute.toolTip = Отключить свой микрофон
+bbb.users.muteMeBtnTxt.talk = Включить микрофон
+bbb.users.muteMeBtnTxt.mute = Выключить микрофон
+bbb.users.muteMeBtnTxt.muted = Микрофон отключен
bbb.users.usersGrid.contextmenu.exportusers = Скопировать имена пользователей
bbb.users.usersGrid.accessibilityName = Список пользователей. Используйте стрелки для передвижения.
bbb.users.usersGrid.nameItemRenderer = Имя
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = вы
+bbb.users.usersGrid.nameItemRenderer.youIdentifier = Вы
bbb.users.usersGrid.statusItemRenderer = Статус
bbb.users.usersGrid.statusItemRenderer.changePresenter = Нажмите, чтобы сделать ведущим
bbb.users.usersGrid.statusItemRenderer.presenter = Ведущий
bbb.users.usersGrid.statusItemRenderer.moderator = Модератор
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Только голос
+bbb.users.usersGrid.statusItemRenderer.raiseHand = Поднята рука
+bbb.users.usersGrid.statusItemRenderer.applause = Аплодисменты
+bbb.users.usersGrid.statusItemRenderer.thumbsUp = Поддерживаю
+bbb.users.usersGrid.statusItemRenderer.thumbsDown = Не согласен
+bbb.users.usersGrid.statusItemRenderer.speakLouder = Говорите громче
+bbb.users.usersGrid.statusItemRenderer.speakSofter = Говорите мягче
+bbb.users.usersGrid.statusItemRenderer.speakFaster = Говорите быстрее
+bbb.users.usersGrid.statusItemRenderer.speakSlower = Говорите помедленнее
+bbb.users.usersGrid.statusItemRenderer.away = Нет на месте
+bbb.users.usersGrid.statusItemRenderer.confused = Смущенный
+bbb.users.usersGrid.statusItemRenderer.neutral = Нейтральный
+bbb.users.usersGrid.statusItemRenderer.happy = Счастливый
+bbb.users.usersGrid.statusItemRenderer.sad = Грустный
bbb.users.usersGrid.statusItemRenderer.clearStatus = Очистить статус
bbb.users.usersGrid.statusItemRenderer.viewer = Участник
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Транслировать веб камеру.
@@ -214,54 +215,55 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Включить микроф
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Выключить микрофон {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Заблокировать {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Разблокировать {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Исключить {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Веб-камера включена
-bbb.users.usersGrid.mediaItemRenderer.micOff = Выключить микрофон
-bbb.users.usersGrid.mediaItemRenderer.micOn = Включить микрофон
+bbb.users.usersGrid.mediaItemRenderer.micOff = Микрофон выключен
+bbb.users.usersGrid.mediaItemRenderer.micOn = Микрофон включен
bbb.users.usersGrid.mediaItemRenderer.noAudio = Не в аудиоконференции
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser = Сделать {0} модератором
+bbb.users.usersGrid.mediaItemRenderer.demoteUser = Понизить {0} до простого участника
bbb.users.emojiStatus.clear = Очистить
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand = Поднять руку
+bbb.users.emojiStatus.happy = Счастливый
+bbb.users.emojiStatus.neutral = Нейтральный
+bbb.users.emojiStatus.sad = Грустный
+bbb.users.emojiStatus.confused = Смущенный
+bbb.users.emojiStatus.away = Нет на месте
+bbb.users.emojiStatus.thumbsUp = Поддерживаю
+bbb.users.emojiStatus.thumbsDown = Не согласен
+bbb.users.emojiStatus.applause = Аплодисменты
+bbb.users.emojiStatus.agree = Согласен
+bbb.users.emojiStatus.disagree = Я не согласен
+bbb.users.emojiStatus.none = Очистить
+bbb.users.emojiStatus.speakLouder = Не могли бы Вы говорить громче?
+bbb.users.emojiStatus.speakSofter = Не могли бы Вы говорить помягче?
+bbb.users.emojiStatus.speakFaster = Не могли бы Вы говорить побыстрее?
+bbb.users.emojiStatus.speakSlower = Не могли бы Вы говорить помедленнее?
+bbb.users.emojiStatus.beRightBack = Я скоро вернусь
bbb.presentation.title = Презентация
bbb.presentation.titleWithPres = Презентация: {0}
bbb.presentation.quickLink.label = Окно презентаций
-bbb.presentation.fitToWidth.toolTip = Подогнать под ширину окна
-bbb.presentation.fitToPage.toolTip = Подогнать под размер окна
+bbb.presentation.fitToWidth.toolTip = Подогнать под ширину
+bbb.presentation.fitToPage.toolTip = Подогнать под страницу
bbb.presentation.uploadPresBtn.toolTip = Загрузить презентацию
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip = Скачать презентации
+bbb.presentation.poll.response = Ответить на опрос
bbb.presentation.backBtn.toolTip = Предыдущий слайд
bbb.presentation.btnSlideNum.accessibilityName = Слайд {0} из {1}
-bbb.presentation.btnSlideNum.toolTip = Выбор слайда
+bbb.presentation.btnSlideNum.toolTip = Выберите слайд
bbb.presentation.forwardBtn.toolTip = Следующий слайд
bbb.presentation.maxUploadFileExceededAlert = Ошибка: файл превышает допустимый размер.
bbb.presentation.uploadcomplete = Загрузка завершена. Подождите, пока завершится преобразование документа.
bbb.presentation.uploaded = загружено.
bbb.presentation.document.supported = Формат загруженного документа поддерживается. Идет преобразование...
bbb.presentation.document.converted = Документ успешно преобразован.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed = Попробуйте преобразовать документ в PDF и загрузить еще раз.
bbb.presentation.error.document.convert.invalid = Конвертируйте документ в PDF формат, пожалуйста.
bbb.presentation.error.io = Ошибка ввода-вывода: свяжитесь с администратором.
bbb.presentation.error.security = Ошибка безопасности: свяжитесь с администратором.
-bbb.presentation.error.convert.notsupported = Ошибка: формат загруженного файла не поддерживается. Выберите файл с совместимым форматом.
-bbb.presentation.error.convert.nbpage = Ошибка: не удалось определить число страниц в загруженном файле.
-bbb.presentation.error.convert.maxnbpagereach = Ошибка: в документе слишком много страниц.
+bbb.presentation.error.convert.notsupported = Ошибка: формат загруженного документа не поддерживается. Пожалуйста, загрузите файл совместимого формата.
+bbb.presentation.error.convert.nbpage = Ошибка: не удалось определить число страниц в загруженном документе.
+bbb.presentation.error.convert.maxnbpagereach = Ошибка: в загруженном документе слишком много страниц.
bbb.presentation.converted = Преобразовано {0} слайдов из {1}.
bbb.presentation.slider = Уровень масштабирования презентации
bbb.presentation.slideloader.starttext = Начать текст слайда
@@ -277,60 +279,61 @@ bbb.presentation.maximizeRestoreBtn.accessibilityName = Развернуть о
bbb.presentation.closeBtn.accessibilityName = Закрыть окно презентации
bbb.fileupload.title = Добавить файлы к вашей презентации
bbb.fileupload.lblFileName.defaultText = Файл не выбран
-bbb.fileupload.selectBtn.label = Выбрать файл
-bbb.fileupload.selectBtn.toolTip = Открыть окно для выбора файла
+bbb.fileupload.selectBtn.label = Выберите файл
+bbb.fileupload.selectBtn.toolTip = Открыть диалоговое окно для выбора файла
bbb.fileupload.uploadBtn = Загрузить
bbb.fileupload.uploadBtn.toolTip = Загрузить выбранный файл
bbb.fileupload.deleteBtn.toolTip = Удалить презентацию
bbb.fileupload.showBtn = Показать
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = Попробуйте другой файл
bbb.fileupload.showBtn.toolTip = Показать презентацию
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = Закрыть
+bbb.fileupload.close.accessibilityName = Закрыть диалоговое окно загрузки файла
bbb.fileupload.genThumbText = Создание миниатюр..
bbb.fileupload.progBarLbl = Загрузка:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint = Вы можете загрузить любой документ в формате Office или Portable Document Format (PDF). Для получения наилучшего результата мы рекомендуем загружать документы в формате PDF.
+bbb.fileupload.letUserDownload = Разрешить скачивание презентации
+bbb.fileupload.letUserDownload.tooltip = Нажмите здесь, если Вы хотите, чтобы другие участники скачали Вашу презентацию
+bbb.filedownload.title = Скачать эти презентации
+bbb.filedownload.close.tooltip = Закрыть
+bbb.filedownload.close.accessibilityName = Закрыть диалоговое окно скачивания файла
+bbb.filedownload.fileLbl = Выберите файл для загрузки:
+bbb.filedownload.downloadBtn = Скачать
+bbb.filedownload.downloadBtn.toolTip = Скачать презентацию
+bbb.filedownload.thisFileIsDownloadable = Файл иожно скачать
bbb.chat.title = Чат
bbb.chat.quickLink.label = Окно чата
bbb.chat.cmpColorPicker.toolTip = Цвет текста
bbb.chat.input.accessibilityName = Поле редактирования
bbb.chat.sendBtn.toolTip = Отправить сообщение
bbb.chat.sendBtn.accessibilityName = Отправить сообщение чата
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip = Сохранить чат
+bbb.chat.saveBtn.accessibilityName = Сохранить чат в текстовый файл
+bbb.chat.saveBtn.label = Сохранить
+bbb.chat.save.complete = Час сохранен успешно
+bbb.chat.save.ioerror = Чат не сохранен. Попробуйте еще раз.
+bbb.chat.save.filename = Публичный чат
+bbb.chat.copyBtn.toolTip = Скопировать чат
+bbb.chat.copyBtn.accessibilityName = Скопировать чат в буфер обмена
+bbb.chat.copyBtn.label = Копировать
+bbb.chat.copy.complete = Чат скопирован в буфер обмена
+bbb.chat.clearBtn.toolTip = Очистить публичный чат
+bbb.chat.clearBtn.accessibilityName = Очистить историю публичного чата
+bbb.chat.clearBtn.chatMessage = История публичного чата очищена модератором
+bbb.chat.clearBtn.alert.title = Предупреждение
+bbb.chat.clearBtn.alert.text = Вы собираетесь очистить историю публичного чата, и это действие необратимо. Хотите продолжить?
bbb.chat.contextmenu.copyalltext = Копировать весь текст
bbb.chat.publicChatUsername = Публичный
-bbb.chat.optionsTabName = Настройки
-bbb.chat.privateChatSelect = Выбрать пользователя для частного общения
+bbb.chat.optionsTabName = Параметры
+bbb.chat.privateChatSelect = Выберите участника для приватного общения
bbb.chat.private.userLeft = Пользователь вышел.
bbb.chat.private.userJoined = Пользователь присоединился.
bbb.chat.private.closeMessage = Вы можете закрыть вкладку, используя комбинацию клавиш {0}.
-bbb.chat.usersList.toolTip = Выбрать участника, чтобы открыть частный чат
+bbb.chat.usersList.toolTip = Выберите пользователя для начала приватного чата
bbb.chat.usersList.accessibilityName = Выберите с кем начать приватный чат. Кнопки-стрелки для перемещения.
-bbb.chat.chatOptions = Настройка чата
-bbb.chat.fontSize = Размер шрифта чата
-bbb.chat.cmbFontSize.toolTip = Выбрать размер шрифта чата
+bbb.chat.chatOptions = Параметры чата
+bbb.chat.fontSize = Размер шрифта сообщений чата
+bbb.chat.cmbFontSize.toolTip = Выберите размер шрифта сообщений чата
bbb.chat.messageList = Сообщения чата
bbb.chat.minimizeBtn.accessibilityName = Свернуть окно чата
bbb.chat.maximizeRestoreBtn.accessibilityName = Развернуть окно чата
@@ -339,14 +342,14 @@ bbb.chat.chatTabs.accessibleNotice = Новые сообщения в этой
bbb.chat.chatMessage.systemMessage = Система
bbb.chat.chatMessage.stringRespresentation = От {0} {1} в {2}
bbb.chat.chatMessage.tooLong = Сообщение слишком длинное - на {0} символ(ов)
-bbb.publishVideo.changeCameraBtn.labelText = Изменить настройки веб-камеры
-bbb.publishVideo.changeCameraBtn.toolTip = Кликните, чтобы открыть окно смены веб-камеры
-bbb.publishVideo.cmbResolution.tooltip = Выбрать разрешение веб-камеры
-bbb.publishVideo.startPublishBtn.labelText = Начать трансляцию
+bbb.publishVideo.changeCameraBtn.labelText = Сменить веб-камеру
+bbb.publishVideo.changeCameraBtn.toolTip = Открыть диалоговое окно смены веб-камеры
+bbb.publishVideo.cmbResolution.tooltip = Выберите разрешение веб-камеры
+bbb.publishVideo.startPublishBtn.labelText = Начать демонстрацию
bbb.publishVideo.startPublishBtn.toolTip = Начать видеотрансляцию
bbb.publishVideo.startPublishBtn.errorName = Невозможно показать веб-камеру. Причина: {0}
bbb.webcamPermissions.chrome.title = Разрешения веб-камеры в Chrome
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message = Нажмите "Разрешить/Allow", чтобы дать возможность Chrome использовать Вашу веб-камеру.
bbb.videodock.title = Веб-камеры
bbb.videodock.quickLink.label = Окно веб-камер
bbb.video.minimizeBtn.accessibilityName = Свернуть окно веб-камер
@@ -356,17 +359,18 @@ bbb.video.controls.switchPresenter.toolTip = Сделать {0} ведущим
bbb.video.controls.ejectUserBtn.toolTip = Исключить {0} из конференции
bbb.video.controls.privateChatBtn.toolTip = Чат с {0}
bbb.video.publish.hint.noCamera = Веб-камера недоступна
-bbb.video.publish.hint.cantOpenCamera = Невозможно открыть веб-камеру
-bbb.video.publish.hint.waitingApproval = Ожидаем разрешение
+bbb.video.publish.hint.cantOpenCamera = Невозможно подключиться к Вашей веб-камере
+bbb.video.publish.hint.waitingApproval = Ожидаем разрешения
bbb.video.publish.hint.videoPreview = Предварительный просмотр веб-камеры
-bbb.video.publish.hint.openingCamera = Открытие веб-камеры...
+bbb.video.publish.hint.openingCamera = Подключение к веб-камере...
bbb.video.publish.hint.cameraDenied = Доступ к веб-камере запрещен
-bbb.video.publish.hint.cameraIsBeingUsed = Невозможно открыть камеру, так как она используется другим приложением.
+bbb.video.publish.hint.cameraIsBeingUsed = Невозможно подключиться к Вашей веб-камере. Возможно, она используется другим приложением.
bbb.video.publish.hint.publishing = Публикация...
-bbb.video.publish.closeBtn.accessName = Закрыть окно настроек веб-камеры
-bbb.video.publish.closeBtn.label = Отмена
-bbb.video.publish.titleBar = Окно включения веб-камеры
+bbb.video.publish.closeBtn.accessName = Закрыть диалоговое окно настроек веб-камеры
+bbb.video.publish.closeBtn.label = Отменить
+bbb.video.publish.titleBar = Окно трансляции веб-камеры
bbb.video.streamClose.toolTip = Закрыть трансляцию для: {0}
+bbb.video.message.browserhttp = Этот сервер не настроен на использование SSL. Как результат, {0} отключает трансляцию изображения с Вашей веб-камеры.
bbb.screensharePublish.title = Демонстрация экрана: предпросмотр в режиме ведущего
bbb.screensharePublish.pause.tooltip = Приостановить показ экрана
bbb.screensharePublish.pause.label = Пауза
@@ -428,54 +432,58 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = Не удалось
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = Похоже что вы в режиме инкогнито или используете приватный режим просмотра. Удостоверьтесь в настройках расширения, что вы разрешаете ему работать в инкогнито/приватном режиме просмотра.
bbb.screensharePublish.WebRTCExtensionInstallButton.label = Нажмите здесь, чтобы установить
bbb.screensharePublish.WebRTCUseJavaButton.label = Демонстрировать экран используя Java
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label = Видео загружается... Подождите, пожалуйста
+bbb.screensharePublish.sharingMessage= Это Ваш экран, который демонстрируется
bbb.screenshareView.title = Демонстрация экрана
bbb.screenshareView.fitToWindow = Подогнать под размеры окна
bbb.screenshareView.actualSize = Оригинальный размер
bbb.screenshareView.minimizeBtn.accessibilityName = Свернуть окно демонстрации экрана
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Развернуть окно демонстрации экрана
bbb.screenshareView.closeBtn.accessibilityName = Закрыть окно демонстрации экрана
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start = Включить звук (микрофон или только прослушивание)
+bbb.toolbar.phone.toolTip.stop = Отключить звук
bbb.toolbar.phone.toolTip.mute = Прекратить слушать конференцию
bbb.toolbar.phone.toolTip.unmute = Начать слушать конференцию
bbb.toolbar.phone.toolTip.nomic = Микрофон не обнаружен
-bbb.toolbar.deskshare.toolTip.start = Открыть окно трансляции экрана
-bbb.toolbar.deskshare.toolTip.stop = Остановить демонстрацию экрана
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Включить трансляцию вашей веб-камеры
-bbb.toolbar.video.toolTip.stop = Остановить трансляцию вашей веб-камеры
-bbb.layout.addButton.toolTip = Добавить в список схему пользователя
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Сменить схему окон
-bbb.layout.loadButton.toolTip = Загрузить схемы из файла
-bbb.layout.saveButton.toolTip = Сохранить схемы в файл
-bbb.layout.lockButton.toolTip = Заблокировать схему
-bbb.layout.combo.prompt = Применить схему
-bbb.layout.combo.custom = * Пользовательская схема
-bbb.layout.combo.customName = Пользовательская схема
+bbb.toolbar.deskshare.toolTip.start = Открыть окно демонстрации экрана
+bbb.toolbar.deskshare.toolTip.stop = Остановить демонстрацию Вашего экрана
+bbb.toolbar.sharednotes.toolTip = Открыть общие заметки
+bbb.toolbar.video.toolTip.start = Включить трансляцию Вашей веб-камеры
+bbb.toolbar.video.toolTip.stop = Остановить трансляцию Вашей веб-камеры
+bbb.layout.addButton.label = Добавить
+bbb.layout.addButton.toolTip = Добавить пользовательскую раскладку в список
+bbb.layout.overwriteLayoutName.title = Перезаписать раскладку
+bbb.layout.overwriteLayoutName.text = Это имя уже используется. Хотите перезаписать?
+bbb.layout.broadcastButton.toolTip = Применить текущую раскладку для всех участников
+bbb.layout.combo.toolTip = Сменить Вашу раскладку
+bbb.layout.loadButton.toolTip = Загрузить раскладки из файла
+bbb.layout.saveButton.toolTip = Сохранить раскладки в файл
+bbb.layout.lockButton.toolTip = Заблокировать раскладку
+bbb.layout.combo.prompt = Применить раскладку
+bbb.layout.combo.custom = * Пользовательская раскладка
+bbb.layout.combo.customName = Пользовательская раскладка
bbb.layout.combo.remote = Удаленный
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Схемы успешно сохранены
-bbb.layout.load.complete = Схемы успешно загруженны
-bbb.layout.load.failed = Не удается загрузить макеты
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.window.name = Название раскладки
+bbb.layout.window.close.tooltip = Закрыть
+bbb.layout.window.close.accessibilityName = Закрыть окно добавления новой раскладки
+bbb.layout.save.complete = Раскладки сохранены успешно
+bbb.layout.save.ioerror = Раскладки не сохранены. Попробуйте еще раз.
+bbb.layout.load.complete = Раскладки загружены успешно
+bbb.layout.load.failed = Не удается загрузить раскладки
+bbb.layout.sync = Ваша раскладка отправлена всем участникам
bbb.layout.name.defaultlayout = Расположение окон по умолчанию
bbb.layout.name.closedcaption = Субтитры
bbb.layout.name.videochat = Видеочат
bbb.layout.name.webcamsfocus = Видеоконференция
bbb.layout.name.presentfocus = Презентация
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers = Презентация + Пользователи
bbb.layout.name.lectureassistant = Помощник ведущего
bbb.layout.name.lecture = Лекция
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes = Общие заметки
+bbb.layout.addCurrentToFileWindow.title = Добавить текущую раскладку в файл
+bbb.layout.addCurrentToFileWindow.text = Хотите сохранить текущую раскладку в файл?
+bbb.layout.denyAddToFile.toolTip = Запретить добавление текущей раскладки
+bbb.layout.confirmAddToFile.toolTip = Подтвердите добавление текущей раскладки
bbb.highlighter.toolbar.pencil = Карандаш
bbb.highlighter.toolbar.pencil.accessibilityName = Переключить курсор на карандаш
bbb.highlighter.toolbar.ellipse = Окружность
@@ -486,14 +494,13 @@ bbb.highlighter.toolbar.panzoom = Сдвиг и масштабирование
bbb.highlighter.toolbar.panzoom.accessibilityName = Переключить курсор на сдвиг и масштабирование
bbb.highlighter.toolbar.clear = Очистить все надписи
bbb.highlighter.toolbar.clear.accessibilityName = Очистить страницу доски
-bbb.highlighter.toolbar.undo = Отменить последнюю надпись
+bbb.highlighter.toolbar.undo = Отменить надпись
bbb.highlighter.toolbar.undo.accessibilityName = Отменить последнюю фигуру на доске
bbb.highlighter.toolbar.color = Выбрать цвет
bbb.highlighter.toolbar.color.accessibilityName = Цвет маркера
bbb.highlighter.toolbar.thickness = Выбрать толщину линий
bbb.highlighter.toolbar.thickness.accessibilityName = Толщина рисования
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Вышли
+bbb.highlighter.toolbar.multiuser = Многопользовательское рисование
bbb.logout.button.label = OK
bbb.logout.appshutdown = Серверное приложение выключилось
bbb.logout.asyncerror = Ошибка асинхронности
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Соединение с сервером поте
bbb.logout.rejected = Соединение с сервером отклонено
bbb.logout.invalidapp = Приложение red5 отсутствует
bbb.logout.unknown = Ваш клиент потерял соединение с сервером
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout = Модератор не разрешил Вам подключение к этой конференции
bbb.logout.usercommand = Вы вышли из конференции
bbb.logour.breakoutRoomClose = Ваше окно браузера будет закрыто
-bbb.logout.ejectedFromMeeting = Модератор исключил вас из конференции.
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Если этот выход был неожиданным нажмите на кнопку ниже, чтобы восстановить подключение.
bbb.logout.refresh.label = Повторное подключение
-bbb.settings.title = Settings
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title = Настройки
bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.settings.cancel = Отменить
+bbb.settings.btn.toolTip = Открыть окно настройки
bbb.logout.confirm.title = Подтвердите выход
bbb.logout.confirm.message = Вы уверены, что хотите выйти?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting = Да и завершить конференцию
bbb.logout.confirm.yes = Да
bbb.logout.confirm.no = Нет
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title = Предупреждение
+bbb.endSession.confirm.message = Если Вы закроете эту сессию, все участники будут отключены. Хотите продолжить?
bbb.connection.failure=Обнаружены проблемы подключения
bbb.connection.reconnecting=Переподключение
bbb.connection.reestablished=Соединение восстановлено
@@ -530,59 +539,60 @@ bbb.notes.title = Заметки
bbb.notes.cmpColorPicker.toolTip = Цвет текста
bbb.notes.saveBtn = Сохранить
bbb.notes.saveBtn.toolTip = Сохранить заметку
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title = Общие заметки
+bbb.sharedNotes.quickLink.label = Окно общих заметок
+bbb.sharedNotes.createNoteWindow.label = Название заметки
+bbb.sharedNotes.createNoteWindow.close.tooltip = Закрыть
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Закрыть диалоговое окно создания новой заметки
+bbb.sharedNotes.typing.single = {0} печатает...
+bbb.sharedNotes.typing.double = {0} и {1} печатают...
+bbb.sharedNotes.typing.multiple = Несколько человек печатают...
+bbb.sharedNotes.save.toolTip = Сохранить заметки в файл
+bbb.sharedNotes.save.complete = Заметки сохранены успешно
+bbb.sharedNotes.save.ioerror = Заметки не сохранены. Попробуйте еще раз.
+bbb.sharedNotes.save.htmlLabel = Форматированный текст (.html)
+bbb.sharedNotes.save.txtLabel = Простой текст (.txt)
+bbb.sharedNotes.new.label = Создать
+bbb.sharedNotes.new.toolTip = Создать дополнительную заметку
+bbb.sharedNotes.limit.label = Достигнут лимит заметок
+bbb.sharedNotes.clear.label = Очистить эту заметку
+bbb.sharedNotes.undo.toolTip = Отменить изменения
+bbb.sharedNotes.redo.toolTip = Повторить изменения
+bbb.sharedNotes.toolbar.toolTip = Панель инструментов форматирования текста
+bbb.sharedNotes.settings.toolTip = Настройки общих заметок
+bbb.sharedNotes.clearWarning.title = Очистка общих заметок
+bbb.sharedNotes.clearWarning.message = Это действие безвозвратно удалит заметки, размещенные на этом окне, для всех. Вы уверены, что хотите очистить эти заметки?
+bbb.sharedNotes.additionalNotes.closeWarning.title = Закрытие общих заметок
+bbb.sharedNotes.additionalNotes.closeWarning.message = Это действие безвозвратно удалит заметки, размещенные на этом окне, для всех. Вы уверены, что хотите закрыть эти заметки?
+bbb.sharedNotes.messageLengthWarning.title = Превышен лимит изменения символа
+bbb.sharedNotes.messageLengthWarning.text = Ваши изменения превысили лимит на {0}. Попробуйте сделать меньше изменений.
+bbb.sharedNotes.remaining.tooltip = Оствшееся место для общих заметок
+bbb.sharedNotes.full.tooltip = Достигнут предел (попробуйте удалить часть текста)
bbb.settings.deskshare.instructions = Нажмите кнопку 'Разрешить' на всплывающем окне, чтобы удостовериться, что демонстрация рабочего стола работает корректно
bbb.settings.deskshare.start = Проверить демонстрацию рабочего стола
bbb.settings.voice.volume = Активность микрофона
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label = Ошибка версии Java
+bbb.settings.java.text = У Вас установлена Java {0}. Для использования функционала демонстрации рабочего стола в BigBlueButton необходима, как минимум, версия {1}. Кнопка ниже установит последнюю версию Java JRE.
+bbb.settings.java.command = Установить последнюю версию Java
bbb.settings.flash.label = Ошибка версии Flash
-bbb.settings.flash.text = У вас установленный Flash версии {0}, но для корректной работы BigBlueButton необходим Flash, по крайней мере, версии {1}. Нажмите на кнопку нижу для установки последней версии Adobe Flash.
+bbb.settings.flash.text = У вас установлен Flash версии {0}. Для корректной работы BigBlueButton необходима, по крайней мере, версия {1}. Нажмите на кнопку ниже для установки последней версии Adobe Flash.
bbb.settings.flash.command = Установить новейшую версию Flash
bbb.settings.isight.label = Ошибка веб-камеры iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text = Если у Вас проблемы с веб-камерой iSight, это может быть связано с тем, что Вы используете OS X 10.6.5, в которой есть известная проблема при взаимодействии Flash с веб-камерой iSight.\nЧтобы это исправить, воспользуйтесь предложенной ссылкой для установки новой версии Flash-плеера или обновите Ваш Mac до новой версии.
bbb.settings.isight.command = Установить Flash 10.2 RC2
bbb.settings.warning.label = Предупреждение
bbb.settings.warning.close = Закрыть это предупреждение
-bbb.settings.noissues = Ошибок не найдено.
-bbb.settings.instructions = Разрешите Flash обращаться к веб-камере. Если вы видите и слышите себя, то ваш браузер настроен корректно. Другие возможные ошибки и их решения приведены ниже. Исследуйте их для поиска возможных решений.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.settings.noissues = Никаких неразрешенных проблем не обнаружено.
+bbb.settings.instructions = Разрешите Flash обращаться к Вашей веб-камере. Если вы видите и слышите себя, то ваш браузер настроен корректно. Другие возможные проблемы перечислены ниже. Просмотрите их для поиска возможных решений.
+bbb.bwmonitor.title = Монитор сети
+bbb.bwmonitor.upload = Загрузить
+bbb.bwmonitor.upload.short = Вверх
+bbb.bwmonitor.download = Скачать
+bbb.bwmonitor.download.short = Вниз
+bbb.bwmonitor.total = Всего
+bbb.bwmonitor.current = Текущий
+bbb.bwmonitor.available = Доступно
+bbb.bwmonitor.latency = Задержка
ltbcustom.bbb.highlighter.toolbar.triangle = Треугольник
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Переключить курсор на треугольник
ltbcustom.bbb.highlighter.toolbar.line = Линия
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Вы перешли на пос
bbb.accessibility.chat.chatBox.navigatedLatestRead = Вы перешли к последнему прочитанному сообщению.
bbb.accessibility.chat.chatwindow.input = Ввод сообщений
bbb.accessibility.chat.chatwindow.audibleChatNotification = Звуковое уведомление чата
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions = Параметры публичного чата
bbb.accessibility.chat.initialDescription = Пожалуйста, используйте стрелки клавиатуры для навигации по сообщениям в чате.
bbb.accessibility.notes.notesview.input = Ввод примечаний
@@ -655,7 +665,7 @@ bbb.shortcutkey.general.maximize.function = Развернуть текущее
bbb.shortcutkey.flash.exit = 79
bbb.shortcutkey.flash.exit.function = Покинуть окно Flash
bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Выкл./Вкл. ваш микрофон
+bbb.shortcutkey.users.muteme.function = Выключить и включить Ваш микрофон
bbb.shortcutkey.chat.chatinput = 73
bbb.shortcutkey.chat.chatinput.function = Перейти к окну чата
bbb.shortcutkey.present.focusslide = 67
@@ -702,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Подогнать слайды по
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Сделать выбранного пользователя ведущим
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Исключить выбранного пользователя из конференции
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Выкл./Вкл. мик. у выбранного участника
bbb.shortcutkey.users.muteall = 65
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Опубликовать
bbb.polling.closeButton.label = Закрыть
bbb.polling.customPollOption.label = Собственное голосование
bbb.polling.pollModal.title = Текущие результаты опроса
+bbb.polling.pollModal.hint = Оставьте это окно открытым, чтобы дать возможность участникам ответить на опрос. Нажатие на кнопку "Опубликовать" или "Закрыть" завершит опрос.
bbb.polling.customChoices.title = Ввести варианты для опроса
bbb.polling.respondersLabel.novotes = Ожидание ответа
bbb.polling.respondersLabel.text = {0} Пользователей откликнулись
@@ -773,8 +784,8 @@ bbb.polling.answer.G = G
bbb.polling.results.accessible.header = Результаты голосования
bbb.polling.results.accessible.answer = Ответ {0} имеет {1} голосов.
-bbb.publishVideo.startPublishBtn.labelText = Начать трансляцию
-bbb.publishVideo.changeCameraBtn.labelText = Изменить настройки веб-камеры
+bbb.publishVideo.startPublishBtn.labelText = Начать демонстрацию
+bbb.publishVideo.changeCameraBtn.labelText = Сменить веб-камеру
bbb.accessibility.alerts.madePresenter = Теперь вы ведущий.
bbb.accessibility.alerts.madeViewer = Теперь вы участник.
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Применить настройки блоки
bbb.lockSettings.cancel = Отмена
bbb.lockSettings.cancel.toolTip = Закрыть окно без сохранения
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Заблокировано модератором
bbb.lockSettings.privateChat = Приватные сообщения
bbb.lockSettings.publicChat = Публичный чат
bbb.lockSettings.webcam = Веб-камера
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Микрофон
bbb.lockSettings.layout = Схема расположения окон
bbb.lockSettings.title=Блокировать зрителей
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Блокировать при входе
bbb.users.breakout.breakoutRooms = Комнаты групповой работы
bbb.users.breakout.updateBreakoutRooms = Обновить комнаты групповой работы
+bbb.users.breakout.timerForRoom.toolTip = Оставшеея время для этой комнаты групповой работы
bbb.users.breakout.timer.toolTip = Времени до окончания групповой сессии
bbb.users.breakout.calculatingRemainingTime = Подсчет оставшегося времени
bbb.users.breakout.closing = Закрытие
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Комнаты
bbb.users.breakout.roomsCombo.accessibilityName = Количество комнат, которые будут созданы
bbb.users.breakout.room = Аудитория
-bbb.users.breakout.randomAssign = Распределить участников в случайном порядке
bbb.users.breakout.timeLimit = Ограничение по времени
bbb.users.breakout.durationStepper.accessibilityName = Временное ограничение в минутах
bbb.users.breakout.minutes = Минут(ы)
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = Пригласить
bbb.users.breakout.close = Закрыть
bbb.users.breakout.closeAllRooms = Закрыть все групповые сессии
bbb.users.breakout.insufficientUsers = Недостаточно участников. Поместите в комнату хотя бы одного участника.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm = Присоединиться к комнате групповой работы
+bbb.users.breakout.invited = Вы приглашены к участию в Комнате групповой работы
+bbb.users.breakout.accept = Принимая, Вы автоматически отключитесь от аудио- и видеоконференций.
+bbb.users.breakout.joinSession = Подключиться к сессии
+bbb.users.breakout.joinSession.accessibilityName = Присоединиться к сессии комнаты групповой работы
+bbb.users.breakout.joinSession.close.tooltip = Закрыть
+bbb.users.breakout.joinSession.close.accessibilityName = Закрыть диалоговое окно присоединения к комнате групповой работы
+bbb.users.breakout.youareinroom = Вы находитесь в комнате групповой работы {0}
bbb.users.roomsGrid.room = Аудитория
bbb.users.roomsGrid.users = Участники
bbb.users.roomsGrid.action = Действие
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Передать аудио
bbb.users.roomsGrid.join = Присоединиться
bbb.users.roomsGrid.noUsers = В этой аудитории нет собеседников
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=Язык по умолчанию
+
+bbb.alert.cancel = Отменить
+bbb.alert.ok = OK
+bbb.alert.no = Нет
+bbb.alert.yes = Да
diff --git a/bigbluebutton-client/locale/ru_lv/bbbResources.properties b/bigbluebutton-client/locale/ru_lv/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/ru_lv/bbbResources.properties
+++ b/bigbluebutton-client/locale/ru_lv/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/si_LK/bbbResources.properties b/bigbluebutton-client/locale/si_LK/bbbResources.properties
index c4b7fbd771ca..764777fb8b3a 100644
--- a/bigbluebutton-client/locale/si_LK/bbbResources.properties
+++ b/bigbluebutton-client/locale/si_LK/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = සේවා දායකය සමග සම්බන්ධවීම
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = කනගාටුයි, අපට පරිගණක සේවා දායකය සමග සම්බන්ධ වීය නොහැක
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = සටහන් කවුළුව විවෘත කිරීම
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = සැලැස්ම යළි පිහිටුවීම
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = ඔබ සතුව ඇත්තේ BigBlueButton හි පැරණි භාෂා පරිවර්තනයක් විය හැක.
bbb.oldlocalewindow.reminder2 = කරුණාකර ඔබගේ බ්රව්සරයේ තාවකාලික මතකය මකාදමා නැවත උත්සාහ කරන්න.
bbb.oldlocalewindow.windowTitle = අවවාදයයි: පැරණි භාෂා පරිවර්තන
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = ස්පීකරය පරීක්ෂා කිරීම
bbb.micSettings.playSound.toolTip = ස්පීකරය පරීක්ෂා කිරීමේ හඬ වාදනය කරන්න
bbb.micSettings.hearFromHeadset = ඔබට හඬ ශ්රවණය විය යුත්තේ කන්යොමුව තුලින් මිස පරිගණකයේ ස්පීකරයෙන් නොවේ.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = මයික්රෆෝනය වෙනස් කිරීම/පරීක්ෂා කිරීම
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = ශ්රව්ය පද්ධතිය හා සම්බන්ධවීම
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = උදව්
bbb.mainToolbar.logoutBtn = ඉවත්වීම
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
bbb.mainToolbar.settingsBtn = සකස් කිරීම්
bbb.mainToolbar.settingsBtn.toolTip = සකස් කිරීම් විවෘත කිරීම
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = ඉදිරිපත් කිරීම
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = පෙර ස්ලයිඩය
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
bbb.presentation.forwardBtn.toolTip = ඊළඟ ස්ලයිඩය
bbb.presentation.maxUploadFileExceededAlert = වැරදි: අනුමත ප්රමානයට වඩා ගොනුව විශාලය.
bbb.presentation.uploadcomplete = ආරෝහනය කරීම \tසම්පූර්ණයි. \tකරුණාකර ලේඛනය පරිවර්තනය කරන තෙක් මදක් රැඳෙන්න.
bbb.presentation.uploaded = ආරෝහනය විය.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = ඉදිරිපත් කිරීමේ ගොනුව
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
bbb.presentation.uploadwindow.excel = EXCEL
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
bbb.fileupload.uploadBtn = ආරෝහනය
bbb.fileupload.uploadBtn.toolTip = ගොනුව ආරෝහනය කිරීම
bbb.fileupload.deleteBtn.toolTip = ඉදිරිපත් කිරීම් මකා දමන්න
bbb.fileupload.showBtn = පෙන්වන්න
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = ඉදිරිපත් කිරීම පෙන්වන්න
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
bbb.fileupload.progBarLbl = ප්රගතිය:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = කතා කරන්න
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = අකුරු පාට
-bbb.chat.input.accessibilityName = Chat Message Editing Field
+bbb.chat.input.accessibilityName =
bbb.chat.sendBtn.toolTip = පණිවිඩය යවන්න
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = සියල්ල
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
bbb.chat.fontSize = අකුරු ප්රමානය
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = හරි
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = අවලංගු කිරීම
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/sk_SK/bbbResources.properties b/bigbluebutton-client/locale/sk_SK/bbbResources.properties
index 30c8b66a8c0e..29e127e834dd 100644
--- a/bigbluebutton-client/locale/sk_SK/bbbResources.properties
+++ b/bigbluebutton-client/locale/sk_SK/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Pripája sa ku serveru
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Ľutujeme, nepodarilo sa pripojiť k serveru.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Otvoriť okno záznamov
bbb.mainshell.meetingNotFound = Lekcia nenájdená
bbb.mainshell.invalidAuthToken = Neplatná autentifikácia
bbb.mainshell.resetLayoutBtn.toolTip = Resetovať rozmiestnenie
bbb.mainshell.notification.tunnelling = Tunelovanie
bbb.mainshell.notification.webrtc = WebRTC zvuk
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Je možné že máte starý preklad BigBlueButton-u.
bbb.oldlocalewindow.reminder2 = Vyčistite vyrovnávaciu pamäť vášho prehliadača a skúste znova.
bbb.oldlocalewindow.windowTitle = Upozornenie: Starý preklad
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Zrušiť
bbb.micSettings.connectingtoecho = Pripájanie
bbb.micSettings.connectingtoecho.error = Chyba v skúške ozveny: Prosím kontaktujte administrátora.
bbb.micSettings.cancel.toolTip = Zrušiť pripojenie zvuku
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Nastavenia zvuku. Dokým nezatvoríte okno, zvuk sa bude nastavovať tu.
bbb.micSettings.webrtc.title = WebRTC podpora
bbb.micSettings.webrtc.capableBrowser = Váš prehliadač podporuje WebRTC.
@@ -63,44 +63,45 @@ bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Kliknite sem, pokiaľ
bbb.micSettings.webrtc.notCapableBrowser = WebRTC nie je podporovaný vaším prehlidačom. Prosím, použite Google Chrome (verzia 32 a vyššie) alebo Mozilla Firefox (verzia 26 a vyššie). Stále budete mať možnosť pridať sa k hlasovej konferencii použijúc Adobe Flash platformu.
bbb.micSettings.webrtc.connecting = Volá
bbb.micSettings.webrtc.waitingforice = Pripájanie
-bbb.micSettings.webrtc.transferring = Transferring
+bbb.micSettings.webrtc.transferring =
bbb.micSettings.webrtc.endingecho = Pripájanie zvuku
bbb.micSettings.webrtc.endedecho = Test ozveny ukončený.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox povolenia mikrofónu
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome povolenia mikrofónu
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Zvukové upozornenie
bbb.micWarning.joinBtn.label = Pridať sa aj tak
bbb.micWarning.testAgain.label = Vyskúšať znovu
bbb.micWarning.message = Váš mikrofón nevykazuje žiadnu aktivitu, ostatní účastníci vás pravdepodobne nebudú počas lekcie počuť.
bbb.webrtcWarning.message = Zistený nasledovný problém s WebRTC: {0}. Chcete radšej vyskúšať Flash?
-bbb.webrtcWarning.title = WebRTC Audio Failure
+bbb.webrtcWarning.title =
bbb.webrtcWarning.failedError.1001 = Chyba 1001: WebSocket odpojený
bbb.webrtcWarning.failedError.1002 = Chyba 1002: Nepodarilo sa vytvoriť WebSocket pripojenie
bbb.webrtcWarning.failedError.1003 = Chyba 1003: Nepodporovaná verzia prehliadača
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
+bbb.webrtcWarning.failedError.1004 =
bbb.webrtcWarning.failedError.1005 = Chyba 1005: Hovor nečakane ukončený
bbb.webrtcWarning.failedError.1006 = Chyba 1006: Prerušenie hovoru
bbb.webrtcWarning.failedError.1007 = Chyba 1007: ICE jednanie zlyhalo
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
bbb.webrtcWarning.failedError.unknown = Chyba {0}: Neznámy kód chyby
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Nápoveda
bbb.mainToolbar.logoutBtn = Odhlásenie
bbb.mainToolbar.logoutBtn.toolTip = Odhlásiť
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Výber jazyka
bbb.mainToolbar.settingsBtn = Nastavenia
bbb.mainToolbar.settingsBtn.toolTip = Otvoriť nastavenia
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = Spustiť nahrávanie
bbb.mainToolbar.recordBtn.toolTip.stop = Zastaviť nahrávanie
bbb.mainToolbar.recordBtn.toolTip.recording = Lekcia je nahrávaná
bbb.mainToolbar.recordBtn.toolTip.notRecording = Lekcia nie je nahrávaná
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Potvrdiť nahrávanie
bbb.mainToolbar.recordBtn.confirm.message.start = Ste si istý, že chcete spustiť nahrávanie lekcie?
bbb.mainToolbar.recordBtn.confirm.message.stop = Ste si istý, že chcete zastaviť nahrávanie lekcie?
-bbb.mainToolbar.recordBtn..notification.title = Nahrať upozornenie
-bbb.mainToolbar.recordBtn..notification.message1 = Túto lekciu si môžete nahrať.
-bbb.mainToolbar.recordBtn..notification.message2 = Musíte kliknúť na tlačidlo Zapnúť/Vypnúť nahrávanie v titulke na začatie/ukončenie nahrávania.
+bbb.mainToolbar.recordBtn.notification.title = Nahrať upozornenie
+bbb.mainToolbar.recordBtn.notification.message1 = Túto lekciu si môžete nahrať.
+bbb.mainToolbar.recordBtn.notification.message2 = Musíte kliknúť na tlačidlo Zapnúť/Vypnúť nahrávanie v titulke na začatie/ukončenie nahrávania.
bbb.mainToolbar.recordingLabel.recording = (Nahrávanie)
bbb.mainToolbar.recordingLabel.notRecording = Nenahráva sa
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimalizovať
bbb.window.maximizeRestoreBtn.toolTip = Maximalizovať
bbb.window.closeBtn.toolTip = Zavrieť
@@ -171,8 +172,8 @@ bbb.users.settings.webcamSettings = Nastavenia webkamery
bbb.users.settings.muteAll = Stlmiť všetkých používateľov
bbb.users.settings.muteAllExcept = Stlmiť všetkých používateľov okrem prezentéra
bbb.users.settings.unmuteAll = Stlmiť všetkých užívateľov
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
bbb.users.roomMuted.text = Diváci stlmení
bbb.users.roomLocked.text = Diváci zamknutí
bbb.users.pushToTalk.toolTip = Hovoriť
@@ -180,7 +181,7 @@ bbb.users.pushToMute.toolTip = Stlmiť seba
bbb.users.muteMeBtnTxt.talk = Vypnúť stlmenie
bbb.users.muteMeBtnTxt.mute = Stlmiť
bbb.users.muteMeBtnTxt.muted = Stlmený
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Zoznam užívateľov. Na navigáciu použite šípky
bbb.users.usersGrid.nameItemRenderer = Meno
bbb.users.usersGrid.nameItemRenderer.youIdentifier = Vy
@@ -188,24 +189,24 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Kliknúť a spraviť prezentérom
bbb.users.usersGrid.statusItemRenderer.presenter = Prezentér
bbb.users.usersGrid.statusItemRenderer.moderator = Moderátor
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Divák
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = Médium
bbb.users.usersGrid.mediaItemRenderer.talking = Hovorí
bbb.users.usersGrid.mediaItemRenderer.webcam = Zdieľanie webkamery
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Vypnuté stlmenie {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Stlmenie {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Zamknúť {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Odomknúť {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Vyhodiť {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Zdieľanie webkamery
bbb.users.usersGrid.mediaItemRenderer.micOff = Vypnúť mikrofón
bbb.users.usersGrid.mediaItemRenderer.micOn = Zapnúť mikrofón
bbb.users.usersGrid.mediaItemRenderer.noAudio = Neprítomný v zvukovej konferencii
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentácia
bbb.presentation.titleWithPres = Prezentácia: {0}
bbb.presentation.quickLink.label = Okno prezentácie
bbb.presentation.fitToWidth.toolTip = Prispôsobiť prezentáciu šírke
bbb.presentation.fitToPage.toolTip = Prispôsobiť prezentáciu stránke
bbb.presentation.uploadPresBtn.toolTip = Nahrať prezentáciu
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Predchádzajúca roleta.
bbb.presentation.btnSlideNum.accessibilityName = Slajd {0} z {1}
bbb.presentation.btnSlideNum.toolTip = Vybrať slajd
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Nahrávanie dokončené. Prosím čakajte, pre
bbb.presentation.uploaded = nahrané.
bbb.presentation.document.supported = Nahratý súbor je podporovaný. Začína sa konvertovať...
bbb.presentation.document.converted = Office dokument bol úspešne zkonvertovaný.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Chyba: Kontaktuje administrátora.
bbb.presentation.error.security = Bezpečnostná chyba: Kontaktuje administrátora.
bbb.presentation.error.convert.notsupported = Chyba: Nahraný súbor nie je podporovaný. Nahrajte kompaktibilný súbor.
@@ -283,70 +285,71 @@ bbb.fileupload.uploadBtn = Nahrať
bbb.fileupload.uploadBtn.toolTip = Nahrať súbor
bbb.fileupload.deleteBtn.toolTip = Odstrániť prezentáciu
bbb.fileupload.showBtn = Ukázať
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Ukázať prezentáciu
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Vytváranie náhľadu...
bbb.fileupload.progBarLbl = Priebeh:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Pokec
bbb.chat.quickLink.label = Okno chatu
bbb.chat.cmpColorPicker.toolTip = Farba textu
bbb.chat.input.accessibilityName = Pole úpravy chatovej správy
bbb.chat.sendBtn.toolTip = Odoslať správu
bbb.chat.sendBtn.accessibilityName = Poslať správu na chate
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Skopírovať celý text
bbb.chat.publicChatUsername = Všetky
bbb.chat.optionsTabName = Možnosti
bbb.chat.privateChatSelect = Označte osobu s ktorou chcete zaviesť osobný Pokec.
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Možnosti Pokecu
bbb.chat.fontSize = Veľkosť písma
bbb.chat.cmbFontSize.toolTip = Vybrať veľkosť písma chatovej správy
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimalizovať okno chatu
bbb.chat.maximizeRestoreBtn.accessibilityName = Maximalizovať okno chatu
bbb.chat.closeBtn.accessibilityName = Zatvoriť okno chatu
bbb.chat.chatTabs.accessibleNotice = Nová správa v tomto okne.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Zmeniť webkameru
bbb.publishVideo.changeCameraBtn.toolTip = Otvoriť dialógové okno zmeny webkamery
bbb.publishVideo.cmbResolution.tooltip = Vybrať rozlíšenie webkamery
bbb.publishVideo.startPublishBtn.labelText = Začať zdieľanie
bbb.publishVideo.startPublishBtn.toolTip = Začať zdieľanie
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
+bbb.publishVideo.startPublishBtn.errorName =
bbb.webcamPermissions.chrome.title = Chrome povolenia pre webkameru
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Základňa videa
bbb.videodock.quickLink.label = Okno webkamery
bbb.video.minimizeBtn.accessibilityName = Minimalizovať okno webkamier
@@ -361,95 +364,97 @@ bbb.video.publish.hint.waitingApproval = Čakajúce na potvrdenie
bbb.video.publish.hint.videoPreview = Náhľad videa
bbb.video.publish.hint.openingCamera = Načítava kameru
bbb.video.publish.hint.cameraDenied = Prístup webkamery bol zamietnutý
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Zverejňovanie...
bbb.video.publish.closeBtn.accessName = Zatvoriť dialógové okno nastavení webkamery
bbb.video.publish.closeBtn.label = Zrušiť
bbb.video.publish.titleBar = Publikovať okno webkamery
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Prestať počúvať lekciu
bbb.toolbar.phone.toolTip.unmute = Začať počúvať lekciu
bbb.toolbar.phone.toolTip.nomic = Mikrofón nebol nájdený
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Zdieľať webkameru
bbb.toolbar.video.toolTip.stop = Ukončiť zdieľanie webkamery
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Pridať vlastné rozloženie do zoznamu
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Zmeniť rozloženie
bbb.layout.loadButton.toolTip = Načítať rozloženia zo súboru
bbb.layout.saveButton.toolTip = Uložiť rozloženia do súboru
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Použiť rozloženie
bbb.layout.combo.custom = * Vlastné rozloženie
bbb.layout.combo.customName = Vlastné rozloženie
bbb.layout.combo.remote = Vzdialený
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Rozloženia boli úspešne uložené
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Rozloženia boli úspešne načítané
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.load.failed =
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Prednastavené rozloženie
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Video chat
bbb.layout.name.webcamsfocus = Lekcia s webkamerou
bbb.layout.name.presentfocus = Lekcia s prezentáciou
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Asistent lekcie
bbb.layout.name.lecture = Lekcia
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Zvýrazňovač
bbb.highlighter.toolbar.pencil.accessibilityName = Prepnúť kurzor na tabuli na ceruzku
bbb.highlighter.toolbar.ellipse = Kruh
@@ -492,97 +500,99 @@ bbb.highlighter.toolbar.color = Vybrať farbu
bbb.highlighter.toolbar.color.accessibilityName = Farba kreslenia na tabuli
bbb.highlighter.toolbar.thickness = Zmeniť hrúbku
bbb.highlighter.toolbar.thickness.accessibilityName = Hrúbka kreslenia na tabuľu
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Boli ste odhlásený
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Serverová aplikácia bola vypnutá.
bbb.logout.asyncerror = Vyskytla sa Async chyba
bbb.logout.connectionclosed = Pripojenie k serveru bolo ukončené
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Pripojenie k serveru bolo odmietnuté
bbb.logout.invalidapp = Nenašla sa žiadna red5 aplikácia
bbb.logout.unknown = Váš klient stratil pripojenie so serverom
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Boli ste odhlásený z konferencie
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Pokiaľ toto odhlásenie bolo nečakané, kliknite na tlačidlo nižšie kvôli znovupripojeniu.
bbb.logout.refresh.label = Znovu pripojiť
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Potvrdiť odhlásenie
bbb.logout.confirm.message = Ste si istý, že sa chcete odhlásiť?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Áno
bbb.logout.confirm.no = Nie
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = Poznámky
bbb.notes.cmpColorPicker.toolTip = Farba textu
bbb.notes.saveBtn = Uložiť
bbb.notes.saveBtn.toolTip = Uložiť poznámku
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Kliknite na tlačidlo Povoliť v riadku, ktorý sa objaví pre uistenie, že zdieľanie pracovnej plochy funguje správne pre Vás
bbb.settings.deskshare.start = Skontrolovať Zdieľanie plochy
bbb.settings.voice.volume = Aktivita mikrofónu
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Chybná verzia Flashového prehrávača
bbb.settings.flash.text = Máte nainštalovaný Flash prehrávač {0}, ale potrebujete minimálne verziu {1} aby ste prehrať BigBlueButton. Kliknite na tlačítko nižšie pre inštaláciu najnovšieho Adobe Flash prehrávača.
bbb.settings.flash.command = Nainštalovať najnovší Flash player
bbb.settings.isight.label = Chyba iSight kamery
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Nainštalovať Flash 10.2 RC2
bbb.settings.warning.label = Upozornenie
bbb.settings.warning.close = Zavrieť toto upozornenie
bbb.settings.noissues = Neboli nájdené žiadne výnimočné problémy\n
bbb.settings.instructions = Prijmite výzvu Flash-u, ktorý od vás pýta povolenie prístupu na kameru. Ak môžete vidieť sami seba a počuje sa, tak váš prehliadač je správne nastavený. Iné možné problémy sú uvedené nižšie. Kliknite na každý aby ste našli možné riešenie.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Trojuholník
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Prepnúť kurzor na tabuli na trojuholník
ltbcustom.bbb.highlighter.toolbar.line = Priamka
@@ -591,34 +601,34 @@ ltbcustom.bbb.highlighter.toolbar.text = Text
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Prepnúť kurzor na tabuli na text
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Farba textu
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Veľkosť písma
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
bbb.accessibility.chat.chatBox.reachedFirst = Obdržali ste prvú správu
bbb.accessibility.chat.chatBox.reachedLatest = Obdržali ste poslednú správu
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Dostali ste sa k prvej správe.
bbb.accessibility.chat.chatBox.navigatedLatest = Dostali ste sa k poslednej správe.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Dostali ste sa k posledne prečítanej správe.
bbb.accessibility.chat.chatwindow.input = Vstúp do chatu
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Prosím použite šípky na navigáciu v chatových správach
bbb.accessibility.notes.notesview.input = Vstup do poznámok
bbb.shortcuthelp.title = Klávesové skratky
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimalizovať okno pomocníka klávesových skratiek
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximalizovať okno pomocníka klávesových skratiek
bbb.shortcuthelp.closeBtn.accessibilityName = Zatvoriť okno pomocníka klávesových skratiek
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Globálne skratky
bbb.shortcuthelp.dropdown.presentation = Prezentačné skratky
bbb.shortcuthelp.dropdown.chat = Chatové skratky
bbb.shortcuthelp.dropdown.users = Užívateľské skratky
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Skratka
bbb.shortcuthelp.headers.function = Funkcia
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Minimalizovať aktuálne okno
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Maximalizovať aktuálne okno
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Zaostriť mimo Flash okna
bbb.shortcutkey.users.muteme = 7
bbb.shortcutkey.users.muteme.function = Stlmte a vypnite stlmenie vášho mikrofónu
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Presunúť zaostrenie na okno prezentácie
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Presunúť zaostrenie na okno chatu
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Otvoriť okno zdieľania obrazovky
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Odhlásiť sa z tejto lekcie
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Zdvihnúť ruku
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Nahrať prezentáciu
bbb.shortcutkey.present.previous = 6
bbb.shortcutkey.present.previous.function = Choď na predchádzajúci slajd
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Ísť na ďalší slajd
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Prispôsobiť slajdy na šírku
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Prispôsobiť slajdy stránke
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Urobiť vybranú osobu prezentérom
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Vyhodiť vybranú osobu z lekcie
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Stlmiť alebo vypnúť stlmenie vybranej osoby
bbb.shortcutkey.users.muteall = 6
bbb.shortcutkey.users.muteall.function = Stlmiť alebo vypnúť stlmenie všetkých užívateľov
bbb.shortcutkey.users.muteAllButPres = 6
bbb.shortcutkey.users.muteAllButPres.function = Stlmiť každého okrem prezentéra
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Zaostriť na záložku chatu
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Zaostriť na výber farby písma
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Poslať správu na chate
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Pre navigáciu v správe musíte zaostriť na okno chatu.
@@ -746,32 +756,33 @@ bbb.shortcutkey.chat.chatbox.goread.function = Navigovať k posledne prečítane
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Dočasný kláves na odstránenie chýb
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = Publikovať
bbb.polling.closeButton.label = Zavrieť
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = Áno
bbb.polling.answer.No = Nie
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Začať zdieľanie
bbb.publishVideo.changeCameraBtn.labelText = Zmeniť webkameru
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Zatvoriť všetky videá
bbb.users.settings.lockAll = Zamknúť všetkých užívateľov
bbb.users.settings.lockAllExcept = Zamknúť všetkých užívateľov okrem prezentéra
bbb.users.settings.lockSettings = Zamknúť divákov ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Odomknúť všetkých divákov
bbb.users.settings.roomIsLocked = Prednastavene zamknuté
bbb.users.settings.roomIsMuted = Prednastavene stlmené
@@ -802,102 +813,59 @@ bbb.lockSettings.save.tooltip = Použiť nastavenia zámku
bbb.lockSettings.cancel = Zrušiť
bbb.lockSettings.cancel.toolTip = Zatvoriť okno bez ukladania
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Zamknutie moderátorom
bbb.lockSettings.privateChat = Súkromný chat
bbb.lockSettings.publicChat = Verejný chat
bbb.lockSettings.webcam = Webkamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofón
bbb.lockSettings.layout = Rozmiestnenie
bbb.lockSettings.title=Zamknúť užívateľov
bbb.lockSettings.feature=Prvok
bbb.lockSettings.locked=Zamknutý
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/sl_SI/bbbResources.properties b/bigbluebutton-client/locale/sl_SI/bbbResources.properties
index 8b4b6c1aa72c..65156430feea 100644
--- a/bigbluebutton-client/locale/sl_SI/bbbResources.properties
+++ b/bigbluebutton-client/locale/sl_SI/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Povezujem se s strežnikom
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Oprostite, ne moremo se povezati s strežnikom.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Odpri beležno okno
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Ponastavite razporeditev
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Mogoče imate stare prevode BigBlueButton-a.
bbb.oldlocalewindow.reminder2 = Prosimo, počistite predpomnilnik vašega brskalnika, ter poskusite ponovno.
bbb.oldlocalewindow.windowTitle = Pozor: Stari jezikovni prevodi
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = Predvajaj testni zvok
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
+bbb.micSettings.playSound.toolTip =
bbb.micSettings.hearFromHeadset = Zvok bi morali zaslišati v vaših slušalkah in ne iz zvočnikov.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = Spremeni mikrofon
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = Združi avdio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Pomoč
bbb.mainToolbar.logoutBtn = Izpis
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
bbb.mainToolbar.settingsBtn = Nastavitve
bbb.mainToolbar.settingsBtn.toolTip = Odpri nastavitve
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Predstavitev
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Prejšnji diapozitiv.
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
bbb.presentation.forwardBtn.toolTip = Naslednji diapozitiv
bbb.presentation.maxUploadFileExceededAlert = Napaka: Velikost datoteke presega omejitev velikosti.
bbb.presentation.uploadcomplete = Nalaganje zaključeno. Prosimo počakajte, medtem ko pretvorimo dokument.
bbb.presentation.uploaded = naloženo.
bbb.presentation.document.supported = Naloženi dokument je podprt. Začenjam pretvorbo...
bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO Napaka: Prosimo, kontaktirajte skrbnika.
bbb.presentation.error.security = Varnostna napaka: Prosimo, kontaktirajte skrbnika.
bbb.presentation.error.convert.notsupported = Napaka: Naložena datoteka ni podprta. Prosimo naložite podprto vrsto datoteke.
bbb.presentation.error.convert.nbpage = Napaka: V naloženem dokumentu nismo mogli prešteti strani.
bbb.presentation.error.convert.maxnbpagereach = Napaka: Naložena datoteka vsebuje preveč strani.
bbb.presentation.converted = Konvertirane {0} od {1} strani.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = Prezentacijska datoteka
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
bbb.presentation.uploadwindow.excel = EXCEL
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
bbb.presentation.uploadwindow.image = SLIKA
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
bbb.fileupload.title = Naložite predstavitev
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
bbb.fileupload.selectBtn.toolTip = Brskaj datoteko
bbb.fileupload.uploadBtn = Naloži
bbb.fileupload.uploadBtn.toolTip = Naloži datoteko
bbb.fileupload.deleteBtn.toolTip = Izbrišite predstavitev
bbb.fileupload.showBtn = Prikaži
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Prikaži predstavitev
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Ustvarjam predoglede..
bbb.fileupload.progBarLbl = Napredek:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Klepet
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = Barva besedila
-bbb.chat.input.accessibilityName = Chat Message Editing Field
+bbb.chat.input.accessibilityName =
bbb.chat.sendBtn.toolTip = Pošlji sporočilo
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = Vse
-bbb.chat.optionsTabName = Options
+bbb.chat.optionsTabName =
bbb.chat.privateChatSelect = Izberite osebo, s katero želite zasebno klepetati
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Možnosti klepeta
bbb.chat.fontSize = Velikost pisave
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
bbb.publishVideo.startPublishBtn.toolTip = Pričnite z deljenjem
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Video dock
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Označevalec
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
+bbb.highlighter.toolbar.pencil.accessibilityName =
bbb.highlighter.toolbar.ellipse = Krog
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
+bbb.highlighter.toolbar.ellipse.accessibilityName =
bbb.highlighter.toolbar.rectangle = Pravokotnik
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
bbb.highlighter.toolbar.color = Izberite barvo
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = Spremeni debelino
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = The server app has been shut down
bbb.logout.asyncerror = Pojavila se je Async napaka
bbb.logout.connectionclosed = Povezava s strežnikom je bila prekinjena
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Povezava s strežnikom je bila zavrnjena
bbb.logout.invalidapp = The red5 app does not exist
bbb.logout.unknown = Vaša stranka je izgubila povezavo s strežnikom
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Izpisali ste se iz konference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Click Allow on the prompt that pops up to check that desktop sharing is working properly for you
bbb.settings.deskshare.start = Preverite deljenje namizja
bbb.settings.voice.volume = Dejavnost mikrofona
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash version error
bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. Click on the button bellow to install the newest Adobe Flash version.
bbb.settings.flash.command = Namestite najnovejši Flash
bbb.settings.isight.label = iSight napaka kamere
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Namestite Flash 10.2 RC2
bbb.settings.warning.label = Opozorilo
bbb.settings.warning.close = Zapri opozorilo
bbb.settings.noissues = Zasledene ni bilo nobene izjemne težave.
bbb.settings.instructions = Accept the Flash prompt that asks you for camera permissions. If you can see yourself and hear yourself, your browser has been set up correctly. Other potentials issues are shown bellow. Click on each to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = Zapri
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/sq/bbbResources.properties b/bigbluebutton-client/locale/sq/bbbResources.properties
index 37cabc2345ef..d374ba88b5c2 100644
--- a/bigbluebutton-client/locale/sq/bbbResources.properties
+++ b/bigbluebutton-client/locale/sq/bbbResources.properties
@@ -1,33 +1,33 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Duke u lidhur me serverin
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Na vjen keq, nuk mund te lidhemi me serverin
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Hapni faqen per tu loguar
bbb.mainshell.meetingNotFound = Mbledhja nuk u gjet
bbb.mainshell.invalidAuthToken = Fjale jo e sakte autentikimi
bbb.mainshell.resetLayoutBtn.toolTip = Rregullo paraqitjen
bbb.mainshell.notification.tunnelling = Tunnelling
bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Ju mund te jeni duke perdorur nje perkthim te vjeter per BigBlueButton
bbb.oldlocalewindow.reminder2 = Ju lutemi pastroni kutine e kerkimit dhe provojeni perseri
bbb.oldlocalewindow.windowTitle = Kujdes: Perkthim i vjeter
bbb.audioSelection.title = Si doni qe ti bashkoheni audios?
bbb.audioSelection.btnMicrophone.label = Mikrofon
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
+bbb.audioSelection.btnMicrophone.toolTip =
bbb.audioSelection.btnListenOnly.label = Vetem degjo
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
+bbb.audioSelection.btnListenOnly.toolTip =
bbb.audioSelection.txtPhone.text = Per tju bashkuar kesaj mbledhje me ane te telefonit shtypni, : {0} pastaj vendosni {1} si kod pin per konferencen.
bbb.micSettings.title = Testi i audios
bbb.micSettings.speakers.header = Testoni bokset
@@ -36,7 +36,7 @@ bbb.micSettings.playSound = Testoni bokset
bbb.micSettings.playSound.toolTip = Luani muzik qe te testoni bokset
bbb.micSettings.hearFromHeadset = Ju duhet te degjoni me kufje, jo nga bokset e kompjuterit
bbb.micSettings.speakIntoMic = Nese po perdorni kufje, ju duhet te degjoni audion nga kofjet tuaja -- jo nga bokset e kompjuterit.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
+bbb.micSettings.echoTestMicPrompt =
bbb.micSettings.echoTestAudioYes = Po
bbb.micSettings.echoTestAudioNo = Jo
bbb.micSettings.speakIntoMicTestLevel = Flisni ne mikrofonin tuaj. Ju duhet te shihni treguesin te levize. Nese jo, zgjidhni nje mikrofon tjeter.
@@ -46,7 +46,7 @@ bbb.micSettings.changeMic.toolTip = Hapni kutine e konfigurimit per flash player
bbb.micSettings.comboMicList.toolTip = Zgjidhni nje mikrofon
bbb.micSettings.micRecordVolume.label = Shtim
bbb.micSettings.micRecordVolume.toolTip = Shtoni mikrofonin tuaj
-bbb.micSettings.nextButton = Next
+bbb.micSettings.nextButton =
bbb.micSettings.nextButton.toolTip = Filloni testimin e zerit
bbb.micSettings.join = Bashkohuni me audio
bbb.micSettings.join.toolTip = Bashkohuni ne konferencen audio
@@ -54,7 +54,7 @@ bbb.micSettings.cancel = Anullo
bbb.micSettings.connectingtoecho = Duke u lidhur
bbb.micSettings.connectingtoecho.error = Gabim: Ju lutem kontaktoni administratorin.
bbb.micSettings.cancel.toolTip = Anulo aksesin ne konferencen audio
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Konfigurimi i zerit. Fokusimi do te rri hapur tek konfigurimi i zerit deri sa faqja e fokusimit do te mbyllet
bbb.micSettings.webrtc.title = WebRTC Suport
bbb.micSettings.webrtc.capableBrowser = Browseri juaj suporton WebRTC.
@@ -66,41 +66,42 @@ bbb.micSettings.webrtc.waitingforice = Duke u lidhur
bbb.micSettings.webrtc.transferring = Duke u transferuar
bbb.micSettings.webrtc.endingecho = Duke u bashkuar audios
bbb.micSettings.webrtc.endedecho = Testi i degjimit mbaroi.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox lejimet per mikrofonat
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Chrome Lejimet per mikrofonat
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Paralajmerim per audion
bbb.micWarning.joinBtn.label = Bashkojuni gjithsesi
bbb.micWarning.testAgain.label = TTesto perseri
bbb.micWarning.message = Mikrofoni juaj nuk tregoi asnje aktivitet, te tjeret me shume mundesi nuk do jene ne gjendje tju degjojne gjate sesionit.
bbb.webrtcWarning.message = Percaktoni problemin WebRTC me poshte: {0}. Deshironi te perdorni Flash ne vend te saj?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
bbb.webrtcWarning.failedError.1004 = Gabim 1004: Gabim ne thirrje(arsye={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
+bbb.webrtcWarning.failedError.1005 =
bbb.webrtcWarning.failedError.1006 = Gabim 1006: Ndodhi nje tiomeout
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
+bbb.webrtcWarning.failedError.1007 =
bbb.webrtcWarning.failedError.1008 = Gabim 1008: Transferimi deshtoi
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
bbb.webrtcWarning.failedError.mediamissing = Nuk gjendet mikrofoni per thirrjen WebRTC
bbb.webrtcWarning.failedError.endedunexpectedly = Testimi i WebRTC perfundoi ne menyre te papritur
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Ndihme
bbb.mainToolbar.logoutBtn = Dilni nga llogaria
bbb.mainToolbar.logoutBtn.toolTip = Dil
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Zgjidhni Gjuhen
bbb.mainToolbar.settingsBtn = Konfigurim
bbb.mainToolbar.settingsBtn.toolTip = Hapni konfigurimin
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = Fillo rregjistrimet
bbb.mainToolbar.recordBtn.toolTip.stop = Ndalo rregjistrimet
bbb.mainToolbar.recordBtn.toolTip.recording = Sesioni po rregjistrohet
bbb.mainToolbar.recordBtn.toolTip.notRecording = Sesioni nuk po rregjistrohet
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Konfirmo rregjistrimin
bbb.mainToolbar.recordBtn.confirm.message.start = Jeni te sigurt qe doni te filloni rregjistrimin e sesionit?
bbb.mainToolbar.recordBtn.confirm.message.stop = Jeni te sigurt qe doni te mbaroni rregjistrimin e sesionit?
-bbb.mainToolbar.recordBtn..notification.title = Rregjistroni njoftimet
-bbb.mainToolbar.recordBtn..notification.message1 = Ju mund te rregjistroni kete mbledhje.
-bbb.mainToolbar.recordBtn..notification.message2 = Ju duhet te klikoni ne butonin Fillo/Mbaro ne shiritin e titullit per te filluar/mbaruar rregjistrimin.
+bbb.mainToolbar.recordBtn.notification.title = Rregjistroni njoftimet
+bbb.mainToolbar.recordBtn.notification.message1 = Ju mund te rregjistroni kete mbledhje.
+bbb.mainToolbar.recordBtn.notification.message2 = Ju duhet te klikoni ne butonin Fillo/Mbaro ne shiritin e titullit per te filluar/mbaruar rregjistrimin.
bbb.mainToolbar.recordingLabel.recording = (Duke rregjistruar)
bbb.mainToolbar.recordingLabel.notRecording = Nuk po rregjistron
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Njoftimet per konfigurimet
bbb.clientstatus.notification = Njoftimet e palexuara
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
bbb.clientstatus.tunneling.message = Firewall pengon klientin tuaj qe te lidhet direkt ne porten 1935 te serverit remote. Rekomandohet qe te lidhet ne nje rrjet me pak strikt per nje lidhje me stabel.
bbb.clientstatus.browser.title = Versioni i browserit
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
bbb.clientstatus.flash.message = Flash Player ({0}) eshte out-of-date. Rekomandohet te merret versioni me i fundit.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Rekomandohet perdorimi i Firefox ose Chrome per audio me te mire
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimizo
bbb.window.maximizeRestoreBtn.toolTip = Maksimizo
bbb.window.closeBtn.toolTip = Mbyll
@@ -171,8 +172,8 @@ bbb.users.settings.webcamSettings = Konfigurimi i kameras
bbb.users.settings.muteAll = Mbyll zerin per te gjithe perdoruesit
bbb.users.settings.muteAllExcept = Mbyll zerin per te gjithe perdoruesit pervec Mesuesit
bbb.users.settings.unmuteAll = Komuniko me te gjithe perdoruesit
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
bbb.users.roomMuted.text = Shikueseve iu hoq zeri
bbb.users.roomLocked.text = Shikuesit u kycen
bbb.users.pushToTalk.toolTip = Flisni
@@ -188,24 +189,24 @@ bbb.users.usersGrid.statusItemRenderer = Statusi
bbb.users.usersGrid.statusItemRenderer.changePresenter = Kliko per ta bere prezantues
bbb.users.usersGrid.statusItemRenderer.presenter = Mesuesi
bbb.users.usersGrid.statusItemRenderer.moderator = Moderatori
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Shikues
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = Media
bbb.users.usersGrid.mediaItemRenderer.talking = Flisni
bbb.users.usersGrid.mediaItemRenderer.webcam = Ndani Kameran
@@ -214,40 +215,41 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Degjoni {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mos degjoni
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Kyc {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Shkyc {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Gjuaj {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Ndani Kameran
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofoni eshte i fikur
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofoni eshte i ndezur
bbb.users.usersGrid.mediaItemRenderer.noAudio = Jo ne mesim me ze
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezantim
bbb.presentation.titleWithPres = Prezantim:{0}
bbb.presentation.quickLink.label = Dritarja e prezantimit
bbb.presentation.fitToWidth.toolTip = Pershtat prezantimin me gjeresine
bbb.presentation.fitToPage.toolTip = Pershtat prezantimin me faqen
bbb.presentation.uploadPresBtn.toolTip = Ngarko prezantimin
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Faqja pararendese
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
+bbb.presentation.btnSlideNum.accessibilityName =
bbb.presentation.btnSlideNum.toolTip = Zgjidhni faqen e prezantimit
bbb.presentation.forwardBtn.toolTip = Faqja tjeter
bbb.presentation.maxUploadFileExceededAlert = Gabim: Dokumenti eshte me i madh se sa lejohet
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Ngarkimi u krye: Ju lutemi prisni seri sa te k
bbb.presentation.uploaded = U ngarkua
bbb.presentation.document.supported = Ddokumenti eshte ngarkur. Ka filluar te pershtatet
bbb.presentation.document.converted = Pershtatja e dokumentit u krye me sukses
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Gabim: Ju lutemi te kontaktoni administratorin
bbb.presentation.error.security = Gabim sigurie: Ju lutemi kontaktoni administratorin
bbb.presentation.error.convert.notsupported = Gabim: Dokumenti qe kerkuat te pershtatet nuk ngarkohet. Ju lutemi ngarkoni dokumentin ne menyre qe te perputhet
@@ -283,70 +285,71 @@ bbb.fileupload.uploadBtn = Ngarko
bbb.fileupload.uploadBtn.toolTip = Ngarko materialin e zgjedhur
bbb.fileupload.deleteBtn.toolTip = Fshini prezantimin
bbb.fileupload.showBtn = Trego
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Trego prezantimin
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Gjeneroni
bbb.fileupload.progBarLbl = Progresi:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = catoni
bbb.chat.quickLink.label = Dritarja e chatit
bbb.chat.cmpColorPicker.toolTip = Ngjyra e tekstit
bbb.chat.input.accessibilityName = komuniko ne fushen e ndryshimeve
bbb.chat.sendBtn.toolTip = Dergo mesazh
bbb.chat.sendBtn.accessibilityName = Dergoni nje mesazh ne chat
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopjoni gjithe tekstin
bbb.chat.publicChatUsername = Publike
bbb.chat.optionsTabName = Opsionet
bbb.chat.privateChatSelect = Zgjidhni personi qe deshironi te komunikoni privatisht
-bbb.chat.private.userLeft = The user has left.
+bbb.chat.private.userLeft =
bbb.chat.private.userJoined = Perdoruesi i eshte bashkuar grupit
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Opsionet e chatit
bbb.chat.fontSize = Madhesia e germave ne mesazhet e chatit
bbb.chat.cmbFontSize.toolTip = Selekto madhesine e shkrimit per mesazhet e chatit
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimizo faqen e chatit
bbb.chat.maximizeRestoreBtn.accessibilityName = Maksimizo faqen e chatit
bbb.chat.closeBtn.accessibilityName = Mbyll faqen e chatit
bbb.chat.chatTabs.accessibleNotice = Mesazhe te reja ne kete faqe
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Ndrysho kameran
bbb.publishVideo.changeCameraBtn.toolTip = habni kutine e dialogut per te ndryshuar kameran
bbb.publishVideo.cmbResolution.tooltip = Zgjidhni rezulucionin e kameras
bbb.publishVideo.startPublishBtn.labelText = Filloni te shperndani
bbb.publishVideo.startPublishBtn.toolTip = Filloni te shperndani pamjet nga kamera juaj
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Kamerat
bbb.videodock.quickLink.label = Dritarja e Kamerave
bbb.video.minimizeBtn.accessibilityName = Minimizoni faqen e kameras
@@ -361,95 +364,97 @@ bbb.video.publish.hint.waitingApproval = Duke pritur per aprovim
bbb.video.publish.hint.videoPreview = Shikim paraprak i kameras
bbb.video.publish.hint.openingCamera = Duke hapur kameran
bbb.video.publish.hint.cameraDenied = Nuk lejohet hyrja ne kamera
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Publiko
bbb.video.publish.closeBtn.accessName = Mbyll kutine e konfigurimit te kameras
bbb.video.publish.closeBtn.label = Anullo
bbb.video.publish.titleBar = Publikoni faqen e kameras
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Ndaloni degjimin e konferences
bbb.toolbar.phone.toolTip.unmute = Filloni te degjoni konferencen
bbb.toolbar.phone.toolTip.nomic = Nuk u gjet asnje mikrofon
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Ndani kameren tuaj
bbb.toolbar.video.toolTip.stop = Mos ndani me kameren tuaj
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Shtoni paraqitjen e zakonshme ne liste
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Ndryshoni paraqitjen e faqes tuaj
bbb.layout.loadButton.toolTip = Ngarkoni nga nje dokument
bbb.layout.saveButton.toolTip = Ruaj paraqitjen ne nje dokument
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Aplikoni paraqitjen
bbb.layout.combo.custom = * Paraqitje e personalizuar
bbb.layout.combo.customName = Paraqitje e personalizuar
bbb.layout.combo.remote = E larget
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Paraqitja u ruajt me sukses
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Paraqitja u ngarkua me sukses
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.load.failed =
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Paraqitja e zakonshme
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
bbb.layout.name.webcamsfocus = Mbledhje me kamer
bbb.layout.name.presentfocus = Mbledhje per prezantim
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Asistent i lektorit
bbb.layout.name.lecture = Leksioni
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Laps
bbb.highlighter.toolbar.pencil.accessibilityName = Ndryshoni kursorin e derrases se bardhe ne laps
bbb.highlighter.toolbar.ellipse = rreth
@@ -492,97 +500,99 @@ bbb.highlighter.toolbar.color = Zgjidhni ngjyrat
bbb.highlighter.toolbar.color.accessibilityName = Shenues me ngjyre per derrasen e bardhe
bbb.highlighter.toolbar.thickness = Ndrysho trashesine
bbb.highlighter.toolbar.thickness.accessibilityName = Vizato trashesine ne derrasen e bardhe
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Doli nga sistemi
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = Ne rregull
bbb.logout.appshutdown = Aplikacioni server eshte fikur
bbb.logout.asyncerror = Ka ndodhur nje gabim
bbb.logout.connectionclosed = Lidhja me serverin eshte mbyllur
-bbb.logout.connectionfailed = The connection to the server has ended
+bbb.logout.connectionfailed =
bbb.logout.rejected = Lidhja me serverin eshte refuzuar
bbb.logout.invalidapp = Aplikacioni red5 nuk ekziston
bbb.logout.unknown = Klienti juaj ka humbur lidhjen me serverin
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Ju keni dale nga konferencave
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Konfirmoni daljen
bbb.logout.confirm.message = Jeni te sigurt qe doni te dilni?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Po
bbb.logout.confirm.no = Jo
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = Shenime
bbb.notes.cmpColorPicker.toolTip = Ngjyra e tekstit
bbb.notes.saveBtn = Ruaj
bbb.notes.saveBtn.toolTip = Ruaj shenimet
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Zgjidhni Lejo ne faqen qe del per te kontrolluar qe ndarja e ekranit punon sic duhet
bbb.settings.deskshare.start = Kontrollo ndarjen e ekranit
bbb.settings.voice.volume = Aktiviteti i mikrofonit
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Gabim ne versionin e Flash
bbb.settings.flash.text = Ju keni Flash {0} te instaluar, por ju duhet te pakten versioni {1} per te punuar si duhet me BigBlueButton.Butoni me poshte do te instaloje versionin me te ri te Adobe Flash
bbb.settings.flash.command = Instalo versionin me te ri te Flash
bbb.settings.isight.label = iSight gabim me kameren
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instalo Flash 10.2 RC2
bbb.settings.warning.label = Lajmerim
bbb.settings.warning.close = Mbyllni kete lajmerim
bbb.settings.noissues = Nuk jane zbuluar ceshtje te pazgjidhura.
bbb.settings.instructions = Prononi njoftimin e Flash qe ju kerkon leje per kameren. Nese rezultati perkon me ate qe pritet, browseri juaj eshte sic duhet. Ceshtje te tjera te mundshme jane me poshte. Kontrollojini qe te gjeni nje zgjidhje.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Trekendesh
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Ndryshoni kursorin e derrases se bardhe ne trekendesh
ltbcustom.bbb.highlighter.toolbar.line = Vije
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Tekst
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Ndryshoni kursorin e derrases se bardhe ne tekst
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Ngjyra e tekstit
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = mdhesia e shkrimit
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Gati
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = Ju keni naviguar der ne mesazhi
bbb.accessibility.chat.chatBox.navigatedLatest = Ju keni naviguar der ne mesazhin e fundit.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Ju keni naviguar der ne mesazhin me te fundit qe keni lexuar.
bbb.accessibility.chat.chatwindow.input = Hyrja e chat-it
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Ju lutem perdorni shigjetat per te levizuar ne mesazh.
bbb.accessibility.notes.notesview.input = Hyrja per shenimer
bbb.shortcuthelp.title = Mjetet e shkurtimit
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimizoni faqen e ndihmes per nje rruge me te shkurter
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maksimizo faqen e ndihmes per nje rruge me te shkurter
bbb.shortcuthelp.closeBtn.accessibilityName = Mbyll faqen e ndihmes per nje rruge me te shkurter
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Ndihme per nje rruge me te shkurter globale
bbb.shortcuthelp.dropdown.presentation = Ndihme per nje rruge me te shkurter ne prezantim
bbb.shortcuthelp.dropdown.chat = Ndihme per nje rruge me te shkurter ne chat
bbb.shortcuthelp.dropdown.users = Perdor Ndihme per nje rruge me te shkurter
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = nje rruge me te shkurter
bbb.shortcuthelp.headers.function = Fuksioni
@@ -652,7 +662,7 @@ bbb.shortcutkey.general.minimize.function = Minimizo faqen aktuale
bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Maksimizo faqen aktuale
-bbb.shortcutkey.flash.exit = 79
+bbb.shortcutkey.flash.exit =
bbb.shortcutkey.flash.exit.function = Fokusohu jashte dritares se Flash
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Hiqi dhe veri zerin mikrofonit tuaj
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Zhvendose fokusin ne dritaren e prezantimit
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Zhvendose fokusin ne dritaren e chat-it
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Hap dritaren e ndarjes se ekranit
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Dilni jashte nga kjo klase
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Ngrini doren
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Ngarkoni prezantimin
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Shkoni ne faqen e meparme
@@ -696,38 +706,38 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Shkoni ne faqen tjeter te prezantimit
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = pershtat ne gjeresi
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Pershtat ne faqe
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Perzgjith personin per te prezantuar
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Perjashto personin e perzgjedhur nga klasa
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Blloko ose zhblloko personin e perzgjedhur
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Blloko ose zhblloko te gjithe perdoruesit
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = bllokoi te gjithe pervec mesuesit
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Fokusohu ne etiketat e chatit
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Fokusohu ne zgjedhjen e ngjyres se shkrimit.
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Dergoni nje mesazh ne chat
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Per te kontrolluar mesazhet duhet te fokusoheni tek kutia e chatit
@@ -746,32 +756,33 @@ bbb.shortcutkey.chat.chatbox.goread.function = Navigoni ne mesazhin e fundit qe
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Kontroll i perkohshem per gabime
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
bbb.polling.publishButton.label = Publiko
bbb.polling.closeButton.label = Mbyll
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = Po
bbb.polling.answer.No = Jo
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Filloni te shperndani
bbb.publishVideo.changeCameraBtn.labelText = Ndrysho kameran
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Mbyllni te gjitha videot
bbb.users.settings.lockAll = Kycni te gjithe perdoruesit
bbb.users.settings.lockAllExcept = Kycni te gjithe perdoruesit pervec prezantuesit
bbb.users.settings.lockSettings = Kyc shikuesit ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Shkyc te gjithe shikuesit
bbb.users.settings.roomIsLocked = I kycur paraprakisht
bbb.users.settings.roomIsMuted = Pa ze paraprakisht
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Apliko parametrat e kycjes
bbb.lockSettings.cancel = Anullo
bbb.lockSettings.cancel.toolTip = Mbyll kete dritare pa e ruajtur
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Kycja e moderatorit
bbb.lockSettings.privateChat = Chat privat
bbb.lockSettings.publicChat = Chat publik
bbb.lockSettings.webcam = Kamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofoni
bbb.lockSettings.layout = Paraqitja
bbb.lockSettings.title=Kyc shikuesit
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Parametra
bbb.lockSettings.locked=E kycur
bbb.lockSettings.lockOnJoin=Kycet ne lidhje
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/sr_RS/bbbResources.properties b/bigbluebutton-client/locale/sr_RS/bbbResources.properties
index 70e44623031d..3bef40ade2d2 100644
--- a/bigbluebutton-client/locale/sr_RS/bbbResources.properties
+++ b/bigbluebutton-client/locale/sr_RS/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Povezuje se sa serverom
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Nažalost nije moguće uspostaviti vezu sa serverom.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Otvori log prozor
bbb.mainshell.meetingNotFound = Nije pronadjena sesija
bbb.mainshell.invalidAuthToken = Nevažeći kod za autentifikaciju
bbb.mainshell.resetLayoutBtn.toolTip = Resetuj izgled
bbb.mainshell.notification.tunnelling = Tunel
bbb.mainshell.notification.webrtc = WebRTC zvuk
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Moguće imate staru verziju prevoda.
bbb.oldlocalewindow.reminder2 = Molimo ispraznite keš pretraživača i pokušajte ponovo.
bbb.oldlocalewindow.windowTitle = Upozorenje: Stara verzija prevoda
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Povezivanje
bbb.micSettings.webrtc.transferring = Prebacivanje
bbb.micSettings.webrtc.endingecho = Priključivanje zvuka
bbb.micSettings.webrtc.endedecho = Kraj eho testa.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Dozvole za mikrofon Firefox-a
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Dozvole Chrome mikrofona
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Zvučno upozorenje
bbb.micWarning.joinBtn.label = Priljuči se svakako
bbb.micWarning.testAgain.label = Ponovi test
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC eho test se iznenada za
bbb.webrtcWarning.connection.dropped = WebRTC konekcija je izgubljena
bbb.webrtcWarning.connection.reconnecting = Pokušaj ponovnog povezivanja
bbb.webrtcWarning.connection.reestablished = WebRTC konekcija je ponovo uspostavljena
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Pomoć
bbb.mainToolbar.logoutBtn = Odjava
bbb.mainToolbar.logoutBtn.toolTip = Odjava
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Odaberi jezik
bbb.mainToolbar.settingsBtn = Podešavanja
bbb.mainToolbar.settingsBtn.toolTip = Otvori podešavanja
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Započni snimanje
bbb.mainToolbar.recordBtn.toolTip.stop = Zaustavi snimanje
bbb.mainToolbar.recordBtn.toolTip.recording = Sesija se snima
bbb.mainToolbar.recordBtn.toolTip.notRecording = Sesija se ne snima
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Potvrdi snimanje
bbb.mainToolbar.recordBtn.confirm.message.start = Da li ste sigurni da želite da započnete snimanje ove sesije?
bbb.mainToolbar.recordBtn.confirm.message.stop = Da li ste sigurni da želite da prekinete snimanje sesije?
-bbb.mainToolbar.recordBtn..notification.title = Zabeleži obaveštenje
-bbb.mainToolbar.recordBtn..notification.message1 = Možete da snimite ovu sesiju.
-bbb.mainToolbar.recordBtn..notification.message2 = Morate da klinknete na dugme Zapocni/Zaustavi snimanje u traci naziva kako biste započeli/zaustavili snimanje.
+bbb.mainToolbar.recordBtn.notification.title = Zabeleži obaveštenje
+bbb.mainToolbar.recordBtn.notification.message1 = Možete da snimite ovu sesiju.
+bbb.mainToolbar.recordBtn.notification.message2 = Morate da klinknete na dugme Zapocni/Zaustavi snimanje u traci naziva kako biste započeli/zaustavili snimanje.
bbb.mainToolbar.recordingLabel.recording = (Snimanje)
bbb.mainToolbar.recordingLabel.notRecording = Ne snima
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Obaveštenja o konfiguraciji
bbb.clientstatus.notification = Nepročitana obaveštenja
bbb.clientstatus.close = Zatvori
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Vaš pretraživač ({0}) nije ažuriran. Pre
bbb.clientstatus.flash.title = Flash Player
bbb.clientstatus.flash.message = Plug-in ({0}) Vašeg Flash Player-a nije ažuriran. Preporučuje se ažuriranje na najnoviju verziju.
bbb.clientstatus.webrtc.title = Zvuk
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Preporučuje se korišćenje Firefox-a ili Chrom-a zbog boljeg zvuka.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Smanji
bbb.window.maximizeRestoreBtn.toolTip = Raširi
bbb.window.closeBtn.toolTip = Zatvori
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Status
bbb.users.usersGrid.statusItemRenderer.changePresenter = Klikni da dodeliš ulogu predavača
bbb.users.usersGrid.statusItemRenderer.presenter = Predavač
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Brisanje statusa
bbb.users.usersGrid.statusItemRenderer.viewer = Posmatrač
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Deljenje web kamere
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Ponovo uključi {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Isključi {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Zaključaj {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Odključaj {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Izbaci {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Deli web kameru
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon isključen
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon uključen
bbb.users.usersGrid.mediaItemRenderer.noAudio = Nije prisutan na audio konferenciji
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Brisanje
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Prezentacija
bbb.presentation.titleWithPres = Prezentacija: {0}
bbb.presentation.quickLink.label = Prozor prezentacije
bbb.presentation.fitToWidth.toolTip = Prilagodi presentaciju po širini
bbb.presentation.fitToPage.toolTip = Prilagodi prezentaciju po stranici
bbb.presentation.uploadPresBtn.toolTip = Učitaj prezentaciju
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Prethodni slajd
bbb.presentation.btnSlideNum.accessibilityName = Slajd {0} od {1}
bbb.presentation.btnSlideNum.toolTip = Odaberi slajd
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Prebacivanje kompletno. Molimo sačekajte dok
bbb.presentation.uploaded = prebačen.
bbb.presentation.document.supported = Prebačeni dokument je podržan. Počinje konvertovanje...
bbb.presentation.document.converted = Uspešno konvertovan office dokument.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed =
bbb.presentation.error.document.convert.invalid = Molim vas da prvo konvertujete dokument u PDF format.
bbb.presentation.error.io = IO greška: Molimo kontaktirajte administratora.
bbb.presentation.error.security = Sigurnosna greška: Molimo kontaktirajte administratora.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Prebaci
bbb.fileupload.uploadBtn.toolTip = Prebaci datoteku
bbb.fileupload.deleteBtn.toolTip = Izbriši prezentaciju
bbb.fileupload.showBtn = Prikaži
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Prikaži prezentaciju
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Generiši sličice.
bbb.fileupload.progBarLbl = Progres:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Ćaskanje
bbb.chat.quickLink.label = Prozor četa
bbb.chat.cmpColorPicker.toolTip = Boja teksta
bbb.chat.input.accessibilityName = Polje za uređivanje poruke u četu
bbb.chat.sendBtn.toolTip = Pošalji poruku
bbb.chat.sendBtn.accessibilityName = Pošalji poruku na četu
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Kopiraj sav tekst
bbb.chat.publicChatUsername = Javno
bbb.chat.optionsTabName = Opcije
@@ -331,13 +334,13 @@ bbb.chat.usersList.accessibilityName = Odaberi korisnike za otvaranje privatnog
bbb.chat.chatOptions = Podešavanja ćaskanja
bbb.chat.fontSize = Veličina fonta
bbb.chat.cmbFontSize.toolTip = Odaberi veličinu fonta za poruke u četu
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Umanjite prozor za čet
bbb.chat.maximizeRestoreBtn.accessibilityName = Proširite prozor za čet
bbb.chat.closeBtn.accessibilityName = Zatvori prozor četa
bbb.chat.chatTabs.accessibleNotice = Nova poruka u novom tabu
bbb.chat.chatMessage.systemMessage = Sistem
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Poruka je za {0} karakter(a) predugačka
bbb.publishVideo.changeCameraBtn.labelText = Promeni web kameru
bbb.publishVideo.changeCameraBtn.toolTip = Otvori dijalog prozor promene web kamere
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Zapoočni deljenje
bbb.publishVideo.startPublishBtn.toolTip = Počni da deliš tvoju web kameru
bbb.publishVideo.startPublishBtn.errorName = Nije moguće deliti web kameru: Razlog : {0}
bbb.webcamPermissions.chrome.title = Dozvole Chrome web kamera
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Web kamere
bbb.videodock.quickLink.label = Prozor web kamera
bbb.video.minimizeBtn.accessibilityName = Umanji prozor web kamere
@@ -367,14 +370,15 @@ bbb.video.publish.closeBtn.accessName = Zatvori prozor dijaloga web kamere
bbb.video.publish.closeBtn.label = Odustani
bbb.video.publish.titleBar = Objavljivanje prozora web kamere
bbb.video.streamClose.toolTip = Zatvori prenos za : {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = Deljenje ekrana: Prikaz predavača
bbb.screensharePublish.pause.tooltip = Pauziraj deljenje ekrana
bbb.screensharePublish.pause.label = Pauziraj
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
bbb.screensharePublish.maximizeRestoreBtn.toolTip = Ne možete raširiti ovaj prozor.
bbb.screensharePublish.closeBtn.toolTip = Zaustavi deljenje i zatvori
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = Smanji
bbb.screensharePublish.minimizeBtn.accessibilityName = Umanji prozor objavljivanja ekrana deljenja
bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Proširi prozor objavljivanja deljenja ekrana
@@ -416,40 +420,41 @@ bbb.screensharePublish.startFailed.label = Nije detektovan početak deljenja ekr
bbb.screensharePublish.restartFailed.label = Nije detektovan ponovni početak deljenja ekrana.
bbb.screensharePublish.jwsCrashed.label = Aplikacija deljenja ekrana se neočekivano zatvorila.
bbb.screensharePublish.commonErrorMessage.label = Odaberi 'Odustani' i pokušaj ponovo.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
bbb.screensharePublish.cancelButton.label = Odustani
bbb.screensharePublish.startButton.label = Započni
bbb.screensharePublish.stopButton.label = Zaustavi
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Deljenje ekrana
bbb.screenshareView.fitToWindow = Prilagodi prozoru
bbb.screenshareView.actualSize = Prikaži stvarnu veličinu
bbb.screenshareView.minimizeBtn.accessibilityName = Umanji prozor prikaza deljenja ekrana
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Proširi prozor prikaza deljenja ekrana
bbb.screenshareView.closeBtn.accessibilityName = Zatvori prozor prikaza deljenja ekrana
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop = Onemogući Zvuk
bbb.toolbar.phone.toolTip.mute = Prestani sa slušanjem konferencije
bbb.toolbar.phone.toolTip.unmute = Počni da slušaš konfeenciju
bbb.toolbar.phone.toolTip.nomic = Mikrofon nije detektovan
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
+bbb.toolbar.deskshare.toolTip.start =
bbb.toolbar.deskshare.toolTip.stop = Prekini deljenje svog ekrana
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Podeli svoju web kameru
bbb.toolbar.video.toolTip.stop = Prekini deljenje svoje web kamere
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Dodaj prilagođen prikaz na listu
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Promeni svoj prikaz
bbb.layout.loadButton.toolTip = Učitaj izgled iz datoteke
bbb.layout.saveButton.toolTip = Sačuvaj izgled u datoteku
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Primeni izgled
bbb.layout.combo.custom = * Prilagođeni izgled
bbb.layout.combo.customName = Prilagođeni prikaz
bbb.layout.combo.remote = Udaljeni
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Izgledi su uspešno sačuvani
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Izgledii su uspešno učitani
bbb.layout.load.failed = Izgled nije moguće učitati
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Podrazumevani izgled
bbb.layout.name.closedcaption = Zatvoren natpis
bbb.layout.name.videochat = Video čet
bbb.layout.name.webcamsfocus = Sesija sa web kamerom
bbb.layout.name.presentfocus = Sesija sa prezentacijom
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Asistent predavanja
bbb.layout.name.lecture = Predavanje
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Olovka
bbb.highlighter.toolbar.pencil.accessibilityName = Promeni kursor na tabli u olovku
bbb.highlighter.toolbar.ellipse = Kružnica
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Izaberi boju
bbb.highlighter.toolbar.color.accessibilityName = Boja markera na tabli
bbb.highlighter.toolbar.thickness = Promeni debljinu
bbb.highlighter.toolbar.thickness.accessibilityName = Debljina ispisa na tabli
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Odjavljen
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = Serverska aplikacija je isključena
bbb.logout.asyncerror = Došlo je do greške u sinhronizaciji
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Veza sa serverom je prekinuta
bbb.logout.rejected = Konekcija sa serverom odbačena
bbb.logout.invalidapp = red5 aplikacija ne postoji
bbb.logout.unknown = Izgubljena veza sa serverom
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Uspešno ste izašli iz konferencije
bbb.logour.breakoutRoomClose = Vaš pretraživač će biti zatvoren
-bbb.logout.ejectedFromMeeting = Moderator Vas je izbacio sa sesije.
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Ako ste se slučajno odjavili, kliknite dugme ispod da biste se ponovo povezali.
bbb.logout.refresh.label = Poveži se ponovo
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Potvrdi odjavu
bbb.logout.confirm.message = Da li ste sigurni da želite da se odjavite?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Da
bbb.logout.confirm.no = Ne
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Detektovani problemi prilikom povezivanja
bbb.connection.reconnecting=Ponovno povezivanje
bbb.connection.reestablished=Konekcija je ponovno uspostavljena
@@ -530,59 +539,60 @@ bbb.notes.title = Napomene
bbb.notes.cmpColorPicker.toolTip = Boja teksta
bbb.notes.saveBtn = Sačuvaj
bbb.notes.saveBtn.toolTip = Sačuvaj napomenu
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Odaberi opciju Dozvoli koja iskače kako biste proverili da li deljenje radne površine ispravno funkcioniše
bbb.settings.deskshare.start = Označi podelu radne ploče
bbb.settings.voice.volume = Aktivnost mikrofona
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Greška u Flash verziji
bbb.settings.flash.text = Imate instaliran Flash {0}, a vama je potrebna makar verzija {1}, da bi BigBlueButtor ispravno funkcionisao. Kliknite na dugme ispod, kako biste instalirali najnoviju verziju Adobe Flash-a.
bbb.settings.flash.command = Instaliraj najnoviji Flash
bbb.settings.isight.label = Greška sa iSight web kamerom
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Instaliraj Flash 10.2 RC2
bbb.settings.warning.label = Upozorenje
bbb.settings.warning.close = Zatvori ovo upozorenje
bbb.settings.noissues = Nema pronađenih otvorenih stavki.
bbb.settings.instructions = Prihvatite Flash zahtev koji traži dozvolu korišćenja kamere. Ako možete da vidite i čujete sebe, Vaš pretraživač je podešen ispravno. Druge potencijalne mogućnosti su prikazane ispod. Kliknite na svaku kako biste našli moguće rešenje.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Trougao
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Promeni kursor na tabli u trougao
ltbcustom.bbb.highlighter.toolbar.line = Linija
@@ -592,7 +602,7 @@ ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Promeni kursor table
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Boja teksta
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Veličina fonta
bbb.caption.window.title = Zatvoren natpis
-bbb.caption.quickLink.label = Closed Caption Window
+bbb.caption.quickLink.label =
bbb.caption.window.titleBar = Zatvoreni prozor trake natpisa
bbb.caption.window.minimizeBtn.accessibilityName = Umanji zatvoren prozor natpisa
bbb.caption.window.maximizeRestoreBtn.accessibilityName = Raširi zatvoren prozor natpisa
@@ -600,8 +610,8 @@ bbb.caption.transcript.noowner = Nijedan
bbb.caption.transcript.youowner = Ti
bbb.caption.transcript.pastewarning.title = Upozorenje nalepljenog natpisa
bbb.caption.transcript.pastewarning.text = Nije moguće nalepiti tekst koji je duži od {0} karaktera. Nalepili ste {1} karaktera.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
bbb.caption.option.label = Opcije
bbb.caption.option.language = Jezik
bbb.caption.option.language.tooltip = Odaberi jezik natpisa
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Došli ste do poslednje poruke
bbb.accessibility.chat.chatBox.navigatedLatestRead = Došli ste do poslednje pročitane poruke
bbb.accessibility.chat.chatwindow.input = Unos četa
bbb.accessibility.chat.chatwindow.audibleChatNotification = Obaveštenje sa četa koje je moguće čuti
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Koristite strelice za navigaciju kroz poruke na četu
bbb.accessibility.notes.notesview.input = Unos napomena
bbb.shortcuthelp.title = Prečice
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Smanji prozor za pomoć sa prečicama
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Raširi prozor za pomoć sa prečicama
bbb.shortcuthelp.closeBtn.accessibilityName = Zatvori prozor za pomoć sa prečicama
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Opšte prečice
bbb.shortcuthelp.dropdown.presentation = Prečice za prezentaciju
bbb.shortcuthelp.dropdown.chat = Prečice za čet
bbb.shortcuthelp.dropdown.users = Korisničke prečice
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Prečica
bbb.shortcuthelp.headers.function = Funkcija
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Pomeri fokus na prozor prezentacije
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Pomeri fokus na prozor četa
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Otvori prozor deljenja radne površine
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Odjavi se sa sesije
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Podigni ruku
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Učitaj prezentaciju
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Idi na prethodni slajd
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Idi na sledeći slajd
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Prilagodi slajdove po širini
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Prilagodi slajdove po stranici
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Dodeli odabranoj osobi ulogu predavača
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Izbaci odabranu osobu sa sesije
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Isključi ton ili ponovo uključi zvuk odabranoj osobi
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Isključi ton ili ponovo uključi zvuk svima
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Isključi zvuk svima osim predavaču
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Fokusiraj na tab četa
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Fokusiraj na birač boje fonta
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,8 +756,8 @@ bbb.shortcutkey.chat.chatbox.goread.function = Navigacija na poslednju pročitan
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Brza prečica za trenutno ispravku greške
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Početak ankete
bbb.polling.startButton.label = Započni anketu
@@ -755,6 +765,7 @@ bbb.polling.publishButton.label = Objavljivanje
bbb.polling.closeButton.label = Zatvori
bbb.polling.customPollOption.label = Prilagođena anketa...
bbb.polling.pollModal.title = Aktuelni rezultati ankete
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Unesi izbore ankete
bbb.polling.respondersLabel.novotes = Čekaju se odgovori
bbb.polling.respondersLabel.text = {0} korisnika je odgovorilo
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Primeni podešavanja zaključavanja
bbb.lockSettings.cancel = Odustani
bbb.lockSettings.cancel.toolTip = Zatvori ovaj prozor bez čuvanja
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Zaključvanje moderatora
bbb.lockSettings.privateChat = Privatni čet
bbb.lockSettings.publicChat = Javni čet
bbb.lockSettings.webcam = Web kamera
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Mikrofon
bbb.lockSettings.layout = Izgled
bbb.lockSettings.title=Zaključaj posmatrače
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Pridruživanje je zaključano
bbb.users.breakout.breakoutRooms = Sobe za predah
bbb.users.breakout.updateBreakoutRooms = Ažuriraj sobe za predah
+bbb.users.breakout.timerForRoom.toolTip =
bbb.users.breakout.timer.toolTip = Isteklo vreme za sobe za predah
bbb.users.breakout.calculatingRemainingTime = Proračunavanje preostalog vremena...
bbb.users.breakout.closing = prekidanje
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Sobe
bbb.users.breakout.roomsCombo.accessibilityName = Broj soba za kreiranje
bbb.users.breakout.room = Soba
-bbb.users.breakout.randomAssign = Dodeli korisnike nasumično
bbb.users.breakout.timeLimit = Vremensko ograničenje
bbb.users.breakout.durationStepper.accessibilityName = Vremensko ograničenje u minutima
bbb.users.breakout.minutes = Minuti
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = Pozovi
bbb.users.breakout.close = Zatvori
bbb.users.breakout.closeAllRooms = Zatvori sve sobe za predah
bbb.users.breakout.insufficientUsers = Nedovoljan broj korisnika. Morate postaviti makar jednog korisnika u sobu za predah
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = Soba
bbb.users.roomsGrid.users = Korisnici
bbb.users.roomsGrid.action = Akcija
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Prebaci zvuk
bbb.users.roomsGrid.join = Priključi se
bbb.users.roomsGrid.noUsers = Nema korisnika u ovoj sobi
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/sv_SE/bbbResources.properties b/bigbluebutton-client/locale/sv_SE/bbbResources.properties
index 30e022ff5f3f..c3b29c4b54ea 100644
--- a/bigbluebutton-client/locale/sv_SE/bbbResources.properties
+++ b/bigbluebutton-client/locale/sv_SE/bbbResources.properties
@@ -1,159 +1,160 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Ansluter till server
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Beklagar, servern kan inte nås.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Öppna loggfönster
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Återställ layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Du har antagligen en översättning för BigBlueButton som är gammal.
bbb.oldlocalewindow.reminder2 = Vänligen rensa webbläsarens cacheminne och försök igen.
bbb.oldlocalewindow.windowTitle = Varning: översättningsfilerna är föråldrade
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
bbb.micSettings.speakers.header = Testa högtalare
-bbb.micSettings.microphone.header = Test Microphone
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = Testa högtalare
bbb.micSettings.playSound.toolTip = Spela testmusik i högtalarna
bbb.micSettings.hearFromHeadset = Du ska nu höra ljud i ditt headset, inte i dina datorhögtalare
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = Testa eller ändra mikrofon
bbb.micSettings.changeMic.toolTip = Öppna dialogrutan för flashspelarens mikrofoninställningar
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = Anslut med ljud
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
bbb.micSettings.access.title = Ljudinställningar. Ljudinställningar kommer vara aktiva tills fönstret stängs.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Hjälp
bbb.mainToolbar.logoutBtn = Logga ut
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Välj språk
bbb.mainToolbar.settingsBtn = Inställningar
bbb.mainToolbar.settingsBtn.toolTip = Öppna inställningar
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Minimera
bbb.window.maximizeRestoreBtn.toolTip = Maximera
bbb.window.closeBtn.toolTip = Stäng
@@ -162,92 +163,93 @@ bbb.presentation.titleBar = Titelrad presentation
bbb.chat.titleBar = Titelrad chatt
bbb.users.title = Användare{0} {1}
bbb.users.titleBar = Titelrad användare
-bbb.users.quickLink.label = Users Window
+bbb.users.quickLink.label =
bbb.users.minimizeBtn.accessibilityName = Minimera användarfönster
bbb.users.maximizeRestoreBtn.accessibilityName = Maximera användarfönster
bbb.users.settings.buttonTooltip = Inställningar
-bbb.users.settings.audioSettings = Audio Test
+bbb.users.settings.audioSettings =
bbb.users.settings.webcamSettings = Webbkamerainställningar
bbb.users.settings.muteAll = Inaktivera ljud för alla användare
bbb.users.settings.muteAllExcept = Inaktivera ljud för alla användare förutom presentatör
bbb.users.settings.unmuteAll = Aktivera ljud för alla användare
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = Prata
bbb.users.pushToMute.toolTip = Avaktivera min mikrofon
bbb.users.muteMeBtnTxt.talk = Aktivera min mikrofon
bbb.users.muteMeBtnTxt.mute = Avaktivera mikrofon
bbb.users.muteMeBtnTxt.muted = Tystad
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
+bbb.users.usersGrid.contextmenu.exportusers =
bbb.users.usersGrid.accessibilityName = Användarlista. Använd piltangenter för att navigera.
bbb.users.usersGrid.nameItemRenderer = Namn
bbb.users.usersGrid.nameItemRenderer.youIdentifier = du
bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
bbb.users.usersGrid.statusItemRenderer.presenter = Presentatör
bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
bbb.users.usersGrid.statusItemRenderer.viewer = Visningsprogram
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
bbb.users.usersGrid.mediaItemRenderer = Media
bbb.users.usersGrid.mediaItemRenderer.talking = Talar
bbb.users.usersGrid.mediaItemRenderer.webcam = Delar webbkamera
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Visa webbkamera
bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Avaktivera mikrofon {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Avlägsna {0}
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Delar webbkamera
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon avstängd
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon påslagen
bbb.users.usersGrid.mediaItemRenderer.noAudio = Inte i ljudkonferens
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Presentation
bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Föregående bild
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
+bbb.presentation.btnSlideNum.accessibilityName =
bbb.presentation.btnSlideNum.toolTip = Välj en bild
bbb.presentation.forwardBtn.toolTip = Nästa bild
bbb.presentation.maxUploadFileExceededAlert = Fel: Filstorleken är större än vad som är tillåtett
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Filuppladdning genomförd. Vänligen vänta ti
bbb.presentation.uploaded = Uppladdad.
bbb.presentation.document.supported = Det uppladdade dokumentet stöds, startar konvertering...
bbb.presentation.document.converted = Konverteringen av dokumentet lyckades.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Fel: vänligen kontakta administratören.
bbb.presentation.error.security = Säkerhetsfel: vänligen kontakta administratören.
bbb.presentation.error.convert.notsupported = Fel: det uppladdade dokumentet stöds inte. Vänligen ladda upp en fil i kompatibelt format.
@@ -264,8 +266,8 @@ bbb.presentation.error.convert.nbpage = Fel: misslyckades med att fastställa an
bbb.presentation.error.convert.maxnbpagereach = Fel: det uppladdade dokumentet består av för många sidor.
bbb.presentation.converted = {0} av {1} sidor konverterade.
bbb.presentation.slider = Zoomningsnivå för presentation
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = Presentationsfil
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
@@ -276,79 +278,80 @@ bbb.presentation.minimizeBtn.accessibilityName = Minimera presentationsfönstret
bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximera presentationsfönstret
bbb.presentation.closeBtn.accessibilityName = Stäng presentationsfönster
bbb.fileupload.title = Lägg till filer till din presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
+bbb.fileupload.lblFileName.defaultText =
bbb.fileupload.selectBtn.label = Välj fil
bbb.fileupload.selectBtn.toolTip = Öppna dialogruta för att välja fil
bbb.fileupload.uploadBtn = Ladda upp
bbb.fileupload.uploadBtn.toolTip = Ladda upp vald fil
bbb.fileupload.deleteBtn.toolTip = Radera presentation
bbb.fileupload.showBtn = Visa
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Visa presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Skapar miniatyrbilder...
bbb.fileupload.progBarLbl = Framgång:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Chatta
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = Textfärg
bbb.chat.input.accessibilityName = Redigeringsfönster för chattmeddelande
bbb.chat.sendBtn.toolTip = Skicka meddelande
bbb.chat.sendBtn.accessibilityName = Sänd chattmeddelande
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = Alla
bbb.chat.optionsTabName = Valmöjligheter
bbb.chat.privateChatSelect = Välj en person att chatta med privat
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = Chattalternativ
bbb.chat.fontSize = Textstorlek chattmeddelande
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Minimera chattfönster
bbb.chat.maximizeRestoreBtn.accessibilityName = Maximera chattfönster
bbb.chat.closeBtn.accessibilityName = Stäng chattfönster
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = Ändra webbkamera
bbb.publishVideo.changeCameraBtn.toolTip = Öppna dialogrutan för att ändra webbkamera
bbb.publishVideo.cmbResolution.tooltip = Välj upplösning för webbkamera
bbb.publishVideo.startPublishBtn.labelText = Starta delning
bbb.publishVideo.startPublishBtn.toolTip = Starta delning av din webbkamera
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
bbb.video.minimizeBtn.accessibilityName = Minimera fönstret för webbkameror
bbb.video.maximizeRestoreBtn.accessibilityName = Maximera fönstret för webbkameror
bbb.video.controls.muteButton.toolTip = Aktivera eller avaktivera mikrofon
@@ -361,96 +364,98 @@ bbb.video.publish.hint.waitingApproval = Väntar på tillstånd
bbb.video.publish.hint.videoPreview = Förhandsvisning webbkamera
bbb.video.publish.hint.openingCamera = Öppnar webbkamera...
bbb.video.publish.hint.cameraDenied = Åtkomst till webbkamera nekades
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
+bbb.video.publish.hint.cameraIsBeingUsed =
bbb.video.publish.hint.publishing = Publicerar...
bbb.video.publish.closeBtn.accessName = Stäng dialogrutan för webbkamerainställningar
-bbb.video.publish.closeBtn.label = Cancel
+bbb.video.publish.closeBtn.label =
bbb.video.publish.titleBar = Publicera webbkamerafönster
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Lägg till anpassad layout till listan
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
bbb.layout.loadButton.toolTip = Ladda laoyouts från fil
bbb.layout.saveButton.toolTip = Spara layouts till fil
bbb.layout.lockButton.toolTip = Lås layout
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Använd en layout
bbb.layout.combo.custom = * Anpassad layout
bbb.layout.combo.customName = Anpassad layout
bbb.layout.combo.remote = Fjärr
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Layouter sparades
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Layouter laddades
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Penna
bbb.highlighter.toolbar.pencil.accessibilityName = Ändra pekare för whiteboard till penna
bbb.highlighter.toolbar.ellipse = Cirkel
@@ -484,420 +492,380 @@ bbb.highlighter.toolbar.rectangle = Rektangel
bbb.highlighter.toolbar.rectangle.accessibilityName = Ändra markören för whiteboard till rektangel
bbb.highlighter.toolbar.panzoom = Panorera och zooma
bbb.highlighter.toolbar.panzoom.accessibilityName = Ändra markör för whiteboard till panorera och zooma
-bbb.highlighter.toolbar.clear = Clear All Annotations
+bbb.highlighter.toolbar.clear =
bbb.highlighter.toolbar.clear.accessibilityName = Rensa whiteboardsidan
-bbb.highlighter.toolbar.undo = Undo Annotation
+bbb.highlighter.toolbar.undo =
bbb.highlighter.toolbar.undo.accessibilityName = Ångra senaste whiteboardform
bbb.highlighter.toolbar.color = Välj färg
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
bbb.notes.cmpColorPicker.toolTip = Textfärg
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
bbb.shortcutkey.chat.sendMessage.function = Sänd chattmeddelande
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = Stäng
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = Starta delning
bbb.publishVideo.changeCameraBtn.labelText = Ändra webbkamera
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/te/bbbResources.properties b/bigbluebutton-client/locale/te/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/te/bbbResources.properties
+++ b/bigbluebutton-client/locale/te/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/th/bbbResources.properties b/bigbluebutton-client/locale/th/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/th/bbbResources.properties
+++ b/bigbluebutton-client/locale/th/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/th_TH/bbbResources.properties b/bigbluebutton-client/locale/th_TH/bbbResources.properties
index b712769b152f..ea6a7722f1b1 100644
--- a/bigbluebutton-client/locale/th_TH/bbbResources.properties
+++ b/bigbluebutton-client/locale/th_TH/bbbResources.properties
@@ -1,280 +1,282 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = กำลังเชื่อมต่อเครื่องแม่ข่าย
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = ขออภัยเราไม่สามารถติดต่อเครื่องแม่ข่ายได้ในขณะนี้
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = เปิดการทำงาน
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = จัดตั้งเค้าโครงใหม่
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = คุณอาจจะมีการแปลภาษาเก่าของ BigBlueButton
bbb.oldlocalewindow.reminder2 = โปรดลบแคชออกจากเว็บเบราว์เซอร์และลองใหม่อีกครั้ง
bbb.oldlocalewindow.windowTitle = คำเตือน : การแปลภาษาแบบเก่า
-bbb.audioSelection.title = How do you want to join the audio?
+bbb.audioSelection.title =
bbb.audioSelection.btnMicrophone.label = ไมโครโฟน
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
+bbb.audioSelection.btnMicrophone.toolTip =
bbb.audioSelection.btnListenOnly.label = ฟังเท่านั้น
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
bbb.micSettings.title = ทดสอบเสียง
-bbb.micSettings.speakers.header = Test Speakers
+bbb.micSettings.speakers.header =
bbb.micSettings.microphone.header = ทดสอบไมโครโฟน
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
bbb.micSettings.echoTestAudioYes = ใช่
bbb.micSettings.echoTestAudioNo = ไม่ใช่
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = ทดสอบหรือเปลี่ยนไมโครโฟน
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
+bbb.micSettings.changeMic.toolTip =
bbb.micSettings.comboMicList.toolTip = โปรดเลือกไมโครโฟน
-bbb.micSettings.micRecordVolume.label = Gain
+bbb.micSettings.micRecordVolume.label =
bbb.micSettings.micRecordVolume.toolTip = ตั้งค่าไมโครโฟนของคุณ
bbb.micSettings.nextButton = ถัดไป
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
bbb.micSettings.join.toolTip = เข้าร่วมการประชุมทางเสียง
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
bbb.micWarning.testAgain.label = ทดสอบอีกครั้ง
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = ช่วยเหลือ
bbb.mainToolbar.logoutBtn = ออกจากระบบ
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
bbb.mainToolbar.settingsBtn = ตั้งค่า
bbb.mainToolbar.settingsBtn.toolTip = เปิดการตั้งค่า
bbb.mainToolbar.shortcutBtn = คีย์ลัด
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
+bbb.mainToolbar.shortcutBtn.toolTip =
bbb.mainToolbar.recordBtn.toolTip.start = เริ่มต้นการบันทึกวีดีโอ
bbb.mainToolbar.recordBtn.toolTip.stop = พักวีดีโอ
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
bbb.users.settings.buttonTooltip = ตั้งค่า
bbb.users.settings.audioSettings = ทดสอบเสียง
bbb.users.settings.webcamSettings = ตั้งค่ากล้องวีดีโอ
bbb.users.settings.muteAll = ปิดเสียงทั้งหมด
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
+bbb.users.settings.muteAllExcept =
bbb.users.settings.unmuteAll = ยกเลิกการปิดเสียงทั้งหมด
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
bbb.users.pushToTalk.toolTip = คุย
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
bbb.users.usersGrid.nameItemRenderer = ชื่อ
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
bbb.users.usersGrid.statusItemRenderer = สถานะ
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
bbb.users.usersGrid.mediaItemRenderer.micOff = ปิดไมโครโฟน
bbb.users.usersGrid.mediaItemRenderer.micOn = เปิดไมโครโฟน
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = การนำเสนอ
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = ภาพสไลด์ก่อนหน้านี้
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
bbb.presentation.forwardBtn.toolTip = ภาพสไลด์ถัดไป
bbb.presentation.maxUploadFileExceededAlert = ผิดพลาด: ไฟล์ใหญ่เกินไปกว่าที่ได้รับอณุญาติ
bbb.presentation.uploadcomplete = อัพโหลดสำเร็จ กรุณารอขณะที่เรากำลังแปลงเอกสาร
bbb.presentation.uploaded = อัพโหลดเรียบร้อยแล้ว
bbb.presentation.document.supported = เอกสารที่ถูกอัปโหลดผ่านการรับรอง กำลังเริ่มการแปลงเอกสาร...
bbb.presentation.document.converted = เอกสารถูกแปลงเรียบร้อยแล้ว
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO เกิดข้อผิดพลาดระหว่างอ่านข้อมูล กรุณาติดต่อผู้ดูแลระบบ
bbb.presentation.error.security = การรักษาความปลอดภัยเกิดข้อผิดพลาด : กรุณาติดต่อผู้ดูแลระบบ
bbb.presentation.error.convert.notsupported = ผิดพลาด : ไม่รองรับไฟล์ที่อัปโหลด กรุณาอัปโหลดไฟล์ที่รองรับ
bbb.presentation.error.convert.nbpage = ข้อผิดพลาด : ไม่สามารถระบุจำนวนหน้าในเอกสารที่อัปโหลด
bbb.presentation.error.convert.maxnbpagereach = ข้อผิดพลาด : เอกสารที่อัปโหลดมีจำนวนหน้ามากเกินไป
bbb.presentation.converted = แปลง {0} จาก {1} สไลด์
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
bbb.presentation.uploadwindow.presentationfile = ไฟล์นำเสนอ
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
bbb.presentation.uploadwindow.excel = EXCEL
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
bbb.fileupload.title = อัพโหลดไฟล์นำเสนอ
bbb.fileupload.lblFileName.defaultText = ไม่ได้เลือกไฟล์
bbb.fileupload.selectBtn.label = เลือกไฟล์
@@ -283,621 +285,587 @@ bbb.fileupload.uploadBtn = อัพโหลด
bbb.fileupload.uploadBtn.toolTip = อัพโหลดไฟล์
bbb.fileupload.deleteBtn.toolTip = ลบไฟล์นำเสนอ
bbb.fileupload.showBtn = แสดง
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = แสดงการนำเสนอ
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = กำลังสร้างภาพขนาดเล็ก
bbb.fileupload.progBarLbl = ความคืบหน้า:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = สนทนา
-bbb.chat.quickLink.label = Chat Window
+bbb.chat.quickLink.label =
bbb.chat.cmpColorPicker.toolTip = สีอักษร
-bbb.chat.input.accessibilityName = Chat Message Editing Field
+bbb.chat.input.accessibilityName =
bbb.chat.sendBtn.toolTip = ส่งข้อความ
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
bbb.chat.publicChatUsername = ทั้งหมด
-bbb.chat.optionsTabName = Options
+bbb.chat.optionsTabName =
bbb.chat.privateChatSelect = เลือกบุคคลเพื่อสนทนาแบบส่วนตัว
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = ตัวเลือกในการสนทนา
bbb.chat.fontSize = ขนาดอักษร
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
bbb.publishVideo.startPublishBtn.toolTip = เริ่มการเผยแพร่จากเวปแคม
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = กล้อง
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
bbb.toolbar.phone.toolTip.nomic = ไม่พบไมโครโฟน
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = เปลี่ยนรูปแบบ Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = วีดีโอแชท
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = เน้นข้อความ
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
+bbb.highlighter.toolbar.pencil.accessibilityName =
bbb.highlighter.toolbar.ellipse = วงกลม
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
+bbb.highlighter.toolbar.ellipse.accessibilityName =
bbb.highlighter.toolbar.rectangle = สี่เหลี่ยมผืนผ้า
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
bbb.highlighter.toolbar.color = เลือกสี
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
+bbb.highlighter.toolbar.color.accessibilityName =
bbb.highlighter.toolbar.thickness = เปลี่ยนความหนา
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = ตกลง
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
bbb.logout.connectionclosed = การเชื่อมต่อกับเครื่องแม่ข่ายถูกปิดลง
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
bbb.logout.usercommand = คุณได้ออกจากห้องประชุมแล้ว
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = ใช่
bbb.logout.confirm.no = ไม่ใช่
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
bbb.notes.title = โน๊ต
bbb.notes.cmpColorPicker.toolTip = สีตัวอักษร
bbb.notes.saveBtn = บันทึก
bbb.notes.saveBtn.toolTip = บันทึกโน๊ต
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = เกิดความผิดพลาดกับรุ่นของ Flash
bbb.settings.flash.text = คุณติดตั้ง Flash รุ่น {0} แต่ระบบ BigBlueButton ต้องการอย่างน้อยรุ่น {1} เพื่อทำงานได้อย่างถูกต้อง คลิกปุ่มด้านล่างนี้เพื่อติดตั้ง Adobe Flash รุ่นล่าสุด
bbb.settings.flash.command = ติดตั้ง Flash รุ่นใหม่ล่าสุด
bbb.settings.isight.label = เกิดความผิดพลาดกับกล้อง iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = ติดตั้ง Flash รุ่น 10.2 RC2
-bbb.settings.warning.label = Warning
+bbb.settings.warning.label =
bbb.settings.warning.close = ปิดการแจ้งเตือนนี้
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
ltbcustom.bbb.highlighter.toolbar.text = ตัวอักษร
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = สีตัวอักษร
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = ขนาดตัวอักษร
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
bbb.caption.option.textcolor.tooltip = สีตัวอักษร
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
bbb.shortcuthelp.title = คีย์ลัด
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = ปิด
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
bbb.polling.answer.Yes = ใช่
bbb.polling.answer.No = ไม่ใช่
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
bbb.lockSettings.privateChat = แชทส่วนตัว
bbb.lockSettings.publicChat = แชทสาธารณะ
bbb.lockSettings.webcam = กล้องวีดีโอ
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = ไมโครโฟน
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/tr/bbbResources.properties b/bigbluebutton-client/locale/tr/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/tr/bbbResources.properties
+++ b/bigbluebutton-client/locale/tr/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/tr_TR/bbbResources.properties b/bigbluebutton-client/locale/tr_TR/bbbResources.properties
index 74ab611f9057..31561540c790 100644
--- a/bigbluebutton-client/locale/tr_TR/bbbResources.properties
+++ b/bigbluebutton-client/locale/tr_TR/bbbResources.properties
@@ -1,42 +1,42 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Sunucuya bağlanıyor
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading = Yükleniyor
bbb.mainshell.statusProgress.cannotConnectServer = Üzgünüz, sunucuya bağlanamıyoruz.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (sürüm {0})
bbb.mainshell.logBtn.toolTip = Sistem Kayıtlarını Aç
bbb.mainshell.meetingNotFound = Görüşme Bulunamadı
bbb.mainshell.invalidAuthToken = Kimlik Doğrulama Dizesi Hatalı
-bbb.mainshell.resetLayoutBtn.toolTip = Sayfa Düzenini Sıfırla
+bbb.mainshell.resetLayoutBtn.toolTip = Görünümü Sıfırla
bbb.mainshell.notification.tunnelling = Bağlantı Köprüleniyor
bbb.mainshell.notification.webrtc = WebRTC Sesi
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
+bbb.mainshell.fullscreenBtn.toolTip = Tam ekrana geç
+bbb.mainshell.quote.sentence.1 = Başarıda gizem yoktur; hazırlık, çok çalışma ve başarısızlıklardan ders alabilmenin sonucudur.
bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
+bbb.mainshell.quote.sentence.2 = Bana söylersen unuturum. Öğretirsen hatırlarım. Beni de dahil edersen öğrenirim.
bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
+bbb.mainshell.quote.sentence.3 = Çok çalışarak zor işin değerini öğrendim.
bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
+bbb.mainshell.quote.sentence.4 = Öğrenme tutkusunu harekete geçirebilirseniz, gelişimi asla engelleyemezsiniz.
bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
+bbb.mainshell.quote.sentence.5 = Araştırma yeni bilgiyi doğurur.
bbb.mainshell.quote.attribution.5 = Neil Armstrong
bbb.oldlocalewindow.reminder1 = Eski bir BigBlueButton dil çevirisine sahip olabilirsiniz.
bbb.oldlocalewindow.reminder2 = Lütfen tarayıcınızın önbelleğini temizleyip tekrar deneyin.
bbb.oldlocalewindow.windowTitle = Uyarı: Dil Çevirisi Eski
-bbb.audioSelection.title = Sesli Görüşmeye Katılma Şekli Seç
+bbb.audioSelection.title = Sesli Görüşmeye nasıl katılmak istiyorsunuz?
bbb.audioSelection.btnMicrophone.label = Mikrofon
bbb.audioSelection.btnMicrophone.toolTip = Mikrofonunuzu kullanarak sesli katılın
bbb.audioSelection.btnListenOnly.label = Yalnızca Dinle
-bbb.audioSelection.btnListenOnly.toolTip = Mikrofon kullanmadan dinleyici olarak katılın
+bbb.audioSelection.btnListenOnly.toolTip = Yalnızca dinleyici olarak katılın
bbb.audioSelection.txtPhone.text = Bu görüşmeye telefonla bağlanmak için, {0} numarasını arayın ve ardından konferans pin numarası olarak {1} tuşlayın.
-bbb.micSettings.title = Ses testi
+bbb.micSettings.title = Ses Sınama
bbb.micSettings.speakers.header = Hoparlörü Sına
bbb.micSettings.microphone.header = Mikrofonu Sına
bbb.micSettings.playSound = Hoparlörü Sına
-bbb.micSettings.playSound.toolTip = Hoparlörü sınamak için müzik çalın
+bbb.micSettings.playSound.toolTip = Hoparlörü sınamak için müzik oynatın
bbb.micSettings.hearFromHeadset = Sesi bilgisayarınızın hoparlöründen değil, kulaklığınızdan duymalısınız.
bbb.micSettings.speakIntoMic = Kulaklık kullanıyorsanız, sesi hoparlörlerden değil kulaklığınızdan duymalısınız.
-bbb.micSettings.echoTestMicPrompt = Bu bir ses testidir. Lütfen bir kaç kelime konuşun. Hoparlörünüzden kendi sesinizi duydunuz mu?
+bbb.micSettings.echoTestMicPrompt = Bu bir özel ses testidir. Birkaç kelime konuşun. Sesinizi duydunuz mu?
bbb.micSettings.echoTestAudioYes = Evet
bbb.micSettings.echoTestAudioNo = Hayır
bbb.micSettings.speakIntoMicTestLevel = Mikrofona konuşun. Eğer alttaki mavi barda hareket görmezseniz başka bir mikrofon seçin.
@@ -47,33 +47,34 @@ bbb.micSettings.comboMicList.toolTip = Mikrofonu seç
bbb.micSettings.micRecordVolume.label = Sinyal Seviyesi
bbb.micSettings.micRecordVolume.toolTip = Mikrofonun sinyal seviyesini ayarla
bbb.micSettings.nextButton = Sonraki
-bbb.micSettings.nextButton.toolTip = Yankı testini başlat
+bbb.micSettings.nextButton.toolTip = Ses testini başlat
bbb.micSettings.join = Sesli Katıl
-bbb.micSettings.join.toolTip = Sesli konferansa katıl
+bbb.micSettings.join.toolTip = Sesli görüşmeye katıl
bbb.micSettings.cancel = Vazgeç
bbb.micSettings.connectingtoecho = Bağlanıyor
bbb.micSettings.connectingtoecho.error = Ses Testinde Hata: Lütfen yöneticiyle iletişim kurun.
-bbb.micSettings.cancel.toolTip = Sesli konferansa katılmaktan vazgeç
+bbb.micSettings.cancel.toolTip = Sesli görüşmeye katılmaktan vazgeç
bbb.micSettings.access.helpButton = Yardım(yardım videolarını yeni sayfada aç)
bbb.micSettings.access.title = Ses Ayarları. Pencere kapanana kadar odak bu ses ayarları penceresinde kalacaktır
bbb.micSettings.webrtc.title = WebRTC Desteği
bbb.micSettings.webrtc.capableBrowser = Tarayıcınızın WebRTC desteği vardır.
bbb.micSettings.webrtc.capableBrowser.dontuseit = WebRTC kullanmamak için tıklayın
bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = WebRTC teknolojisini (kullanımda sıkıntı yaşıyorsanız önerilir) kullanmak istemiyorsanız buraya tıklayın.
-bbb.micSettings.webrtc.notCapableBrowser = Tarayıcınız için WebRTC desteği bulunmamaktadır. Lütfen Google Chrome (32 ya da üzeri sürümünü); ya da Mozilla Firefox (26 ya da üzeri sürümünü) kullanın. Bu rağmen Adobe Flash Platformunu kullanarak sesli konferansa katılabileceksiniz.
+bbb.micSettings.webrtc.notCapableBrowser = Web tarayıcınızın WebRTC desteği bulunmamaktadır. Lütfen Google Chrome (32 ya da üzeri sürümünü); ya da Mozilla Firefox (26 ya da üzeri sürümünü) kullanın. Halen Adobe Flash Platformunu kullanarak da sesli konferansa katılabilirsiniz.
bbb.micSettings.webrtc.connecting = Aranıyor
bbb.micSettings.webrtc.waitingforice = Bağlanıyor
bbb.micSettings.webrtc.transferring = Çevriliyor
bbb.micSettings.webrtc.endingecho = Sesli katılıyor
bbb.micSettings.webrtc.endedecho = Ses testi sonlandı.
+bbb.micPermissions.message.browserhttp = Sunucu bilgisayarın SSL güvenlik sertifikası olmadığından {0} mikrofon paylaşımınızı engelliyor.
bbb.micPermissions.firefox.title = Firefox Mikrofon Izinleri
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message = Firefox'a mikrofonunuzu kullanma izni vermek için İzin Ver tıklayın.
bbb.micPermissions.chrome.title = Chrome Mikrofon Izinleri
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Sesli Uyarı
-bbb.micWarning.joinBtn.label = Genede Katıl
+bbb.micPermissions.chrome.message = Chrome'un mikrofonunuzu kullanabilmesi için İzin Ver tıklayın
+bbb.micWarning.title = Ses Uyarısı
+bbb.micWarning.joinBtn.label = Yine de Katıl
bbb.micWarning.testAgain.label = Yeniden dene
-bbb.micWarning.message = Mikrofonunuzda herhangi bir hareketlilik yok, muhtemelen oturum sırasında diğerleri sizi duyamıyacak.
+bbb.micWarning.message = Mikrofonunuzda herhangi bir hareketlilik yok, muhtemelen oturum sırasında diğerleri sizi duyamayacaktır.
bbb.webrtcWarning.message = WebRTC {0} hatası tespit edildi. Flash kullanmak istermisiniz?
bbb.webrtcWarning.title = WebRTC Ses Hatası
bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket bağlantısı koptu
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC ses denemesi beklenmedi
bbb.webrtcWarning.connection.dropped = WebRTC bağlantısı düştü
bbb.webrtcWarning.connection.reconnecting = Yeniden bağlanmaya çalışılıyor
bbb.webrtcWarning.connection.reestablished = WebRTC bağlantısı yeniden kuruldu
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title = Hareket belirlenmedi.
+bbb.inactivityWarning.message = Bu görüşme pasif görünüyor. Otomatik olarak sonlandırılıyor...
+bbb.shuttingDown.message = Bu görüşme pasif kaldığı için sonlandırılıyor
+bbb.inactivityWarning.cancel = İptal
bbb.mainToolbar.helpBtn = Yardım
bbb.mainToolbar.logoutBtn = Çıkış
-bbb.mainToolbar.logoutBtn.toolTip = Çıkış
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip = Çıkış Yap
+bbb.mainToolbar.idleLogoutBtn = {0} | Çıkış Sayacını Sıfırla
bbb.mainToolbar.langSelector = Dil seçin
bbb.mainToolbar.settingsBtn = Ayarlar
bbb.mainToolbar.settingsBtn.toolTip = Ayarları Aç
@@ -108,33 +109,33 @@ bbb.mainToolbar.shortcutBtn = Kısayol Tuşları
bbb.mainToolbar.shortcutBtn.toolTip = Kısayol Tuşları Penceresini Aç
bbb.mainToolbar.recordBtn.toolTip.start = Kaydı başlat
bbb.mainToolbar.recordBtn.toolTip.stop = Kaydı durdur
-bbb.mainToolbar.recordBtn.toolTip.recording = Oturum kaydedilecek
-bbb.mainToolbar.recordBtn.toolTip.notRecording = Oturum kaydedilmeyecek
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.recording = Oturum kaydediliyor
+bbb.mainToolbar.recordBtn.toolTip.notRecording = Oturum kaydedilmiyor
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Yalnızca moderatörler kayıt başlatıp durdurabilir
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = Bu kayıt duraklatılamaz
+bbb.mainToolbar.recordBtn.toolTip.wontRecord = Bu oturum kaydedilemez
bbb.mainToolbar.recordBtn.confirm.title = Kayıt yapmayı onaylayın
-bbb.mainToolbar.recordBtn.confirm.message.start = Oturumun kaydının başlatılmasını istediğinizden emin misiniz?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Oturumun kaydının durdurulmasını istediğinizden emin misiniz?
-bbb.mainToolbar.recordBtn..notification.title = Ses Kaydı Bildirimi
-bbb.mainToolbar.recordBtn..notification.message1 = Bu görüşmenin ses kaydını alabilirsiniz.
-bbb.mainToolbar.recordBtn..notification.message2 = Ses kaydını başlatmak/bitirmek için başlık barındaki Kaydı Başlat/Bitir butonuna tıklayın.
+bbb.mainToolbar.recordBtn.confirm.message.start = Oturum kaydını başlatmak istediğinize emin misiniz?
+bbb.mainToolbar.recordBtn.confirm.message.stop = Oturum kaydını durdurmak istediğinize emin misiniz?
+bbb.mainToolbar.recordBtn.notification.title = Ses Kaydı Bildirimi
+bbb.mainToolbar.recordBtn.notification.message1 = Bu görüşmeyi kaydedebilirsiniz.
+bbb.mainToolbar.recordBtn.notification.message2 = Ses kaydını başlatmak/bitirmek için başlık barındaki Kaydı Başlat/Bitir butonuna tıklayın.
bbb.mainToolbar.recordingLabel.recording = (Kaydediliyor)
bbb.mainToolbar.recordingLabel.notRecording = Kaydedilmiyor
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message = Misafirsiniz, moderatörün onayını bekleyin.
+bbb.waitWindow.waitMessage.title = Bekliyor
+bbb.guests.title = Misafirler
+bbb.guests.message.singular = {0} adet kullanıcı bu görüşmeye katılmak istiyor
+bbb.guests.message.plural = {0} adet kullanıcı bu görüşmeye katılmak istiyor
+bbb.guests.allowBtn.toolTip = İzin ver
+bbb.guests.allowEveryoneBtn.text = Herkese izin ver
+bbb.guests.denyBtn.toolTip = Reddet
+bbb.guests.denyEveryoneBtn.text = Herkesi reddet
+bbb.guests.rememberAction.text = Seçimi hatırla
+bbb.guests.alwaysAccept = Her zaman kabul et
+bbb.guests.alwaysDeny = Her zaman reddet
+bbb.guests.askModerator = Moderatöre sor
+bbb.guests.Management = Misafir yönetimi
bbb.clientstatus.title = Uyarı Ayarları
bbb.clientstatus.notification = Okunmamış uyarılar
bbb.clientstatus.close = Kapat
@@ -151,9 +152,9 @@ bbb.clientstatus.webrtc.almostWeakStatus = WebRTC ses bağlantınız kötü
bbb.clientstatus.webrtc.weakStatus = WebRTC ses bağlantınızda bir sorun olabilir.
bbb.clientstatus.webrtc.message = Daha iyi ses için Firefox ya da Chrome kullanmanız önerilir.
bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.notdetected = Java sürümü belirlenemedi.
+bbb.clientstatus.java.notinstalled = Java yüklü değil, masaüstü paylaşımı yapabilmeniz için gerekli olan Java kurulumu için BURAYI tıklayın.
+bbb.clientstatus.java.oldversion = Yüklü Java sürümünüz eskimiş, masaüstü paylaşımı yapabilmeniz için gereken yeni sürüm Java kurulumu için BURAYI tıklayın.
bbb.window.minimizeBtn.toolTip = Küçült
bbb.window.maximizeRestoreBtn.toolTip = Büyült
bbb.window.closeBtn.toolTip = Kapat
@@ -166,20 +167,20 @@ bbb.users.quickLink.label = Kullanıcı Penceresi
bbb.users.minimizeBtn.accessibilityName = Kullanıcılar Penceresini Küçült
bbb.users.maximizeRestoreBtn.accessibilityName = Kullanıcılar Penceresini Büyült
bbb.users.settings.buttonTooltip = Ayarlar
-bbb.users.settings.audioSettings = Ses testi
+bbb.users.settings.audioSettings = Ses Sınama
bbb.users.settings.webcamSettings = Kamera Ayarları
-bbb.users.settings.muteAll = Tümünü Sessiz Yap
-bbb.users.settings.muteAllExcept = Sunucu Hariç Tümünü Sessiz yap
-bbb.users.settings.unmuteAll = Tümünü Sesli Yap
+bbb.users.settings.muteAll = Tüm Kullanıcıları Sustur
+bbb.users.settings.muteAllExcept = Sunucu Hariç Tümünü Sustur
+bbb.users.settings.unmuteAll = Tüm Kullanıcıları Konuştur
bbb.users.settings.clearAllStatus = Tüm durum simgelerini temizle
bbb.users.emojiStatusBtn.toolTip = Durum simgemi güncelle
-bbb.users.roomMuted.text = Izleyiciler susturuldu
+bbb.users.roomMuted.text = Izleyiciler Susturuldu
bbb.users.roomLocked.text = Izleyiciler kilitlendi
bbb.users.pushToTalk.toolTip = Konuş
-bbb.users.pushToMute.toolTip = Kendini sessiz yap
-bbb.users.muteMeBtnTxt.talk = Sesli Yap
-bbb.users.muteMeBtnTxt.mute = Sessiz Yap
-bbb.users.muteMeBtnTxt.muted = Sessiz
+bbb.users.pushToMute.toolTip = Kendini sustur
+bbb.users.muteMeBtnTxt.talk = Konuştur
+bbb.users.muteMeBtnTxt.mute = Sustur
+bbb.users.muteMeBtnTxt.muted = Susturulmuş
bbb.users.usersGrid.contextmenu.exportusers = Kullanıcı İsimlerini Kopyala
bbb.users.usersGrid.accessibilityName = Kullanıcı Listesi. Gezinmek için yön tuşlarını kullanın.
bbb.users.usersGrid.nameItemRenderer = Adı
@@ -187,21 +188,21 @@ bbb.users.usersGrid.nameItemRenderer.youIdentifier = siz
bbb.users.usersGrid.statusItemRenderer = Durumu
bbb.users.usersGrid.statusItemRenderer.changePresenter = Sunucuyu Değiştir
bbb.users.usersGrid.statusItemRenderer.presenter = Sunucu
-bbb.users.usersGrid.statusItemRenderer.moderator = Yönetici
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.moderator = Moderatör
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Yalnızca Ses
+bbb.users.usersGrid.statusItemRenderer.raiseHand = El kaldırmış
+bbb.users.usersGrid.statusItemRenderer.applause = Alkış
+bbb.users.usersGrid.statusItemRenderer.thumbsUp = Beğendim
+bbb.users.usersGrid.statusItemRenderer.thumbsDown = Kötü
+bbb.users.usersGrid.statusItemRenderer.speakLouder = Daha sesli konuşun
+bbb.users.usersGrid.statusItemRenderer.speakSofter = Daha düşük sesli konuşun
+bbb.users.usersGrid.statusItemRenderer.speakFaster = Daha hızlı konuşun
+bbb.users.usersGrid.statusItemRenderer.speakSlower = Daha yavaş konuşun
+bbb.users.usersGrid.statusItemRenderer.away = Dışarıda
+bbb.users.usersGrid.statusItemRenderer.confused = Şaşırmış
+bbb.users.usersGrid.statusItemRenderer.neutral = Nötr
+bbb.users.usersGrid.statusItemRenderer.happy = Mutlu
+bbb.users.usersGrid.statusItemRenderer.sad = Üzgün
bbb.users.usersGrid.statusItemRenderer.clearStatus = Durumu temizle
bbb.users.usersGrid.statusItemRenderer.viewer = İzleyici
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Kamerayı paylaşılıyor.
@@ -210,42 +211,43 @@ bbb.users.usersGrid.mediaItemRenderer = Medya
bbb.users.usersGrid.mediaItemRenderer.talking = Konuşuyor
bbb.users.usersGrid.mediaItemRenderer.webcam = Kamera Paylaşılıyor
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Kamerayı görüntüle
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = {0} sesini aç
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = {0} sesini kapat
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Konuştur {0}
+bbb.users.usersGrid.mediaItemRenderer.pushToMute = Sustur {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Kilitle {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Kilidi Aç {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kullanıcı At
+bbb.users.usersGrid.mediaItemRenderer.kickUser = Çıkar {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = Kamera Paylaşılıyor
bbb.users.usersGrid.mediaItemRenderer.micOff = Mikrofon devre dışı
bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon devrede
bbb.users.usersGrid.mediaItemRenderer.noAudio = Sesli görüşmede değil
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser = {0} kullanıcısını moderatör yap
+bbb.users.usersGrid.mediaItemRenderer.demoteUser = {0} kullanıcısını izleyici yap
bbb.users.emojiStatus.clear = Temizle
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand = El kaldır
+bbb.users.emojiStatus.happy = Mutlu
+bbb.users.emojiStatus.neutral = Nötr
+bbb.users.emojiStatus.sad = Üzgün
+bbb.users.emojiStatus.confused = Şaşırmış
+bbb.users.emojiStatus.away = Dışarıda
+bbb.users.emojiStatus.thumbsUp = Beğendim
+bbb.users.emojiStatus.thumbsDown = Beğenmedim
+bbb.users.emojiStatus.applause = Alkış
+bbb.users.emojiStatus.agree = Katılıyorum
+bbb.users.emojiStatus.disagree = Katılıyorum
+bbb.users.emojiStatus.none = Temizle
+bbb.users.emojiStatus.speakLouder = Daha sesli konuşabilir misiniz?
+bbb.users.emojiStatus.speakSofter = Daha düşük sesli konuşabilir misiniz?
+bbb.users.emojiStatus.speakFaster = Daha hızlı konuşabilir misiniz?
+bbb.users.emojiStatus.speakSlower = Daha yavaş konuşabilir misiniz?
+bbb.users.emojiStatus.beRightBack = Hemen döneceğim
bbb.presentation.title = Sunum
bbb.presentation.titleWithPres = Sunum: {0}
bbb.presentation.quickLink.label = Sunum Penceresi
bbb.presentation.fitToWidth.toolTip = Sunumu Genişliğe Sığdır
bbb.presentation.fitToPage.toolTip = Sunumu Sayfaya Sığdır
bbb.presentation.uploadPresBtn.toolTip = Sunum Yükle
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip = Sunumları İndir
+bbb.presentation.poll.response = Oylamayı yanıtla
bbb.presentation.backBtn.toolTip = Önceki slayt.
bbb.presentation.btnSlideNum.accessibilityName = Slayt {0} - {1}
bbb.presentation.btnSlideNum.toolTip = Bir slayt seç
@@ -255,7 +257,7 @@ bbb.presentation.uploadcomplete = Yükleme tamamlandı. Belgeyi dönüştürürk
bbb.presentation.uploaded = yüklendi.
bbb.presentation.document.supported = Yüklenen belge desteklenmektedir. Dönüştürmeye başlıyor...
bbb.presentation.document.converted = Ofis belgesi başarıyla dönüştürüldü.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
+bbb.presentation.error.document.convert.failed = Dosyayı PDF olarak kaydedip yeniden yüklemeyi deneyin.
bbb.presentation.error.document.convert.invalid = Lütfen bu belgeyi önce PDF'e çevirin.
bbb.presentation.error.io = IO Hatası: Lütfen yöneticiye başvurun.
bbb.presentation.error.security = Güvenlik Hatası: Lütfen yöneticiye başvurun.
@@ -283,46 +285,47 @@ bbb.fileupload.uploadBtn = Yükle
bbb.fileupload.uploadBtn.toolTip = Seçili dosyayı yükle
bbb.fileupload.deleteBtn.toolTip = Sunumu Sil
bbb.fileupload.showBtn = Göster
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry = Başka bir dosya deneyin
bbb.fileupload.showBtn.toolTip = Sunumu Göster
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip = Kapat
+bbb.fileupload.close.accessibilityName = Dosya Yükleme penceresini kapat
bbb.fileupload.genThumbText = Küçük resimler oluşturuluyor...
bbb.fileupload.progBarLbl = Aşama:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint = Herhangi bir Ofis ya da PDF dosyası yükleyebilirsiniz. En iyi sonuç için PDF yüklemenizi tavsiye ederiz.
+bbb.fileupload.letUserDownload = Sunumu indirilebilir yap
+bbb.fileupload.letUserDownload.tooltip = Diğer kullanıcıların sunumunuzu indirmesini istiyorsanız burayı seçin
+bbb.filedownload.title = Sunumları İndir
+bbb.filedownload.close.tooltip = Kapat
+bbb.filedownload.close.accessibilityName = Dosya İndirme penceresini kapat
+bbb.filedownload.fileLbl = İndirilecek Dosyayı Seçin
+bbb.filedownload.downloadBtn = İndir
+bbb.filedownload.downloadBtn.toolTip = Sunumu İndir
+bbb.filedownload.thisFileIsDownloadable = İndirilebilir dosya
bbb.chat.title = Sohbet
bbb.chat.quickLink.label = Sohbet Penceresi
bbb.chat.cmpColorPicker.toolTip = Metin Rengi
bbb.chat.input.accessibilityName = Sohbet Mesajı Düzenleme Alanı
bbb.chat.sendBtn.toolTip = Mesajı Gönder
bbb.chat.sendBtn.accessibilityName = Sohbet mesajını gönder
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip = Sohbeti kaydet
+bbb.chat.saveBtn.accessibilityName = Sohbeti metin dosyasına kaydet
+bbb.chat.saveBtn.label = Kaydet
+bbb.chat.save.complete = Sohbet başarıyla kaydedildi.
+bbb.chat.save.ioerror = Sohbet kaydedilemedi. Tekrar kaydetmeyi deneyin.
+bbb.chat.save.filename = genel-sohbet
+bbb.chat.copyBtn.toolTip = Sohbeti kopyala
+bbb.chat.copyBtn.accessibilityName = Sohbeti panoya kopyala
+bbb.chat.copyBtn.label = Kopyala
+bbb.chat.copy.complete = Sohbet panoya kopyalandı
+bbb.chat.clearBtn.toolTip = Genel Sohbeti Temizle
+bbb.chat.clearBtn.accessibilityName = Genel Sohbet geçmişini temizle
+bbb.chat.clearBtn.chatMessage = Genel sohbet geçmişi moderatör tarafından temizlendi
+bbb.chat.clearBtn.alert.title = Uyarı
+bbb.chat.clearBtn.alert.text = Genel Sohbet geçmişini temizliyorsunuz ve bu eylem geri alınamaz. Devam etmek istiyor musunuz?
bbb.chat.contextmenu.copyalltext = Tüm Metni Kopyala
bbb.chat.publicChatUsername = Tümü
bbb.chat.optionsTabName = Seçenekler
-bbb.chat.privateChatSelect = Özel yazışmak istediğiniz kişiyi seçin
+bbb.chat.privateChatSelect = Özel sohbet etmek istediğiniz kişiyi seçin
bbb.chat.private.userLeft = Kullanıcı çıkış yaptı.
bbb.chat.private.userJoined = Kullanıcı giriş yaptı.
bbb.chat.private.closeMessage = Bu sekmeyi {0} tuş kombinasyonunu kullanarak kapatabilirsiniz.
@@ -331,7 +334,7 @@ bbb.chat.usersList.accessibilityName = Özel sohbet başlatmak için kullanıcı
bbb.chat.chatOptions = Sohbet Seçenekleri
bbb.chat.fontSize = Sohbet Mesajı Yazı Boyutu
bbb.chat.cmbFontSize.toolTip = Chat Mesajı Font Büyüklüğü
-bbb.chat.messageList = Sohbet Mesajlar
+bbb.chat.messageList = Sohbet Mesajları
bbb.chat.minimizeBtn.accessibilityName = Sohbet Penceresini Küçült
bbb.chat.maximizeRestoreBtn.accessibilityName = Sohbet Penceresini Büyült
bbb.chat.closeBtn.accessibilityName = Sohbet Penceresini Kapat
@@ -346,14 +349,14 @@ bbb.publishVideo.startPublishBtn.labelText = Paylaşımı Başlat
bbb.publishVideo.startPublishBtn.toolTip = Kameranızı paylaşmaya başlayın
bbb.publishVideo.startPublishBtn.errorName = Web kamerası paylaşılamadı. Sebebi: {0}
bbb.webcamPermissions.chrome.title = Chrome Webcam İzinleri
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message = Chrome'un web kameranızı kullanabilmesi için İzin Ver tıklayın
bbb.videodock.title = Kameralar
bbb.videodock.quickLink.label = Kamera Penceresi
bbb.video.minimizeBtn.accessibilityName = Kamera Penceresini Küçült
bbb.video.maximizeRestoreBtn.accessibilityName = Kamera Penceresini Büyült
-bbb.video.controls.muteButton.toolTip = {0} sesli ya da sessiz yap
+bbb.video.controls.muteButton.toolTip = Sustur ya da konuştur {0}
bbb.video.controls.switchPresenter.toolTip = {0} sunucu yap
-bbb.video.controls.ejectUserBtn.toolTip = Toplantıdan {0} çıkart
+bbb.video.controls.ejectUserBtn.toolTip = {0} kullanıcısını görüşmeden çıkart
bbb.video.controls.privateChatBtn.toolTip = {0} ile sohbet et
bbb.video.publish.hint.noCamera = Kamera bulunamadı
bbb.video.publish.hint.cantOpenCamera = Kameranız açılamıyor
@@ -367,6 +370,7 @@ bbb.video.publish.closeBtn.accessName = Kamera ayarları iletişim kutusunu kapa
bbb.video.publish.closeBtn.label = Vazgeç
bbb.video.publish.titleBar = Kamera Penceresini Yayımla
bbb.video.streamClose.toolTip = Kapatılacak yayın akışı: {0}
+bbb.video.message.browserhttp = Sunucu bilgisayarın SSL güvenlik sertifikası olmadığından {0} web kamera paylaşımınızı engelliyor.
bbb.screensharePublish.title = Ekran Paylaşımı: Sunucu Önizlemesi
bbb.screensharePublish.pause.tooltip = Masaüstü paylaşımını durdur
bbb.screensharePublish.pause.label = Durdur
@@ -378,7 +382,7 @@ bbb.screensharePublish.closeBtn.accessibilityName = Paylaşmayı Durdur ve Ekran
bbb.screensharePublish.minimizeBtn.toolTip = Küçült
bbb.screensharePublish.minimizeBtn.accessibilityName = Ekran Paylaşımı Yayımlama Penceresini Küçült
bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Ekran Paylaşımı Yayımlama Penceresini Büyült
-bbb.screensharePublish.commonHelpText.text = Aşağıdaki adımlar sizi başlama ekranını paylaşmaya yönlendirecek (Java gereklidir).
+bbb.screensharePublish.commonHelpText.text = Ekran paylaşımını başlatmanız için aşağıdaki adımlar sizi yönlendirecektir (Java gereklidir).
bbb.screensharePublish.helpButton.toolTip = Yardım
bbb.screensharePublish.helpButton.accessibilityName = Yardım (yardım videolarını yeni sayfada açar)
bbb.screensharePublish.helpText.PCIE1 = 1. "Aç"ı seçin.
@@ -428,54 +432,58 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = Ekran paylaşımı ek
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = Gizli sekmede olabilirsiniz ya da özel tarayıcı kullanıyor olabilirsiniz. Eklenti ayarlarından eklentileri gizli sekmede/özel tarayıcıda kullanabilme ayarını yaptığınızdan emin olun.
bbb.screensharePublish.WebRTCExtensionInstallButton.label = Yüklemek için tıkla
bbb.screensharePublish.WebRTCUseJavaButton.label = Java Ekran Paylaşımını Kullan
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.WebRTCVideoLoading.label = Video yükleniyor... Lütfen bekleyin
+bbb.screensharePublish.sharingMessage= Bu sizin paylaşılan ekranınız
bbb.screenshareView.title = Ekran Paylaşımı
bbb.screenshareView.fitToWindow = Pencereye Sığdır
bbb.screenshareView.actualSize = Gerçek boyutta görüntüle
bbb.screenshareView.minimizeBtn.accessibilityName = Ekran Paylaşım Penceresini Küçült
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Ekran Paylaşım Penceresini Büyült
bbb.screenshareView.closeBtn.accessibilityName = Masaüstü Paylaşım İzleme Penceresini Kapat
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start = Sesi etkinleştir (mikrofon ya da yalnızca dinleme)
+bbb.toolbar.phone.toolTip.stop = Ses İptal
bbb.toolbar.phone.toolTip.mute = Konferansı dinlemeyi durdur
bbb.toolbar.phone.toolTip.unmute = Konferansı dinlemeye başla.
bbb.toolbar.phone.toolTip.nomic = Mikrofon bulunamadı
bbb.toolbar.deskshare.toolTip.start = Masaüstü Paylaşım Penceresini Aç
bbb.toolbar.deskshare.toolTip.stop = Ekran Paylaşımını Durdur
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip = Paylaşılan Notları Aç
bbb.toolbar.video.toolTip.start = Kameramı Paylaş
bbb.toolbar.video.toolTip.stop = Kameramı Paylaşmayı Durdur
-bbb.layout.addButton.toolTip = Oluşturulan sayfa düzenini listeye ekle
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Sayfa Düzenini Değiştir
-bbb.layout.loadButton.toolTip = Bir dosyadan sayfa düzeni yükle
-bbb.layout.saveButton.toolTip = Sayfa düzenini bir dosyaya kaydet
-bbb.layout.lockButton.toolTip = Sayfa düzenini kilitle
-bbb.layout.combo.prompt = Sayfa düzenini uygula
-bbb.layout.combo.custom = * Özel sayfa düzeni
-bbb.layout.combo.customName = Özel sayfa düzeni
+bbb.layout.addButton.label = Ekle
+bbb.layout.addButton.toolTip = Oluşturulan görünümü listeye ekle
+bbb.layout.overwriteLayoutName.title = Görünümü üzerine yaz
+bbb.layout.overwriteLayoutName.text = Bu isim kullanımda. Üzerine yazmak istiyor musunuz?
+bbb.layout.broadcastButton.toolTip = Mevcut görünümü tüm izleyicilere uygula
+bbb.layout.combo.toolTip = Görünümü Değiştir
+bbb.layout.loadButton.toolTip = Dosyadan görünüm yükle
+bbb.layout.saveButton.toolTip = Görünümü dosyaya kaydet
+bbb.layout.lockButton.toolTip = Görünümü kilitle
+bbb.layout.combo.prompt = Görünüm uygula
+bbb.layout.combo.custom = * Özel görünüm
+bbb.layout.combo.customName = Özel görünüm
bbb.layout.combo.remote = Uzaktan
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Sayfa düzeni başarıyla kaydedildi
-bbb.layout.load.complete = Sayfa düzeni başarıyla yüklendi
-bbb.layout.load.failed = Sayfa düzeni yüklenemedi
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.window.name = Görünüm adı
+bbb.layout.window.close.tooltip = Kapat
+bbb.layout.window.close.accessibilityName = Yeni görünüm ekleme penceresini kapat
+bbb.layout.save.complete = Görünümler başarıyla kaydedildi
+bbb.layout.save.ioerror = Görünümler kaydedilemedi. Tekrar kaydetmeyi deneyin.
+bbb.layout.load.complete = Görünümler başarıyla yüklendi
+bbb.layout.load.failed = Görünüm yüklenemedi
+bbb.layout.sync = Görünümünüz tüm katılımcılara gönderildi.
bbb.layout.name.defaultlayout = Varsayılan Görünüm
bbb.layout.name.closedcaption = Altyazı
-bbb.layout.name.videochat = Video Görünümü
+bbb.layout.name.videochat = Video Sohbet
bbb.layout.name.webcamsfocus = Web Kamerası Görünümü
bbb.layout.name.presentfocus = Sunum Görünümü
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers = Sunum + Kullanıcılar
bbb.layout.name.lectureassistant = Ders Asistanı Görünümü
bbb.layout.name.lecture = Ders Görünümü
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes = Paylaşılan Notlar
+bbb.layout.addCurrentToFileWindow.title = Mevcut Görünümü dosyaya kaydet
+bbb.layout.addCurrentToFileWindow.text = Mevcut görünümü dosyaya kaydetmek istiyor musunuz?
+bbb.layout.denyAddToFile.toolTip = Mevcut görünümü eklemeyi reddet
+bbb.layout.confirmAddToFile.toolTip = Mevcut görünümü eklemeyi onaylayın
bbb.highlighter.toolbar.pencil = Kalem
bbb.highlighter.toolbar.pencil.accessibilityName = Beyaz tahta imlecini kalem olarak değiştir
bbb.highlighter.toolbar.ellipse = Daire
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Renk Seç
bbb.highlighter.toolbar.color.accessibilityName = Beyaz tahta çizim işareti rengi
bbb.highlighter.toolbar.thickness = Çizgi Kalınlığını Değiştir
bbb.highlighter.toolbar.thickness.accessibilityName = Beyaz tahta çizim kalınlığı
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Çıkış
+bbb.highlighter.toolbar.multiuser = Çok-kullanıcılı Çizim
bbb.logout.button.label = TAMAM
bbb.logout.appshutdown = Sunucu uygulaması sonlandırıldı
bbb.logout.asyncerror = Eşzamansızlık Hatası oluştu
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Sunucuya olan bağlantı sonlandı.
bbb.logout.rejected = Sunucu olan bağlantı reddedildi.
bbb.logout.invalidapp = Red5 uygulaması mevcut değil
bbb.logout.unknown = Kullanıcı sunucuyla olan bağlantısını kaybetti.
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout = Moderatör sizin görüşmeye katılımınıza onay vermedi
bbb.logout.usercommand = Konferanstan ayrıldınız
bbb.logour.breakoutRoomClose = Tarayıcı penceresi kapatılacak.
-bbb.logout.ejectedFromMeeting = Moderatör sizi toplantıdan çıkardı.
+bbb.logout.ejectedFromMeeting = Görüşmeden çıkarıldınız
bbb.logout.refresh.message = Eğer bağlantınız beklenmedik bir şekilde koptuysa Tekrar Bağlan butonuna basarak yeniden bağlanabilirsiniz.
bbb.logout.refresh.label = Tekrar Bağlan
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint = BigBlueButton'ı nasıl daha iyi yapabiliriz?
+bbb.logout.feedback.label = BigBlueButton deneyiminizi bizimle paylaşın (zorunlu değil)
+bbb.settings.title = Ayarlar
+bbb.settings.ok = TAMAM
+bbb.settings.cancel = İptal
+bbb.settings.btn.toolTip = Ayarlar penceresini aç
bbb.logout.confirm.title = Çıkışı Onayla
bbb.logout.confirm.message = Çıkmak istediğinizden emin misiniz?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting = Evet ve görüşmeyi sonlandır
bbb.logout.confirm.yes = Evet
bbb.logout.confirm.no = Hayır
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title = Uyarı
+bbb.endSession.confirm.message = Oturumu kapatırsanız tüm katılımcıların bağlantısı kesilecektir. Devam etmek istiyor musunuz?
bbb.connection.failure=Bağlantı Sorunları Algılandı
bbb.connection.reconnecting=Yeniden bağlanılıyor
bbb.connection.reestablished=Bağlantı yeniden kuruldu
@@ -530,59 +539,60 @@ bbb.notes.title = Notlar
bbb.notes.cmpColorPicker.toolTip = Metin Rengi
bbb.notes.saveBtn = Kaydet
bbb.notes.saveBtn.toolTip = Notları Kaydet
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title = Paylaşılan notlar
+bbb.sharedNotes.quickLink.label = Paylaşılan Notlar Penceresi
+bbb.sharedNotes.createNoteWindow.label = Not ismi
+bbb.sharedNotes.createNoteWindow.close.tooltip = Kapat
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Yeni not oluştur penceresini kapat
+bbb.sharedNotes.typing.single = {0} yazıyor...
+bbb.sharedNotes.typing.double = {0} ve {1} yazıyor...
+bbb.sharedNotes.typing.multiple = Birçok kişi yazıyor...
+bbb.sharedNotes.save.toolTip = Notları dosyaya kaydet
+bbb.sharedNotes.save.complete = Notlar başarıyla kaydedildi.
+bbb.sharedNotes.save.ioerror = Notlar kaydedilmedi. Tekrar kaydetmeyi deneyin.
+bbb.sharedNotes.save.htmlLabel = Biçimlendirilmiş metin (.html)
+bbb.sharedNotes.save.txtLabel = Düz metin
+bbb.sharedNotes.new.label = Oluştur
+bbb.sharedNotes.new.toolTip = İlave not oluştur
+bbb.sharedNotes.limit.label = Notlar limitine ulaşıldı
+bbb.sharedNotes.clear.label = Bu notu temizle
+bbb.sharedNotes.undo.toolTip = Düzenlemeyi geri al
+bbb.sharedNotes.redo.toolTip = Düzenlemeyi geri al
+bbb.sharedNotes.toolbar.toolTip = Metin biçimlendirme araç çubuğu
+bbb.sharedNotes.settings.toolTip = Paylaşılan notlar ayarları
+bbb.sharedNotes.clearWarning.title = Paylaşılan notlar temizleniyor
+bbb.sharedNotes.clearWarning.message = Bu eylem tüm kullanıcılar için bu ekrandaki notları silecektir ve tekrar geri alma imkanı yoktur. Bu notları temizlemek istediğinize emin misiniz?
+bbb.sharedNotes.additionalNotes.closeWarning.title = Paylaşılan notlar kapatılıyor
+bbb.sharedNotes.additionalNotes.closeWarning.message = Bu eylem tüm kullanıcılar için bu ekrandaki notları silecektir ve tekrar geri alma imkanı yoktur. Bu notları kapatmak istediğinize emin misiniz?
+bbb.sharedNotes.messageLengthWarning.title = Karakter değiştirme limiti aşıldı
+bbb.sharedNotes.messageLengthWarning.text = Yaptığınız değişiklikler limitleri {0} aşıyor. Daha küçük değişiklikler yapmayı deneyin.
+bbb.sharedNotes.remaining.tooltip = Paylaşılan notlarda kalan boş alan miktarı
+bbb.sharedNotes.full.tooltip = Kapasite doldu (biraz metin silmeyi deneyin)
bbb.settings.deskshare.instructions = Masaüstü paylaşımınızın düzgün çalışıp çalışmadığını denetleyen iletilerde Kabul seçeneğini tıklayın
bbb.settings.deskshare.start = Masaüstü Paylaşımını Kontrol Et
bbb.settings.voice.volume = Mikrofon Hareketleri
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label = Java sürüm hatası
+bbb.settings.java.text = Java {0} sürümü yüklü, fakat BigBlueButton masaüstü paylaşımı özelliğini kullanabilmek için en az {1} sürümüne ihtiyacınız var. Aşağıdaki buton en son Java JRE sürümünü yükleyecektir.
+bbb.settings.java.command = Yeni sürüm Java yükleyin
bbb.settings.flash.label = Flash sürüm hatası
bbb.settings.flash.text = Bilgisayarınızda Flash {0} sürümü yüklü, fakat BigBlueButton’ı düzgün çalıştırmak için Flash {1} ve üzeri sürümüne ihtiyacınız var. Güncel Adobe Flash sürümünü yüklemek için düğmeye tıklayın.
bbb.settings.flash.command = Flash'ın yenisürümünü Yükle
bbb.settings.isight.label = iSight kamera hatası
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text = iSight web kameranızla ilgili sorun yaşıyorsanız bunun nedeni iSight web kameradan Flash video yakalama problemi olduğu bilinen OS X 10.6.5 olabilir.\nBu durumu düzeltmek için aşağıdaki linkten Flash Player yeni sürümünü yükleyin ya da Mac cihazınızı yeni versiyona güncelleyin.
bbb.settings.isight.command = Flash 10.2 RC2 Yükle
bbb.settings.warning.label = Uyarı
bbb.settings.warning.close = Bu Uyarıyı kapat
bbb.settings.noissues = Çözümlenmemiş soruna rastlanmadı.
bbb.settings.instructions = Flash'ın kamera kullanım izni isteğini onaylayın. Eğer kendinizi görebiliyor ve duyabiliyorsanız tarayıcınız düzgün bir şekilde ayarlanmıştır. Diğer potansiyel sorunlar aşağıda sıralanmıştır. Olası çözümleri bulabilmek için her birine tıklayın.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title = Ağ izleme
+bbb.bwmonitor.upload = Yükle
+bbb.bwmonitor.upload.short = Yukarı
+bbb.bwmonitor.download = İndir
+bbb.bwmonitor.download.short = Aşağı
+bbb.bwmonitor.total = Toplam
+bbb.bwmonitor.current = Mevcut
+bbb.bwmonitor.available = Müsait
+bbb.bwmonitor.latency = Gecikme
ltbcustom.bbb.highlighter.toolbar.triangle = Üçgen
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Beyaz tahta imlecini üçgen olarak değiştir
ltbcustom.bbb.highlighter.toolbar.line = Düz Çizgi
@@ -592,8 +602,8 @@ ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Beyaz tahta imlecini
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Metin rengi
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Yazı büyüklüğü
bbb.caption.window.title = Altyazı
-bbb.caption.quickLink.label = Kapalı Altyazı Penceresi
-bbb.caption.window.titleBar = Kapalı Altyazı Penceresi Başlık Çubuğu
+bbb.caption.quickLink.label = Altyazı Penceresi
+bbb.caption.window.titleBar = Altyazı Penceresi Başlık Çubuğu
bbb.caption.window.minimizeBtn.accessibilityName = Altyazı Penceresini Küçült
bbb.caption.window.maximizeRestoreBtn.accessibilityName = Altyazı Penceresini Büyüt
bbb.caption.transcript.noowner = Hiçbiri
@@ -627,7 +637,7 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Son mesaja eriştiniz.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Okuduğunuz en son mesaja yönlendirildiniz.
bbb.accessibility.chat.chatwindow.input = Sohbet veri girişi
bbb.accessibility.chat.chatwindow.audibleChatNotification = Sesli Sohbet Bildirimi
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions = Genel Sohbet Seçenekleri
bbb.accessibility.chat.initialDescription = Sohbet mesajları arasında gezinmek için lütfen ok tuşlarını kullanın.
bbb.accessibility.notes.notesview.input = Not girişi
@@ -642,7 +652,7 @@ bbb.shortcuthelp.dropdown.general = Genel Kısayollar
bbb.shortcuthelp.dropdown.presentation = Sunum kısayolları
bbb.shortcuthelp.dropdown.chat = Sohbet kısayolları
bbb.shortcuthelp.dropdown.users = Kullanıcı kısayolları
-bbb.shortcuthelp.dropdown.caption = Kapalı Altyazı Kısayolları
+bbb.shortcuthelp.dropdown.caption = Altyazı kısayolları
bbb.shortcuthelp.browserWarning.text = kısayolların tam listesi sadece Internet Explorer'da desteklenir.
bbb.shortcuthelp.headers.shortcut = Kısayol
bbb.shortcuthelp.headers.function = İşlev
@@ -655,9 +665,9 @@ bbb.shortcutkey.general.maximize.function = Mevcut pencereyi büyült
bbb.shortcutkey.flash.exit = 79
bbb.shortcutkey.flash.exit.function = Flash Penceresinden Uzaklaştır
bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mikrofonunuzu sesli ya da sessiz yapın
+bbb.shortcutkey.users.muteme.function = Mikrofonunuzu Susturun ya da Açın
bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Sohbet girdi alanına odakla
+bbb.shortcutkey.chat.chatinput.function = Sohbet girdi alanını odakla
bbb.shortcutkey.present.focusslide = 67
bbb.shortcutkey.present.focusslide.function = Sunu slaydına odakla
bbb.shortcutkey.whiteboard.undo = 90
@@ -672,7 +682,7 @@ bbb.shortcutkey.focus.presentation.function = Odaklamayı Sunum penceresine kayd
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Odaklamayı Sohbet penceresine kaydır
bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Odağı Kapalı LAtyazı bölümüne taşı
+bbb.shortcutkey.focus.caption.function = Odaklanmayı Altyazı penceresine kaydır
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Masaüstü paylaşım penceresini aç
@@ -682,7 +692,7 @@ bbb.shortcutkey.share.webcam.function = Kamera paylaşım penceresini aç
bbb.shortcutkey.shortcutWindow = 72
bbb.shortcutkey.shortcutWindow.function = Kısayol Tuşları penceresini aç/odakla
bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Bu toplantıdan çık
+bbb.shortcutkey.logout.function = Bu görüşmeden ayrıl
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Elini kaldır
@@ -702,13 +712,13 @@ bbb.shortcutkey.present.fitPage.function = Slaytları sayfaya sığdır
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Seçili kişiyi sunucu yap
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Seçili kişiyi toplantıdan çıkart
+bbb.shortcutkey.users.kick.function = Seçili kişiyi görüşmeden çıkar
bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Seçili kişiyi sesli ya da sessiz yap
+bbb.shortcutkey.users.mute.function = Seçili kişiyi susturun ya da konuşturun
bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Tüm kullanıcıları sesli ya da sessiz yap
+bbb.shortcutkey.users.muteall.function = Tüm kullanıcıları susturun ya da konuşturun
bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Sunucu hariç tümünü sessiz yap
+bbb.shortcutkey.users.muteAllButPres.function = Sunucu hariç herkesi sustur
bbb.shortcutkey.users.breakoutRooms = 75
bbb.shortcutkey.users.breakoutRooms.function = Özel odalar penceresi
bbb.shortcutkey.users.focusBreakoutRooms = 82
@@ -721,15 +731,15 @@ bbb.shortcutkey.users.joinBreakoutRoom.function = Seçili özel odaya katıl
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Sohbet sekmelerine odakla
bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = sohbet mesaj listesine odakla
+bbb.shortcutkey.chat.focusBox.function = Sohbet mesaj listesini odakla
bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Yazı rengi seçimine odaklan
+bbb.shortcutkey.chat.changeColour.function = Yazı rengi seçimini odakla
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Sohbet mesajı gönder
bbb.shortcutkey.chat.closePrivate = 69
bbb.shortcutkey.chat.closePrivate.function = Özel sohbet sekmesini kapat
bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = Mesaja gitmek için sohbet kutusuna odaklamanız gerekir.
+bbb.shortcutkey.chat.explanation.function = Mesajlar arasında gezinmek için sohbet kutusunu odaklamanız gerekir.
bbb.shortcutkey.chat.chatbox.advance = 40
bbb.shortcutkey.chat.chatbox.advance.function = Sonraki mesaja git
@@ -749,13 +759,14 @@ bbb.shortcutkey.chat.chatbox.debug.function = Geçici hata ayıklama kısayolu
bbb.shortcutkey.caption.takeOwnership = 79
bbb.shortcutkey.caption.takeOwnership.function = Seçili dilin sahipliğini al
-bbb.polling.startButton.tooltip = Bir anket oluştur
-bbb.polling.startButton.label = Anketi Başlat
+bbb.polling.startButton.tooltip = Bir oylama oluştur
+bbb.polling.startButton.label = Oylama Başlat
bbb.polling.publishButton.label = Yayımla
bbb.polling.closeButton.label = Kapat
-bbb.polling.customPollOption.label = Özel Anket
-bbb.polling.pollModal.title = Canlı Anket Sonuçları
-bbb.polling.customChoices.title = Anket Seçeneklerini Girin
+bbb.polling.customPollOption.label = Özel Oylama
+bbb.polling.pollModal.title = Canlı Oylama Sonuçları
+bbb.polling.pollModal.hint = Öğrencilerin oylamaya katılabilmeleri için bu pencereyi açık bırakın. Yayınla ya da Kapat tıklarsanız oylama sonlanacaktır.
+bbb.polling.customChoices.title = Oylama Seçeneklerini Girin
bbb.polling.respondersLabel.novotes = Cevaplar bekleniyor
bbb.polling.respondersLabel.text = {0} Kullanıcı Cevapladı
bbb.polling.respondersLabel.finished = Yapıldı
@@ -770,7 +781,7 @@ bbb.polling.answer.D = D
bbb.polling.answer.E = E
bbb.polling.answer.F = F
bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Anket Sonuçları
+bbb.polling.results.accessible.header = Oylama Sonuçları
bbb.polling.results.accessible.answer = {0} seçeneği için {1} oy kullanıldı.
bbb.publishVideo.startPublishBtn.labelText = Paylaşımı Başlat
@@ -795,19 +806,21 @@ bbb.users.settings.breakoutRooms = Özel Odalar ...
bbb.users.settings.sendBreakoutRoomsInvitations = Özel Oda Davetiyeleri Gönder ...
bbb.users.settings.unlockAll = Tüm izleyicilerin kilidini aç
bbb.users.settings.roomIsLocked = Varsayılan kilitle
-bbb.users.settings.roomIsMuted = Varsayılan Sessiz
+bbb.users.settings.roomIsMuted = Varsayılan olarak Susturulmuş
bbb.lockSettings.save = Uygula
bbb.lockSettings.save.tooltip = Kilit Ayarlarını Uygula
bbb.lockSettings.cancel = Vazgeç
bbb.lockSettings.cancel.toolTip = Bu pencereyi kaydetmeden kapat
-bbb.lockSettings.moderatorLocking = Yönetici kitliyor
+bbb.lockSettings.hint = Bu seçenekler, özel sohbete katılım engellemesi gibi, izleyicilere ait bazı özellikleri kısıtlamanızı sağlar. (Bu kısıtlamalar moderatörlere uygulanmaz.)
+bbb.lockSettings.moderatorLocking = Moderatör kilidi
bbb.lockSettings.privateChat = Özel Sohbet
bbb.lockSettings.publicChat = Genel Sohbet
bbb.lockSettings.webcam = Kamera
+bbb.lockSettings.webcamsOnlyForModerator = Diğer izleyicilerin kameralarını gizle
bbb.lockSettings.microphone = Mikrofon
-bbb.lockSettings.layout = Sayfa Düzeni
+bbb.lockSettings.layout = Görünüm
bbb.lockSettings.title=Izleyicileri Kilitle
bbb.lockSettings.feature=Özellik
bbb.lockSettings.locked=Kilitlendi
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=Katılım Kilitli
bbb.users.breakout.breakoutRooms = Özel Odalar
bbb.users.breakout.updateBreakoutRooms = Özel odaları güncelle
+bbb.users.breakout.timerForRoom.toolTip = Bu özel oda için kalan süre
bbb.users.breakout.timer.toolTip = Özel odalar için kalan zaman
bbb.users.breakout.calculatingRemainingTime = Kalan zaman hesaplanıyor...
bbb.users.breakout.closing = Kapanış
+bbb.users.breakout.closewarning.text = Özel odalar bir dakika içinde kapanıyor.
bbb.users.breakout.rooms = Odalar
bbb.users.breakout.roomsCombo.accessibilityName = Oluşturulacak oda sayısı
bbb.users.breakout.room = Oda
-bbb.users.breakout.randomAssign = Raslantısal Atanan Kullanıcılar
bbb.users.breakout.timeLimit = Zaman Kısıtı
bbb.users.breakout.durationStepper.accessibilityName = Dakikalar içinde zaman kısıtlaması
bbb.users.breakout.minutes = Dakika
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = Davet Et
bbb.users.breakout.close = Kapat
bbb.users.breakout.closeAllRooms = Tüm Özel Odaları Kapat
bbb.users.breakout.insufficientUsers = Yetersiz kullanıcı. Bir özel odaya en az bir kullanıcı yerleştirmelisiniz.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm = Bir Özel Odaya katıl
+bbb.users.breakout.invited = Özel Oda katılım daveti aldınız
+bbb.users.breakout.accept = Kabul ettiğinizde sesli ve görüntülü görüşmeden otomatik olarak ayrılacaksınız.
+bbb.users.breakout.joinSession = Oturuma Katıl
+bbb.users.breakout.joinSession.accessibilityName = Özel Oda Oturumuna Katılın
+bbb.users.breakout.joinSession.close.tooltip = Kapat
+bbb.users.breakout.joinSession.close.accessibilityName = Özel Oda Katılım Penceresini Kapat
+bbb.users.breakout.youareinroom = {0} Özel Odasındasınız
bbb.users.roomsGrid.room = Oda
bbb.users.roomsGrid.users = Kullanıcılar
bbb.users.roomsGrid.action = Eylem
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = Sesi Aktar
bbb.users.roomsGrid.join = Katıl
bbb.users.roomsGrid.noUsers = Bu odada kullanıcı yok
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=Varsayılan dil
+
+bbb.alert.cancel = Vazgeç
+bbb.alert.ok = TAMAM
+bbb.alert.no = Hayır
+bbb.alert.yes = Evet
diff --git a/bigbluebutton-client/locale/uk_UA/bbbResources.properties b/bigbluebutton-client/locale/uk_UA/bbbResources.properties
index 7d41f5196166..a8f3926c4d4b 100644
--- a/bigbluebutton-client/locale/uk_UA/bbbResources.properties
+++ b/bigbluebutton-client/locale/uk_UA/bbbResources.properties
@@ -9,17 +9,17 @@ bbb.mainshell.invalidAuthToken = Невірний ключ аутентифік
bbb.mainshell.resetLayoutBtn.toolTip = Скинути розташування вікон
bbb.mainshell.notification.tunnelling = Налаштування
bbb.mainshell.notification.webrtc = Трансляція звуку за допомогою WebRTC
-bbb.mainshell.fullscreenBtn.toolTip =
-bbb.mainshell.quote.sentence.1 =
-bbb.mainshell.quote.attribution.1 =
-bbb.mainshell.quote.sentence.2 =
-bbb.mainshell.quote.attribution.2 =
-bbb.mainshell.quote.sentence.3 =
-bbb.mainshell.quote.attribution.3 =
-bbb.mainshell.quote.sentence.4 =
-bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.fullscreenBtn.toolTip = Переключити на повний екран
+bbb.mainshell.quote.sentence.1 = Немає секретів для успіху. Це результат підготовки, напруженої роботи та навчання через невдачі.
+bbb.mainshell.quote.attribution.1 = Колін Павелл
+bbb.mainshell.quote.sentence.2 = Скажи мені, і я забуду. Навчіть мене, і я пам'ятаю. Залучіть мене, і я навчусь.
+bbb.mainshell.quote.attribution.2 = Бенджамін Франклін
+bbb.mainshell.quote.sentence.3 = Я зрозумів цінність важкої праці, важко працюючи.
+bbb.mainshell.quote.attribution.3 = Маргарет Мід
+bbb.mainshell.quote.sentence.4 = Розвивайте пристрасть до навчання. Якщо ви це зробите то ніколи не перестанете розвиватись.
+bbb.mainshell.quote.attribution.4 = Ентоні Д. Анджело
bbb.mainshell.quote.sentence.5 = Дослідження це створення нових знань
-bbb.mainshell.quote.attribution.5 =
+bbb.mainshell.quote.attribution.5 = Ніл Армстронг
bbb.oldlocalewindow.reminder1 = Можливо, у вас застаріла версія перекладу BigBlueButton.
bbb.oldlocalewindow.reminder2 = Будь ласка, очистіть кеш браузера і спробуйте ще раз.
bbb.oldlocalewindow.windowTitle = Увага: застаріла версія перекладу
@@ -66,6 +66,7 @@ bbb.micSettings.webrtc.waitingforice = З'єднання
bbb.micSettings.webrtc.transferring = Іде передача
bbb.micSettings.webrtc.endingecho = Приєднання до аудіо-конференції
bbb.micSettings.webrtc.endedecho = Ехо тест завершений.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Дозволи мікрофона Firefox
bbb.micPermissions.firefox.message = Натисніть клавішу Дозволити для того щоб Firefox отримав дозвіл використовувати ваш мікрофон
bbb.micPermissions.chrome.title = Дозволи мікрофона Chrome
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Ехо-тест з викор
bbb.webrtcWarning.connection.dropped = WebRTC з'єднання втрачено
bbb.webrtcWarning.connection.reconnecting = Спроба перепідключення
bbb.webrtcWarning.connection.reestablished = WebRTC підключення відновлено
-bbb.inactivityWarning.title =
-bbb.inactivityWarning.message =
+bbb.inactivityWarning.title = Дії не виявлено
+bbb.inactivityWarning.message = Здається зустріч неактивна. Іде автоматичне завершення...
bbb.shuttingDown.message = Ця зустріч була заваршене через неактивність
bbb.inactivityWarning.cancel = Відмінити
bbb.mainToolbar.helpBtn = Допомога
bbb.mainToolbar.logoutBtn = Вихід
bbb.mainToolbar.logoutBtn.toolTip = Вийти
-bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.idleLogoutBtn = {0} | Скидання таймера виходу
bbb.mainToolbar.langSelector = Вибрати мову
bbb.mainToolbar.settingsBtn = Настройки
bbb.mainToolbar.settingsBtn.toolTip = Відкрити Настройки
@@ -116,12 +117,12 @@ bbb.mainToolbar.recordBtn.toolTip.wontRecord = Ця сесія не може б
bbb.mainToolbar.recordBtn.confirm.title = Підтвердіть запис
bbb.mainToolbar.recordBtn.confirm.message.start = Ви впевнені, що бажаєте почати запис сесії?
bbb.mainToolbar.recordBtn.confirm.message.stop = Ви впевнені що бажаєте зупинити запис сесії?
-bbb.mainToolbar.recordBtn..notification.title = Попередження про запис
-bbb.mainToolbar.recordBtn..notification.message1 = Ви можете записати цю конференцію.
-bbb.mainToolbar.recordBtn..notification.message2 = Щоб почати/закінчити запис, ви повинні натиснути на кнопку Почати/Зупинити запис на верхній панелі.
+bbb.mainToolbar.recordBtn.notification.title = Попередження про запис
+bbb.mainToolbar.recordBtn.notification.message1 = Ви можете записати цю конференцію.
+bbb.mainToolbar.recordBtn.notification.message2 = Щоб почати/закінчити запис, ви повинні натиснути на кнопку Почати/Зупинити запис на верхній панелі.
bbb.mainToolbar.recordingLabel.recording = (Ведеться запис)
bbb.mainToolbar.recordingLabel.notRecording = Запис не ведеться
-bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.message = У вас гостьовий статус, зачекайте підтвердження від модератора
bbb.waitWindow.waitMessage.title = Очікування
bbb.guests.title = Гості
bbb.guests.message.singular = {0} користувач бажає приєднатись до зустрічі
@@ -132,7 +133,7 @@ bbb.guests.denyBtn.toolTip = Заборонити
bbb.guests.denyEveryoneBtn.text = Заборонити усім
bbb.guests.rememberAction.text = Запам'ятати вибір
bbb.guests.alwaysAccept = Завжди приймати
-bbb.guests.alwaysDeny =
+bbb.guests.alwaysDeny = Завжи забороняти
bbb.guests.askModerator = Запитати модератора
bbb.guests.Management = Управління гостями
bbb.clientstatus.title = Повідомлення про конфігурацію
@@ -152,8 +153,8 @@ bbb.clientstatus.webrtc.weakStatus = Можливо у вас проблема
bbb.clientstatus.webrtc.message = Рекомендуємо використовувати Firefox або Chrome для поліпшення якості аудіо.
bbb.clientstatus.java.title = Java
bbb.clientstatus.java.notdetected = Не виявленна версія Java
-bbb.clientstatus.java.notinstalled =
-bbb.clientstatus.java.oldversion =
+bbb.clientstatus.java.notinstalled = У вас не встановлена Java, натиснітьТУТ щоб втановити останню версію Java
+bbb.clientstatus.java.oldversion = У вас стара версія Java, натисніть ТУТ для встановлення останньої версії Java.
bbb.window.minimizeBtn.toolTip = Згорнути
bbb.window.maximizeRestoreBtn.toolTip = Розгорнути
bbb.window.closeBtn.toolTip = Закрити
@@ -188,15 +189,15 @@ bbb.users.usersGrid.statusItemRenderer = Статус
bbb.users.usersGrid.statusItemRenderer.changePresenter = Натисніть, щоб зробити ведучим
bbb.users.usersGrid.statusItemRenderer.presenter = Ведучий
bbb.users.usersGrid.statusItemRenderer.moderator = Модератор
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Лише голос
bbb.users.usersGrid.statusItemRenderer.raiseHand = Піднята рука
bbb.users.usersGrid.statusItemRenderer.applause = Аплодисменти
bbb.users.usersGrid.statusItemRenderer.thumbsUp = Пальці вверх
-bbb.users.usersGrid.statusItemRenderer.thumbsDown =
-bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown = Пальці вгору
+bbb.users.usersGrid.statusItemRenderer.speakLouder = Говоріть голосніше
bbb.users.usersGrid.statusItemRenderer.speakSofter = Говоріть м'якше
bbb.users.usersGrid.statusItemRenderer.speakFaster = Говоріть швидше
-bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.speakSlower = Говоріть повільніше
bbb.users.usersGrid.statusItemRenderer.away = Не на місці
bbb.users.usersGrid.statusItemRenderer.confused = Здивований
bbb.users.usersGrid.statusItemRenderer.neutral = Нейтральний
@@ -214,13 +215,13 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Увімкнути мікро
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Вимкнути мікрофон {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Заблокувати {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Розблокувати {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Виключити {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Веб-камера увімкнена
bbb.users.usersGrid.mediaItemRenderer.micOff = Вимкнути мікрофон
bbb.users.usersGrid.mediaItemRenderer.micOn = Увімкнути мікрофон
bbb.users.usersGrid.mediaItemRenderer.noAudio = Не у аудіоконференції
-bbb.users.usersGrid.mediaItemRenderer.promoteUser =
-bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser = Рекламувати {0} модератору
+bbb.users.usersGrid.mediaItemRenderer.demoteUser = Знизити {0} для глядача
bbb.users.emojiStatus.clear = Очистити
bbb.users.emojiStatus.raiseHand = Підняти руку
bbb.users.emojiStatus.happy = Веселий
@@ -232,12 +233,12 @@ bbb.users.emojiStatus.thumbsUp = Палець вверех
bbb.users.emojiStatus.thumbsDown = Палець вниз
bbb.users.emojiStatus.applause = Аплодисменти
bbb.users.emojiStatus.agree = Я погоджуюсь
-bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.disagree = Я не погоджуюсь
bbb.users.emojiStatus.none = Очистити
-bbb.users.emojiStatus.speakLouder =
-bbb.users.emojiStatus.speakSofter =
-bbb.users.emojiStatus.speakFaster =
-bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.speakLouder = Чи не могли б ви говорити голосніше
+bbb.users.emojiStatus.speakSofter = Не могли б ви говорити м'якше?
+bbb.users.emojiStatus.speakFaster = Чи не могли б ви говорити швидше?
+bbb.users.emojiStatus.speakSlower = Чи не могли б ви говорити повільніше
bbb.users.emojiStatus.beRightBack = Скоро повернусь
bbb.presentation.title = Презентація
bbb.presentation.titleWithPres = Презентація: {0}
@@ -246,7 +247,7 @@ bbb.presentation.fitToWidth.toolTip = Підігнати під ширину в
bbb.presentation.fitToPage.toolTip = Підігнати під розмір вікна
bbb.presentation.uploadPresBtn.toolTip = Завантажити презентацію
bbb.presentation.downloadPresBtn.toolTip = Завантажити презентації
-bbb.presentation.poll.response =
+bbb.presentation.poll.response = Відповісти на запит
bbb.presentation.backBtn.toolTip = Попередній слайд
bbb.presentation.btnSlideNum.accessibilityName = Слайд {0} з {1}
bbb.presentation.btnSlideNum.toolTip = Вибір слайду
@@ -287,19 +288,19 @@ bbb.fileupload.showBtn = Показати
bbb.fileupload.retry = Спробуйте інший файл
bbb.fileupload.showBtn.toolTip = Показати презентацію
bbb.fileupload.close.tooltip = Закрити
-bbb.fileupload.close.accessibilityName =
+bbb.fileupload.close.accessibilityName = Закрити вікно скачування файлу
bbb.fileupload.genThumbText = Створення мініатюр..
bbb.fileupload.progBarLbl = Завантаження:
-bbb.fileupload.fileFormatHint =
+bbb.fileupload.fileFormatHint = Ви можете завантажити будь-який документ Office або Portable Document Format (PDF). Для найкращого результату радимо завантажити PDF-файл.
bbb.fileupload.letUserDownload = Увімкнути завантаження презентації
bbb.fileupload.letUserDownload.tooltip = Поставте позначку якщо бажаєте щоб користувачі могли завантажувати презентацію
bbb.filedownload.title = Завантажити презентації
bbb.filedownload.close.tooltip = Закрити
-bbb.filedownload.close.accessibilityName =
+bbb.filedownload.close.accessibilityName = Закрити вікно завантаження файлу
bbb.filedownload.fileLbl = Оберіть файл для завантаження:
bbb.filedownload.downloadBtn = Заванитажити
bbb.filedownload.downloadBtn.toolTip = Завантажити презентацію
-bbb.filedownload.thisFileIsDownloadable =
+bbb.filedownload.thisFileIsDownloadable = Файл завантажується
bbb.chat.title = Чат
bbb.chat.quickLink.label = Вікно чату
bbb.chat.cmpColorPicker.toolTip = Колір тексту
@@ -313,14 +314,14 @@ bbb.chat.save.complete = Чат успішно збережений
bbb.chat.save.ioerror = Не може бути збережено. Спробуйте ще раз
bbb.chat.save.filename = Публічний чат
bbb.chat.copyBtn.toolTip = Зкопіювати чат
-bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.accessibilityName = Скопіювати чат до буферу
bbb.chat.copyBtn.label = Копіювати
-bbb.chat.copy.complete =
+bbb.chat.copy.complete = Чат скопійовано в буфер обміну
bbb.chat.clearBtn.toolTip = Створити публічний чат
bbb.chat.clearBtn.accessibilityName = Очистити історію публічного чату
bbb.chat.clearBtn.chatMessage = Історія публічого чату була очищена модератором
bbb.chat.clearBtn.alert.title = Попередження
-bbb.chat.clearBtn.alert.text =
+bbb.chat.clearBtn.alert.text = Ви очищуєте публічний чат і цю дію неможливо буде відмінити. Всеодно продовжити?
bbb.chat.contextmenu.copyalltext = Копіювати весь текст
bbb.chat.publicChatUsername = Публічний
bbb.chat.optionsTabName = Опції
@@ -369,7 +370,7 @@ bbb.video.publish.closeBtn.accessName = Закрити вікно налашту
bbb.video.publish.closeBtn.label = Скасувати
bbb.video.publish.titleBar = Вікно увімкнення веб-камери
bbb.video.streamClose.toolTip = Закрити трансляцію для: {0}
-bbb.video.message.browserhttp =
+bbb.video.message.browserhttp = На цьому сервері не налаштований SSL. Як результат, {0} вимикає вашу веб камеру.
bbb.screensharePublish.title = Демонстрація екрану: передперегляд в режимі ведучого
bbb.screensharePublish.pause.tooltip = Зупинити показ екрану
bbb.screensharePublish.pause.label = Пауза
@@ -431,8 +432,8 @@ bbb.screensharePublish.WebRTCExtensionFailFallback.label = Неможливо в
bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = Здається, ви у режимі інкогніто або використовуєте приватний режим перегляду. Перевірте в налаштуваннях розширення, що ви дозволяєте розширенню працювати в інкогніто/приватному режимі.
bbb.screensharePublish.WebRTCExtensionInstallButton.label = Натисніть тут, щоб встановити
bbb.screensharePublish.WebRTCUseJavaButton.label = Демонструвати екран використовуючи Java
-bbb.screensharePublish.WebRTCVideoLoading.label =
-bbb.screensharePublish.sharingMessage=
+bbb.screensharePublish.WebRTCVideoLoading.label = Відео завантажується... Будь-ласка зачекайте
+bbb.screensharePublish.sharingMessage= Поширення вашого екрану
bbb.screenshareView.title = Демонстрація екрана
bbb.screenshareView.fitToWindow = Підлаштувати під розміри вікна
bbb.screenshareView.actualSize = Показати фактичний розмір
@@ -451,7 +452,7 @@ bbb.toolbar.video.toolTip.start = Увімкнути трансляцію ваш
bbb.toolbar.video.toolTip.stop = Зупинити трансляцію вашої веб-камери
bbb.layout.addButton.label = Додати
bbb.layout.addButton.toolTip = Додати в список схему користувача
-bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.title = Перезаписати макет
bbb.layout.overwriteLayoutName.text = Це ім'я вже використовується. Бажаєте перезаписати?
bbb.layout.broadcastButton.toolTip = Застосувати поточне розташуванння для всіх користувачів
bbb.layout.combo.toolTip = Змінити схему вікон
@@ -462,14 +463,14 @@ bbb.layout.combo.prompt = Застосувати схему
bbb.layout.combo.custom = * Схема користувача
bbb.layout.combo.customName = Схема користувача
bbb.layout.combo.remote = Віддалений
-bbb.layout.window.name =
+bbb.layout.window.name = Назва макету
bbb.layout.window.close.tooltip = Закрити
-bbb.layout.window.close.accessibilityName =
+bbb.layout.window.close.accessibilityName = Закрити вікно додавання нового макету
bbb.layout.save.complete = Схеми успішно збережені
-bbb.layout.save.ioerror =
+bbb.layout.save.ioerror = Макети не були збережені. Спробуйте знову.
bbb.layout.load.complete = Схеми успішно завантажені
bbb.layout.load.failed = Не вдалось завантажити макети
-bbb.layout.sync =
+bbb.layout.sync = Ваш макет був надісланий усім користувачам
bbb.layout.name.defaultlayout = Розташування вікон за замовчуванням
bbb.layout.name.closedcaption = Субтитри
bbb.layout.name.videochat = Відеочат
@@ -479,10 +480,10 @@ bbb.layout.name.presentandusers = Презентація + Користувач
bbb.layout.name.lectureassistant = Помічник ведучого
bbb.layout.name.lecture = Лекція
bbb.layout.name.sharednotes = Спільні нотатки
-bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.title = Додати поточний макет до файлу
bbb.layout.addCurrentToFileWindow.text = Чи бажаєте ви зберегти поточне положення файлу?
-bbb.layout.denyAddToFile.toolTip =
-bbb.layout.confirmAddToFile.toolTip =
+bbb.layout.denyAddToFile.toolTip = Заборонити додавання поточного макету
+bbb.layout.confirmAddToFile.toolTip = Підтвердити додавання поточного макету
bbb.highlighter.toolbar.pencil = Олівець
bbb.highlighter.toolbar.pencil.accessibilityName = Перемкнути курсор на олівець
bbb.highlighter.toolbar.ellipse = Коло
@@ -499,8 +500,7 @@ bbb.highlighter.toolbar.color = Вибрати колір
bbb.highlighter.toolbar.color.accessibilityName = Колір маркеру
bbb.highlighter.toolbar.thickness = Вибрати товщину ліній
bbb.highlighter.toolbar.thickness.accessibilityName = Товщина малювання
-bbb.highlighter.toolbar.multiuser =
-bbb.logout.title = Вийшли
+bbb.highlighter.toolbar.multiuser = Багатокористувацький малюнок
bbb.logout.button.label = ОК
bbb.logout.appshutdown = Серверний додаток вимкнувся
bbb.logout.asyncerror = Помилка асинхронності
@@ -512,9 +512,11 @@ bbb.logout.unknown = Ваш клієнт втратив зв'язок з сер
bbb.logout.guestkickedout = Модератор не дозволив вам приєднатись до зустрічі
bbb.logout.usercommand = Ви вийшли із конференції
bbb.logour.breakoutRoomClose = Вікно вашого браузеру буде закрите
-bbb.logout.ejectedFromMeeting = Модератор виключив вас із зустрічі.
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Якщо цей вихід був несподіваним натисніть на кнопку нижче, щоб відновити підключення.
bbb.logout.refresh.label = Повторне підключення
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
bbb.settings.title = Налаштування
bbb.settings.ok = ОК
bbb.settings.cancel = Відмінити
@@ -541,42 +543,42 @@ bbb.sharedNotes.title = Спільні нотатки
bbb.sharedNotes.quickLink.label = Вікно спільних нотаток
bbb.sharedNotes.createNoteWindow.label = Назва нотатки
bbb.sharedNotes.createNoteWindow.close.tooltip = Закрити
-bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName = Закрити вікно Створити нове вікно
bbb.sharedNotes.typing.single = {0} пише...
-bbb.sharedNotes.typing.double =
-bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.typing.double = {0} і {1} пишуть...
+bbb.sharedNotes.typing.multiple = Декілька людей пишуть...
bbb.sharedNotes.save.toolTip = Зберегти нотатки до файлу
bbb.sharedNotes.save.complete = Нотатки були успішно збережені
bbb.sharedNotes.save.ioerror = Нотатки не були збережені. Спробуйте ще раз
bbb.sharedNotes.save.htmlLabel = Форматований текст (.html)
-bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.save.txtLabel = Звичайний текст (.txt)
bbb.sharedNotes.new.label = Створити
bbb.sharedNotes.new.toolTip = Створити додаткову нотатку
bbb.sharedNotes.limit.label = Досянути максимальна кількість нотаток
bbb.sharedNotes.clear.label = Очистити цю нотатку
bbb.sharedNotes.undo.toolTip = Відмінити модифікацію
-bbb.sharedNotes.redo.toolTip =
-bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.redo.toolTip = Повторити модифікацію
+bbb.sharedNotes.toolbar.toolTip = Інструмент для форматування тексту
bbb.sharedNotes.settings.toolTip = Налаштування спільних нотаток
bbb.sharedNotes.clearWarning.title = Очистити спільні нотатки
-bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.clearWarning.message = Ця дія очистить нотатки до цього вікна для всіх користувачів, і її неможливо скасувати. Ви впевнені, що хочете очистити ці нотатки?
bbb.sharedNotes.additionalNotes.closeWarning.title = Закрити спільні нотатки
-bbb.sharedNotes.additionalNotes.closeWarning.message =
-bbb.sharedNotes.messageLengthWarning.title =
-bbb.sharedNotes.messageLengthWarning.text =
-bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.additionalNotes.closeWarning.message = Ця дія знищить нотатки у цьому вікні для всіх, і її неможливо скасувати. Ви впевнені, що хочете закрити ці нотатки?
+bbb.sharedNotes.messageLengthWarning.title = Досягнений ліміт змін
+bbb.sharedNotes.messageLengthWarning.text = Ваша змінені символи перевищили ліміт {0}. Спробуйте внести менші зміни.
+bbb.sharedNotes.remaining.tooltip = Залишилось вільного місця в спільних нотатках
bbb.sharedNotes.full.tooltip = Досягнута максимальна кількість символів(спробуйте видалити деякий текст)
bbb.settings.deskshare.instructions = Натисніть на кнопку Дозволити на спливаючому запиті, аби перевірити, що у вас коректно працює трансляція робочого столу
bbb.settings.deskshare.start = Перевірити демонстрацію робочого столу
bbb.settings.voice.volume = Активність мікрофону
bbb.settings.java.label = Помилка версії Java
-bbb.settings.java.text =
+bbb.settings.java.text = У вас встановлена {0} версія Java, проте вам потрібна хоча б {1} версія для використання функції поширення екрану BigBlueButton. Кнопка знизу встановить найновішу версію Java JRE.
bbb.settings.java.command = Встановіть новішу версію Java
bbb.settings.flash.label = Помилка версії Flash
bbb.settings.flash.text = У вас встановлений флеш {0}, але для коректної роботи BigBlueButton потрібна, принаймні, версія {1}. Натисніть на кнопку знизу, щоб встановити останню версію Adobe Flash.
bbb.settings.flash.command = Встановіть новітню Flash
bbb.settings.isight.label = Помилка iSight веб-камери
-bbb.settings.isight.text =
+bbb.settings.isight.text = Якщо у вас виникли проблеми з вашою веб-камерою iSight, можливо, це означає, що ви використовуєте OS X 10.6.5, для якого, як відомо, виникає проблема із захопленням відео з веб-камери iSight.\nДля того, щоб виправити це, наведене нижче посилання буде встановлювати нову версію програвача Flash або оновлювати Mac до останньої версії
bbb.settings.isight.command = Встановити Flash 10.2 RC2
bbb.settings.warning.label = Попередження
bbb.settings.warning.close = Закрити це попередження
@@ -587,7 +589,7 @@ bbb.bwmonitor.upload = Завантажити
bbb.bwmonitor.upload.short = Вгору
bbb.bwmonitor.download = Заванитажити
bbb.bwmonitor.download.short = Вниз
-bbb.bwmonitor.total =
+bbb.bwmonitor.total = Взагалом
bbb.bwmonitor.current = Поточний
bbb.bwmonitor.available = Доступно
bbb.bwmonitor.latency = Затримка
@@ -710,7 +712,7 @@ bbb.shortcutkey.present.fitPage.function = Підігнати слайди по
bbb.shortcutkey.users.makePresenter = 89
bbb.shortcutkey.users.makePresenter.function = Зробити вибраного учасника ведучим
bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Виключити вибраного учасника з конференції
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Вимк./Увімк. мік. у вибраного учасника
bbb.shortcutkey.users.muteall = 65
@@ -763,7 +765,7 @@ bbb.polling.publishButton.label = Публікувати
bbb.polling.closeButton.label = Закрити
bbb.polling.customPollOption.label = Власне опитування
bbb.polling.pollModal.title = Поточні результати голосування
-bbb.polling.pollModal.hint =
+bbb.polling.pollModal.hint = Залиште це вікно відкритим, щоб студенти могли відповісти на опитування. Вибравши кнопку "Опублікувати" або "Закрити", опитування буде завершене.
bbb.polling.customChoices.title = Ввести варіанти вибору
bbb.polling.respondersLabel.novotes = Очікування відповіді
bbb.polling.respondersLabel.text = {0} Користувачів відповіли
@@ -811,10 +813,12 @@ bbb.lockSettings.save.tooltip = Застосувати налаштування
bbb.lockSettings.cancel = Скасувати
bbb.lockSettings.cancel.toolTip = Закрити вікно без збереження
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Заблоковано модератором
bbb.lockSettings.privateChat = Приватний чат
bbb.lockSettings.publicChat = Публічний чат
bbb.lockSettings.webcam = Веб-камера
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Мікрофон
bbb.lockSettings.layout = Схема розташування вікон
bbb.lockSettings.title=Блокувати глядачів
@@ -824,14 +828,14 @@ bbb.lockSettings.lockOnJoin=Блокувати при вході
bbb.users.breakout.breakoutRooms = Кімнати групової роботи
bbb.users.breakout.updateBreakoutRooms = Оновити кімнати групової роботи
-bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timerForRoom.toolTip = Залишок часу для цієї кімнати
bbb.users.breakout.timer.toolTip = Час, що залишився до кінця сеансу групової роботи
bbb.users.breakout.calculatingRemainingTime = Підрахунок часу що залишився
bbb.users.breakout.closing = Закривається
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = Кімнати
bbb.users.breakout.roomsCombo.accessibilityName = Кількість кімнат для створення
bbb.users.breakout.room = Кімната
-bbb.users.breakout.randomAssign = Розподілити учасників випадковим чином
bbb.users.breakout.timeLimit = Ліміт часу
bbb.users.breakout.durationStepper.accessibilityName = Ліміт в хвилинах
bbb.users.breakout.minutes = Хвилин
@@ -846,12 +850,12 @@ bbb.users.breakout.closeAllRooms = Закрити всі групові сесі
bbb.users.breakout.insufficientUsers = Недостатньо учасників. Помістіть хоча б одного учасника
bbb.users.breakout.confirm = Завершити групово сесію
bbb.users.breakout.invited = Ви були запрошені до сесії
-bbb.users.breakout.accept =
+bbb.users.breakout.accept = Погоджуючись, ви автоматично покинете аудіо та відео конференцію
bbb.users.breakout.joinSession = Приєднатись до сесії
-bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.accessibilityName = Приєднатись до зустрічі
bbb.users.breakout.joinSession.close.tooltip = Закрити
-bbb.users.breakout.joinSession.close.accessibilityName =
-bbb.users.breakout.youareinroom =
+bbb.users.breakout.joinSession.close.accessibilityName = Закрити вікно зустрічі
+bbb.users.breakout.youareinroom = Ви перебуваєте в кімнаті {0}
bbb.users.roomsGrid.room = Кімната
bbb.users.roomsGrid.users = Користувачі
bbb.users.roomsGrid.action = Дія
@@ -860,3 +864,8 @@ bbb.users.roomsGrid.join = Приєднатися
bbb.users.roomsGrid.noUsers = Немає користувачів в цій кімнаті
bbb.langSelector.default=Мова по замовчуванню
+
+bbb.alert.cancel = Відмінити
+bbb.alert.ok = OK
+bbb.alert.no = Ні
+bbb.alert.yes = Так
diff --git a/bigbluebutton-client/locale/uz/bbbResources.properties b/bigbluebutton-client/locale/uz/bbbResources.properties
index 1ee41afcb6bf..7765008fa9dd 100644
--- a/bigbluebutton-client/locale/uz/bbbResources.properties
+++ b/bigbluebutton-client/locale/uz/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Serverga ulanish
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Kechirasiz, bu serverga ulanish mumkin emas.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
bbb.micSettings.title = Ovozni tekshirmoq
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = Bekor qilish
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
bbb.micSettings.access.helpButton = Yordam (yangi sahifada ochiq tutorial video)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Yordam
bbb.mainToolbar.logoutBtn = Chiqish
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Tilni tanlang
bbb.mainToolbar.settingsBtn = Sozlamalar
bbb.mainToolbar.settingsBtn.toolTip = Sozlovlarni ochish
bbb.mainToolbar.shortcutBtn = Qisqa tugmachalar
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
bbb.clientstatus.close = Yopmoq
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Kichraytirib ko'rsatmoq
bbb.window.maximizeRestoreBtn.toolTip = Maksimal darajada kattalashtirmoq
bbb.window.closeBtn.toolTip = Yopmoq
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
bbb.users.title = Foydalanuvchilar {0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
bbb.users.settings.buttonTooltip = Sozlamalar
bbb.users.settings.audioSettings = Ovozni tekshirmoq
bbb.users.settings.webcamSettings = Veb kamera sozlovlari
bbb.users.settings.muteAll = Barcha foydalanuvchilarni ovozsiz holatga o`tkazish
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
bbb.video.publish.closeBtn.label = Bekor qilish
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = Kichraytirib ko'rsatmoq
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
bbb.screensharePublish.helpButton.toolTip = Yordam
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
bbb.screensharePublish.cancelButton.label = Bekor qilish
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
bbb.shortcuthelp.title = Qisqa tugmachalar
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = Yopmoq
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = Bekor qilish
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
bbb.users.breakout.close = Yopmoq
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/vi/bbbResources.properties b/bigbluebutton-client/locale/vi/bbbResources.properties
index eec9fa15e75e..5e2bf86baead 100644
--- a/bigbluebutton-client/locale/vi/bbbResources.properties
+++ b/bigbluebutton-client/locale/vi/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
+bbb.mainshell.locale.version =
bbb.mainshell.statusProgress.connecting = Đang kết nối đến máy chủ
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Xin lỗi, chúng tôi không thể kết nối đến máy chủ.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Mở Cửa sổ Nhật ký
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
bbb.mainshell.resetLayoutBtn.toolTip = Đặt lại Bố cục
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Bạn có thể đang dùng phiên bản dịch cũ của BigBlueButton.
bbb.oldlocalewindow.reminder2 = Xin hãy xoá bộ nhớ đệm của trình duyệt và thử lại.
bbb.oldlocalewindow.windowTitle = Cảnh báo: Phiên bản dịch cũ.
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
bbb.micSettings.speakers.header = Thử Loa
-bbb.micSettings.microphone.header = Test Microphone
+bbb.micSettings.microphone.header =
bbb.micSettings.playSound = Thử Loa
bbb.micSettings.playSound.toolTip = Hãy bật nhạc để thử loa của bạn
bbb.micSettings.hearFromHeadset = Bạn có thể nghe tiếng trong tai nghe, chứ không phải loa ngoài.
bbb.micSettings.speakIntoMic = Nếu bạn đang dùng tai nghe, bạn có thể nghe thấy tiếng từ tai nghe, chứ không phải từ loa.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
bbb.micSettings.changeMic = Thử hoặc Thay đổi Microphone
bbb.micSettings.changeMic.toolTip = Mở hộp thoại tuỳ chọn microphone của Trình chạy Flash
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
bbb.micSettings.join = Gia nhập Audio
-bbb.micSettings.join.toolTip = Join the audio conference
+bbb.micSettings.join.toolTip =
bbb.micSettings.cancel = Huỷ bỏ
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
bbb.micSettings.cancel.toolTip = Huỷ việc tham gia hội nghị truyền thanh
bbb.micSettings.access.helpButton = Hướng dẫn ( mở các video học tập trong trang mới)
bbb.micSettings.access.title = Thiết lập âm thanh. Cửa sổ thiết lập âm thanh này sẽ giữ tiêu điểm trỏ chuột cho đến khi đóng
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Hướng dẫn
bbb.mainToolbar.logoutBtn = Đăng xuất
bbb.mainToolbar.logoutBtn.toolTip = Đăng xuất
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
bbb.video.publish.closeBtn.label = Huỷ bỏ
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
bbb.polling.closeButton.label = Đóng
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
bbb.lockSettings.cancel = Huỷ bỏ
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/vi_VN/bbbResources.properties b/bigbluebutton-client/locale/vi_VN/bbbResources.properties
index 64ad9e006d09..a61ae23b4f12 100644
--- a/bigbluebutton-client/locale/vi_VN/bbbResources.properties
+++ b/bigbluebutton-client/locale/vi_VN/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = Kết nối tới máy chủ
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = Xin lỗi, không thể kết nối tới máy chủ.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = Mở cửa sổ Nhật ký
bbb.mainshell.meetingNotFound = Không tìm thấy hội thảo
bbb.mainshell.invalidAuthToken = Token xác thực không đúng
bbb.mainshell.resetLayoutBtn.toolTip = Đặt lại Bố cục
bbb.mainshell.notification.tunnelling = Đang chọn kênh
bbb.mainshell.notification.webrtc = Âm thanh WebRTC
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = Có thể bạn đang dùng bản dịch cũ của BigBlueButton.
bbb.oldlocalewindow.reminder2 = Hãy xoá bộ nhớ đệm của trình duyệt web và thử lại.
bbb.oldlocalewindow.windowTitle = Cảnh báo: Bản dịch Phiên bản Cũ
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = Đang kết nối
bbb.micSettings.webrtc.transferring = Đang chuyển
bbb.micSettings.webrtc.endingecho = Đang tham gia nói chuyện
bbb.micSettings.webrtc.endedecho = Đã kiểm tra âm thanh xong.
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Cho phép Firefox dùng Microphone
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = Cho phép Chrome dùng Microphone
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = Cảnh báo về âm thanh
bbb.micWarning.joinBtn.label = Vẫn muốn tham gia
bbb.micWarning.testAgain.label = Kiểm tra lại lần nữa
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = Kiểm tra âm thanh bằng We
bbb.webrtcWarning.connection.dropped = Kết nối WebRTC đã bị ngắt
bbb.webrtcWarning.connection.reconnecting = Đang cố gắng kết nối lại
bbb.webrtcWarning.connection.reestablished = Kết nối WebRTC đang được thiết lập lại
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = Hướng dẫn
bbb.mainToolbar.logoutBtn = Đăng xuất
bbb.mainToolbar.logoutBtn.toolTip = Đăng xuất
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = Chọn ngôn ngữ
bbb.mainToolbar.settingsBtn = Tuỳ chọn
bbb.mainToolbar.settingsBtn.toolTip = Mở Tuỳ chọn
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = Bắt đầu ghi âm
bbb.mainToolbar.recordBtn.toolTip.stop = Dừng ghi âm
bbb.mainToolbar.recordBtn.toolTip.recording = Phiên làm việc đang được ghi âm
bbb.mainToolbar.recordBtn.toolTip.notRecording = Phiên làm việc này không có ghi âm
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = Xác nhận ghi âm
bbb.mainToolbar.recordBtn.confirm.message.start = Bạn có chắc muốn bắt đầu ghi âm?
bbb.mainToolbar.recordBtn.confirm.message.stop = Bạn có chắc muốn dừng ghi âm?
-bbb.mainToolbar.recordBtn..notification.title = Thông báo từ ghi âm
-bbb.mainToolbar.recordBtn..notification.message1 = Bạn có thể ghi âm lại buổi hội thảo này
-bbb.mainToolbar.recordBtn..notification.message2 = Bạn phải click nút Bắt đầu/Dừng ghi âm trên thanh tiêu đề để Bắt đầu/Dừng ghi âm.
+bbb.mainToolbar.recordBtn.notification.title = Thông báo từ ghi âm
+bbb.mainToolbar.recordBtn.notification.message1 = Bạn có thể ghi âm lại buổi hội thảo này
+bbb.mainToolbar.recordBtn.notification.message2 = Bạn phải click nút Bắt đầu/Dừng ghi âm trên thanh tiêu đề để Bắt đầu/Dừng ghi âm.
bbb.mainToolbar.recordingLabel.recording = (Đang ghi âm)
bbb.mainToolbar.recordingLabel.notRecording = Không ghi âm
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = Các thông báo cấu hình
bbb.clientstatus.notification = Các thông báo chưa đọc
bbb.clientstatus.close = Đóng
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = Trình duyệt ({0}) của bạn không phả
bbb.clientstatus.flash.title = Máy trình chiếu Flash
bbb.clientstatus.flash.message = Máy trình chiếu Flash ({0}) của bạn không phải là mới nhất. Khuyến nghị nên cập nhật phiên bản mới nhất.
bbb.clientstatus.webrtc.title = Âm thanh
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = Khuyến nghị sử dụng Firefox hay Chrome để có âm thanh tốt hơn
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = Thu nhỏ
bbb.window.maximizeRestoreBtn.toolTip = Phóng to
bbb.window.closeBtn.toolTip = Đóng lại
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = Trạng thái
bbb.users.usersGrid.statusItemRenderer.changePresenter = Click để trở thành người trình bày
bbb.users.usersGrid.statusItemRenderer.presenter = Người trình bày
bbb.users.usersGrid.statusItemRenderer.moderator = Người điều hành
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = Xóa trạng thái
bbb.users.usersGrid.statusItemRenderer.viewer = Người xem
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Chia sẻ webcam
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Mở lại âm {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Tắt âm {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Khoá {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Mở khoá {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Đuổi {0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = Chia sẻ webcam
bbb.users.usersGrid.mediaItemRenderer.micOff = Tắt microphone
bbb.users.usersGrid.mediaItemRenderer.micOn = Mở microphone
bbb.users.usersGrid.mediaItemRenderer.noAudio = Không ở trong chế độ hội nghị
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = Xóa
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = Trình bày
bbb.presentation.titleWithPres = Trình bày: {0}
bbb.presentation.quickLink.label = Cửa sổ trình bày
bbb.presentation.fitToWidth.toolTip = Canh chỉnh vừa vặn chiều rộng phần trình bày
bbb.presentation.fitToPage.toolTip = Canh chỉnh vừa vặn phần trình bày theo trang
bbb.presentation.uploadPresBtn.toolTip = Tải lên phần trình bày
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = Trang trước.
bbb.presentation.btnSlideNum.accessibilityName = Slide {0} / {1}
bbb.presentation.btnSlideNum.toolTip = Chọn một trang trình bày
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = Đã tải lên xong. Hãy đợi trong khi ch
bbb.presentation.uploaded = tải lên xong.
bbb.presentation.document.supported = The uploaded document is supported.
bbb.presentation.document.converted = Successfully converter the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = Lỗi truy xuất IO Error khi tải tệp lên. Hãy liên hệ với Người quản trị.
bbb.presentation.error.security = Lỗi Bảo mật khi tải tệp lên. Hãy liên hệ với Người quản trị..
bbb.presentation.error.convert.notsupported = Lỗi định dạng này không được hỗ trợ: Hãy tải lên một tệp được hỗ trợ.
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = Tải lên
bbb.fileupload.uploadBtn.toolTip = Tải lên tệp tin
bbb.fileupload.deleteBtn.toolTip = Xoá Bài trình bày
bbb.fileupload.showBtn = Cho xem
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = Cho xem Bài trình bày
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = Kết xuất hình thu nhỏ...
bbb.fileupload.progBarLbl = Tiến trình:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = Trao đổi
bbb.chat.quickLink.label = Cửa sổ tán gẫu
bbb.chat.cmpColorPicker.toolTip = Màu chữ
bbb.chat.input.accessibilityName = Khung chỉnh sửa nội dung tin nhắn tán gẫu
bbb.chat.sendBtn.toolTip = Gửi thông điệp
bbb.chat.sendBtn.accessibilityName = Gửi tin nhắn tán gẫu
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = Sao chép tất cả text
bbb.chat.publicChatUsername = Tất cả
bbb.chat.optionsTabName = Tuỳ chọn
@@ -331,13 +334,13 @@ bbb.chat.usersList.accessibilityName = Chọn một người để mở cửa s
bbb.chat.chatOptions = Tuỳ chọn Trò chuyện
bbb.chat.fontSize = Kích thước Phông
bbb.chat.cmbFontSize.toolTip = Chọn kích thước kiểu chữ cho tin nhắn tán gẫu
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = Thu nhỏ cửa sổ tán gẫu
bbb.chat.maximizeRestoreBtn.accessibilityName = Phóng to cửa sổ tán gẫu
bbb.chat.closeBtn.accessibilityName = Đóng lại cửa sổ tán gẫu
bbb.chat.chatTabs.accessibleNotice = Tin nhắn mới trong tab này.
bbb.chat.chatMessage.systemMessage = Hệ thống
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = Tin nhắn quá dài, ({0}) kí tự
bbb.publishVideo.changeCameraBtn.labelText = Thay đổi webcam
bbb.publishVideo.changeCameraBtn.toolTip = Click để mở hộp thoại điều khiển thay đổi webcam
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = Bắt đầu chia sẻ
bbb.publishVideo.startPublishBtn.toolTip = Bắt đầu Chia sẻ
bbb.publishVideo.startPublishBtn.errorName = Không thẻ chia sẻ webcam. Lý do: {0}
bbb.webcamPermissions.chrome.title = Cho phép Chrome dùng Webcam
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = Bám dính Video
bbb.videodock.quickLink.label = Cửa sổ webcam
bbb.video.minimizeBtn.accessibilityName = Thu nhỏ cửa sổ webcam
@@ -367,89 +370,91 @@ bbb.video.publish.closeBtn.accessName = Đóng lại hộp thoại điều chỉ
bbb.video.publish.closeBtn.label = Hủy bỏ
bbb.video.publish.titleBar = Xuất bản cửa sổ webcam
bbb.video.streamClose.toolTip = Đóng kết nối truyền dữ liệu của: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = Chia sẻ màn hình
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
bbb.screenshareView.closeBtn.accessibilityName = Đóng cửa sổ chia sẻ màn hình
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = Dừng nghe hội thảo
bbb.toolbar.phone.toolTip.unmute = Bắt đầu nghe hội thảo
bbb.toolbar.phone.toolTip.nomic = Không tìm thấy microphone
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
+bbb.toolbar.deskshare.toolTip.start =
bbb.toolbar.deskshare.toolTip.stop = Ngừng chia sẻ màn hình của bạn
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = Chia sẻ webcam của bạn
bbb.toolbar.video.toolTip.stop = Ngừng chia sẻ webcam của bạn
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = Thêm vào phần bố trí tùy chọn cho danh sách
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = Thay đổi cách trình bày của bạn
bbb.layout.loadButton.toolTip = Tải bố cục từ tập tin
bbb.layout.saveButton.toolTip = Lưu bố cục thành một tập tin
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = Áp dụng một thay đổi về bố cục
bbb.layout.combo.custom = * Bố cục tùy chọn
bbb.layout.combo.customName = Bố cục tùy chọn
bbb.layout.combo.remote = Từ xa
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = Các bố cục đã được lưu thành công
+bbb.layout.save.ioerror =
bbb.layout.load.complete = Các bố cục đã được tải thành công
bbb.layout.load.failed = Không thể khởi tạo mẫu trình bày
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = Kiểu trình bày mặc định
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = Tán gẫu qua Video
bbb.layout.name.webcamsfocus = Hội thoại qua Webcam
bbb.layout.name.presentfocus = Hội thoại trình chiếu
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = Trợ giảng
bbb.layout.name.lecture = Giảng viên
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = Đánh dấu
bbb.highlighter.toolbar.pencil.accessibilityName = Chuyển đổi trỏ chuột trắng sang dạng hình viết chì
bbb.highlighter.toolbar.ellipse = Hình tròn
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = Chọn Màu
bbb.highlighter.toolbar.color.accessibilityName = Màu sắc bút vẽ trên bảng trắng
bbb.highlighter.toolbar.thickness = Thay đổi Bề dày
bbb.highlighter.toolbar.thickness.accessibilityName = Độ dày nét vẽ trên bảng trắng
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Đã đăng xuất
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = Đồng ý
bbb.logout.appshutdown = Máy chủ ứng dụng vừa bị tắt
bbb.logout.asyncerror = Một Lỗi Đồng bộ xảy ra
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = Kết nối đến máy chủ đã ngắt
bbb.logout.rejected = Kết nối tới máy chủ đã bị từ chối
bbb.logout.invalidapp = Ứng dụng Red5 không tồn tại
bbb.logout.unknown = Trình duyệt của bạn đã mất kết nối tới máy chủ
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = Bạn vừa thoát ra khỏi cuộc hội thoại
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = Một người quản lý đã loại bạn ra khỏi cuộc thảo luận.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = Nếu không mong muốn thoát khỏi hệ thống, click Kết nối lại để kết nối trở lại
bbb.logout.refresh.label = Kết nối lại
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = Xác nhận đăng xuất
bbb.logout.confirm.message = Bạn có chắc muốn đăng xuất?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = Đồng Ý
bbb.logout.confirm.no = Không
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=Lỗi kết nối đã phát hiện
bbb.connection.reconnecting=Đang kết nối lại
bbb.connection.reestablished=Đã kết nối xong
@@ -530,59 +539,60 @@ bbb.notes.title = Ghi chú
bbb.notes.cmpColorPicker.toolTip = Màu sắc văn bản
bbb.notes.saveBtn = Lưu
bbb.notes.saveBtn.toolTip = Lưu ghi chú
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = Nhấn vào Cho phép (Allow) tại hộp thoại bật lên để kiểm tra dịch vụ chia sẻ màn hình hoạt động tốt
bbb.settings.deskshare.start = Kiểm tra Chia sẻ Màn hình
bbb.settings.voice.volume = Tình trạng của Micro
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Lỗi phiên bản Flash
bbb.settings.flash.text = Bạn đã cài Flash {0}, nhưng bạn cần ít nhất phiên bản {1} để chạy tốt BigBlueButton. Nhấn vào nút dưới đây để cài phiên bản Adobe Flash mới nhất.
bbb.settings.flash.command = Cài bản Flash mới nhất
bbb.settings.isight.label = Lỗi camera iSight
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = Cài đặt Flash 10.2 RC2
bbb.settings.warning.label = Cảnh báo
bbb.settings.warning.close = Đóng Cảnh báo này
bbb.settings.noissues = Không có vấn đề nào được phát hiện.
bbb.settings.instructions = Chấp nhận nhắc nhở của Flash đề nghị quyền truy xuất camera của bạn. Nếu bạn có thể nghe và thấy bản thân bạn qua webcam và micro, trình duyệt của bạn đã cài đặt thành công. Một số vấn đề tiềm tàng khác được trình bày bên dưới. Nhấn vào từng mục để tìm giải pháp phù hợp.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = Thước êke
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Chuyể đổi con trỏ trên bảng trắng sang dạng thước ê-ke
ltbcustom.bbb.highlighter.toolbar.line = Đường thẳng
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = Văn bản
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Chuyển đổi trỏ chuột trắng sang dạng chữ viết
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Màu chữ
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Kích thước kiểu chữ
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = Sẵn sàng
@@ -627,23 +637,23 @@ bbb.accessibility.chat.chatBox.navigatedLatest = Bạn đã điều hướng đ
bbb.accessibility.chat.chatBox.navigatedLatestRead = Bạn đã điều hướng đến các tin nhắn gần đây nhất mà bạn đã đọc.
bbb.accessibility.chat.chatwindow.input = Nhập dữ liệu tán gẫu
bbb.accessibility.chat.chatwindow.audibleChatNotification = Thông báo phần âm thanh
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = Vui lòng sử dụng các phím mũi tên để định hướng trong các tin nhắn tán gẫu.
bbb.accessibility.notes.notesview.input = Nhập vào ghi chú
bbb.shortcuthelp.title = Phím tắt
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = Thu nhỏ cửa sổ trợ giúp phím tắt
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Phóng to cửa sổ trợ giúp phím tắt
bbb.shortcuthelp.closeBtn.accessibilityName = Đóng lại cửa sổ trợ giúp phím tắt
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = Phím tắt chung
bbb.shortcuthelp.dropdown.presentation = Phím tắt phần trình bày
bbb.shortcuthelp.dropdown.chat = Phím tắt tán gẫu
bbb.shortcuthelp.dropdown.users = Phím tắt của người dùng
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = Phím tắt
bbb.shortcuthelp.headers.function = Chức năng
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = Chuyển phần tập trung vào cửa sổ trình bày
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = Chuyển phần tập trung vào cửa sổ tán gẫu
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Mở cửa sổ chia sẻ dạng desktop
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = Thoát khỏi cuộc họp này
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Giơ tay
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = Tải lên phần trình bày
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Đi đến trang trình bày trước đó
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Đi đến trang trình bày tiếp theo
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Chỉnh vừa vặn trang trình bày theo chiều rộng
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = Chỉnh vừa vặn trang trình bày dựa theo trang
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = Cho phép người được chọn làm người trình bày
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Đuổi người được chọn khỏi buổi họp
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = Tắt âm hoặc mở lại âm với người dùng được chọn
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = Mở hoặc tắt âm tất cả người dùng
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Tắt âm mọi người trừ người thuyết trình
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Tập trung vào tab tán gẫu
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Tập trung vào phần chọn màu kiểu chữ.
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = Điều hướng đến các tin
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Phím tắt gỡ rối tạm thời
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = Bắt đầu một cuộc bầu chọn
bbb.polling.startButton.label = Bắt đầu bầu chọn
bbb.polling.publishButton.label = Xuất bản
bbb.polling.closeButton.label = Đóng lại
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = Kết quả bầu chọn trực tiếp
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = Nhập bầu chọn của bạn
bbb.polling.respondersLabel.novotes = Đang đợi chấp nhận
bbb.polling.respondersLabel.text = {0} người phản hồi
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = Đóng tất cả video
bbb.users.settings.lockAll = Khóa tất cả người dùng
bbb.users.settings.lockAllExcept = Khóa tất cả người dùng trừ người trình bày
bbb.users.settings.lockSettings = Khóa những người đang xem ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = Mở khóa tất cả người đang xem
bbb.users.settings.roomIsLocked = Mặc định là khóa
bbb.users.settings.roomIsMuted = Mặc định là im lặng
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = Áp dụng các thiết đặt về khóa
bbb.lockSettings.cancel = Hủy bỏ
bbb.lockSettings.cancel.toolTip = Đóng cửa sổ và không lưu lại
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = Khóa người điều hành
bbb.lockSettings.privateChat = Tán gẫu riêng tư
bbb.lockSettings.publicChat = Tán gẫu công cộng
bbb.lockSettings.webcam = Webcam
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = Microphone
bbb.lockSettings.layout = Kiểu trình bày
bbb.lockSettings.title=Khóa người dùng
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=Tính năng
bbb.lockSettings.locked=Đã khóa
bbb.lockSettings.lockOnJoin=Khóa ngay khi gia nhập
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
bbb.users.roomsGrid.join = Tham gia
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/zh/bbbResources.properties b/bigbluebutton-client/locale/zh/bbbResources.properties
index ffa125913559..f5f028b52b98 100644
--- a/bigbluebutton-client/locale/zh/bbbResources.properties
+++ b/bigbluebutton-client/locale/zh/bbbResources.properties
@@ -1,903 +1,871 @@
-bbb.mainshell.locale.version = 0.9.0
-bbb.mainshell.statusProgress.connecting = Connecting to the server
-bbb.mainshell.statusProgress.loading = Loading
-bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
-bbb.mainshell.logBtn.toolTip = Open Log Window
-bbb.mainshell.meetingNotFound = Meeting Not Found
-bbb.mainshell.invalidAuthToken = Invalid Authentication Token
-bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
-bbb.mainshell.notification.tunnelling = Tunnelling
-bbb.mainshell.notification.webrtc = WebRTC Audio
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
-bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
-bbb.oldlocalewindow.reminder2 = Please clear your browser's cache and try again.
-bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
-bbb.audioSelection.title = How do you want to join the audio?
-bbb.audioSelection.btnMicrophone.label = Microphone
-bbb.audioSelection.btnMicrophone.toolTip = Join the audio with your microphone
-bbb.audioSelection.btnListenOnly.label = Listen Only
-bbb.audioSelection.btnListenOnly.toolTip = Join the audio as listen only
-bbb.audioSelection.txtPhone.text = To join this meeting by phone, dial: {0} then enter {1} as the conference pin number.
-bbb.micSettings.title = Audio Test
-bbb.micSettings.speakers.header = Test Speakers
-bbb.micSettings.microphone.header = Test Microphone
-bbb.micSettings.playSound = Test Speakers
-bbb.micSettings.playSound.toolTip = Play music to test your speakers
-bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
-bbb.micSettings.speakIntoMic = If you are using a headset (or earbuds), you should hear the audio from your headset -- not from your computer speakers.
-bbb.micSettings.echoTestMicPrompt = This is a private echo test. Speak a few words. Did you hear audio?
-bbb.micSettings.echoTestAudioYes = Yes
-bbb.micSettings.echoTestAudioNo = No
-bbb.micSettings.speakIntoMicTestLevel = Speak into your microphone. You should see the bar move. If not, choose another mic.
-bbb.micSettings.recommendHeadset = Use a headset with a microphone for best audio experience.
-bbb.micSettings.changeMic = Test or Change Microphone
-bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
-bbb.micSettings.comboMicList.toolTip = Select a microphone
-bbb.micSettings.micRecordVolume.label = Gain
-bbb.micSettings.micRecordVolume.toolTip = Set your microphone gain
-bbb.micSettings.nextButton = Next
-bbb.micSettings.nextButton.toolTip = Start the echo test
-bbb.micSettings.join = Join Audio
-bbb.micSettings.join.toolTip = Join the audio conference
-bbb.micSettings.cancel = Cancel
-bbb.micSettings.connectingtoecho = Connecting
-bbb.micSettings.connectingtoecho.error = Echo Test Error: Please contact administrator.
-bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
-bbb.micSettings.access.helpButton = Help (open tutorial videos in new page)
-bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
-bbb.micSettings.webrtc.title = WebRTC Support
-bbb.micSettings.webrtc.capableBrowser = Your browser supports WebRTC.
-bbb.micSettings.webrtc.capableBrowser.dontuseit = Click not to use WebRTC
-bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip = Click here if you don't want to use the WebRTC technology (recommended if you have problems using it).
-bbb.micSettings.webrtc.notCapableBrowser = WebRTC is not supported in your browser. Please use Google Chrome (version 32 or greater); or Mozilla Firefox (version 26 or greater). You will still be able to join the voice conference using the Adobe Flash Platform.
-bbb.micSettings.webrtc.connecting = Calling
-bbb.micSettings.webrtc.waitingforice = Connecting
-bbb.micSettings.webrtc.transferring = Transferring
-bbb.micSettings.webrtc.endingecho = Joining audio
-bbb.micSettings.webrtc.endedecho = Echo test ended.
-bbb.micPermissions.firefox.title = Firefox Microphone Permissions
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
-bbb.micPermissions.chrome.title = Chrome Microphone Permissions
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
-bbb.micWarning.title = Audio Warning
-bbb.micWarning.joinBtn.label = Join anyway
-bbb.micWarning.testAgain.label = Test again
-bbb.micWarning.message = Your microphone did not show any activity, others probably won't be able to hear you during the session.
-bbb.webrtcWarning.message = Detected the following WebRTC issue: {0}. Do you want to try Flash instead?
-bbb.webrtcWarning.title = WebRTC Audio Failure
-bbb.webrtcWarning.failedError.1001 = Error 1001: WebSocket disconnected
-bbb.webrtcWarning.failedError.1002 = Error 1002: Could not make a WebSocket connection
-bbb.webrtcWarning.failedError.1003 = Error 1003: Browser version not supported
-bbb.webrtcWarning.failedError.1004 = Error 1004: Failure on call (reason={0})
-bbb.webrtcWarning.failedError.1005 = Error 1005: Call ended unexpectedly
-bbb.webrtcWarning.failedError.1006 = Error 1006: Call timed out
-bbb.webrtcWarning.failedError.1007 = Error 1007: ICE negotiation failed
-bbb.webrtcWarning.failedError.1008 = Error 1008: Transfer failed
-bbb.webrtcWarning.failedError.1009 = Error 1009: Could not fetch STUN/TURN server information
-bbb.webrtcWarning.failedError.1010 = Error 1010: ICE negotiation timeout
-bbb.webrtcWarning.failedError.1011 = Error 1011: ICE gathering timeout
-bbb.webrtcWarning.failedError.unknown = Error {0}: Unknown error code
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
-bbb.webrtcWarning.connection.dropped = WebRTC connection dropped
-bbb.webrtcWarning.connection.reconnecting = Attempting to reconnect
-bbb.webrtcWarning.connection.reestablished = WebRTC connection re-established
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
-bbb.mainToolbar.helpBtn = Help
-bbb.mainToolbar.logoutBtn = Logout
-bbb.mainToolbar.logoutBtn.toolTip = Log Out
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
-bbb.mainToolbar.langSelector = Select language
-bbb.mainToolbar.settingsBtn = Settings
-bbb.mainToolbar.settingsBtn.toolTip = Open Settings
-bbb.mainToolbar.shortcutBtn = Shortcut Keys
-bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Keys Window
-bbb.mainToolbar.recordBtn.toolTip.start = Start recording
-bbb.mainToolbar.recordBtn.toolTip.stop = Stop recording
-bbb.mainToolbar.recordBtn.toolTip.recording = The session is being recorded
-bbb.mainToolbar.recordBtn.toolTip.notRecording = The session isn't being recorded
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
-bbb.mainToolbar.recordBtn.confirm.title = Confirm recording
-bbb.mainToolbar.recordBtn.confirm.message.start = Are you sure you want to start recording the session?
-bbb.mainToolbar.recordBtn.confirm.message.stop = Are you sure you want to stop recording the session?
-bbb.mainToolbar.recordBtn..notification.title = Record Notification
-bbb.mainToolbar.recordBtn..notification.message1 = You can record this meeting.
-bbb.mainToolbar.recordBtn..notification.message2 = You must click the Start/Stop Recording button in the title bar to begin/end recording.
-bbb.mainToolbar.recordingLabel.recording = (Recording)
-bbb.mainToolbar.recordingLabel.notRecording = Not Recording
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
-bbb.clientstatus.close = Close
-bbb.clientstatus.tunneling.title = Firewall
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
-bbb.clientstatus.browser.title = Browser Version
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
-bbb.clientstatus.flash.title = Flash Player
-bbb.clientstatus.flash.message = Your Flash Player plugin ({0}) is out-of-date. Recommend updating to the latest version.
-bbb.clientstatus.webrtc.title = Audio
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.window.minimizeBtn.toolTip = Minimize
-bbb.window.maximizeRestoreBtn.toolTip = Maximize
-bbb.window.closeBtn.toolTip = Close
-bbb.videoDock.titleBar = Webcam Window Title Bar
-bbb.presentation.titleBar = Presentation Window Title Bar
-bbb.chat.titleBar = Chat Window Title Bar
-bbb.users.title = Users{0} {1}
-bbb.users.titleBar = Users Window title bar
-bbb.users.quickLink.label = Users Window
-bbb.users.minimizeBtn.accessibilityName = Minimize the Users Window
-bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
-bbb.users.settings.buttonTooltip = Settings
-bbb.users.settings.audioSettings = Audio Test
-bbb.users.settings.webcamSettings = Webcam Settings
-bbb.users.settings.muteAll = Mute All Users
-bbb.users.settings.muteAllExcept = Mute All Users Except Presenter
-bbb.users.settings.unmuteAll = Unmute All Users
-bbb.users.settings.clearAllStatus = Clear all status icons
-bbb.users.emojiStatusBtn.toolTip = Update my status icon
-bbb.users.roomMuted.text = Viewers Muted
-bbb.users.roomLocked.text = Viewers Locked
-bbb.users.pushToTalk.toolTip = Talk
-bbb.users.pushToMute.toolTip = Mute yourself
-bbb.users.muteMeBtnTxt.talk = Unmute
-bbb.users.muteMeBtnTxt.mute = Mute
-bbb.users.muteMeBtnTxt.muted = Muted
-bbb.users.usersGrid.contextmenu.exportusers = Copy User Names
-bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
-bbb.users.usersGrid.nameItemRenderer = Name
-bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
-bbb.users.usersGrid.statusItemRenderer = Status
-bbb.users.usersGrid.statusItemRenderer.changePresenter = Click To Make Presenter
-bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
-bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
-bbb.users.usersGrid.statusItemRenderer.clearStatus = Clear status
-bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
-bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = Sharing webcam.
-bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip = Is Presenter.
-bbb.users.usersGrid.mediaItemRenderer = Media
-bbb.users.usersGrid.mediaItemRenderer.talking = Talking
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
-bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}
-bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = Kick {0}
-bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
-bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
-bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
-bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
-bbb.users.emojiStatus.clear = Clear
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
-bbb.presentation.title = Presentation
-bbb.presentation.titleWithPres = Presentation: {0}
-bbb.presentation.quickLink.label = Presentation Window
-bbb.presentation.fitToWidth.toolTip = Fit Presentation To Width
-bbb.presentation.fitToPage.toolTip = Fit Presentation To Page
-bbb.presentation.uploadPresBtn.toolTip = Upload Presentation
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
-bbb.presentation.backBtn.toolTip = Previous slide
-bbb.presentation.btnSlideNum.accessibilityName = Slide {0} of {1}
-bbb.presentation.btnSlideNum.toolTip = Select a slide
-bbb.presentation.forwardBtn.toolTip = Next slide
-bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
-bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
-bbb.presentation.uploaded = uploaded.
-bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
-bbb.presentation.document.converted = Successfully converted the office document.
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
-bbb.presentation.error.io = IO Error: Please contact administrator.
-bbb.presentation.error.security = Security Error: Please contact administrator.
-bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
-bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
-bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
-bbb.presentation.converted = Converted {0} of {1} slides.
-bbb.presentation.slider = Presentation zoom level
-bbb.presentation.slideloader.starttext = Slide text start
-bbb.presentation.slideloader.endtext = Slide text end
-bbb.presentation.uploadwindow.presentationfile = Presentation file
-bbb.presentation.uploadwindow.pdf = PDF
-bbb.presentation.uploadwindow.word = WORD
-bbb.presentation.uploadwindow.excel = EXCEL
-bbb.presentation.uploadwindow.powerpoint = POWERPOINT
-bbb.presentation.uploadwindow.image = IMAGE
-bbb.presentation.minimizeBtn.accessibilityName = Minimize the Presentation Window
-bbb.presentation.maximizeRestoreBtn.accessibilityName = Maximize the Presentation Window
-bbb.presentation.closeBtn.accessibilityName = Close the Presentation Window
-bbb.fileupload.title = Add Files to Your Presentation
-bbb.fileupload.lblFileName.defaultText = No file selected
-bbb.fileupload.selectBtn.label = Select File
-bbb.fileupload.selectBtn.toolTip = Open dialog box to select a file
-bbb.fileupload.uploadBtn = Upload
-bbb.fileupload.uploadBtn.toolTip = Upload the selected file
-bbb.fileupload.deleteBtn.toolTip = Delete Presentation
-bbb.fileupload.showBtn = Show
-bbb.fileupload.retry = Try another file
-bbb.fileupload.showBtn.toolTip = Show Presentation
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
-bbb.fileupload.genThumbText = Generating thumbnails..
-bbb.fileupload.progBarLbl = Progress:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
-bbb.chat.title = Chat
-bbb.chat.quickLink.label = Chat Window
-bbb.chat.cmpColorPicker.toolTip = Text Color
-bbb.chat.input.accessibilityName = Chat Message Editing Field
-bbb.chat.sendBtn.toolTip = Send Message
-bbb.chat.sendBtn.accessibilityName = Send chat message
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
-bbb.chat.contextmenu.copyalltext = Copy All Text
-bbb.chat.publicChatUsername = Public
-bbb.chat.optionsTabName = Options
-bbb.chat.privateChatSelect = Select a person to chat with privately
-bbb.chat.private.userLeft = The user has left.
-bbb.chat.private.userJoined = The user has joined.
-bbb.chat.private.closeMessage = You can close this tab by using the key combination {0}.
-bbb.chat.usersList.toolTip = Select User To Open Private Chat
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
-bbb.chat.chatOptions = Chat Options
-bbb.chat.fontSize = Chat Message Font Size
-bbb.chat.cmbFontSize.toolTip = Select Chat Message Font Size
-bbb.chat.messageList = Chat Messages
-bbb.chat.minimizeBtn.accessibilityName = Minimize the Chat Window
-bbb.chat.maximizeRestoreBtn.accessibilityName = Maximize the Chat Window
-bbb.chat.closeBtn.accessibilityName = Close the Chat Window
-bbb.chat.chatTabs.accessibleNotice = New messages in this tab.
-bbb.chat.chatMessage.systemMessage = System
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
-bbb.publishVideo.changeCameraBtn.toolTip = Open the change webcam dialog box
-bbb.publishVideo.cmbResolution.tooltip = Select a webcam resolution
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.startPublishBtn.toolTip = Start sharing your webcam
-bbb.publishVideo.startPublishBtn.errorName = Can't share webcam. Reason: {0}
-bbb.webcamPermissions.chrome.title = Chrome Webcam Permissions
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
-bbb.videodock.title = Webcams
-bbb.videodock.quickLink.label = Webcams Window
-bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
-bbb.video.maximizeRestoreBtn.accessibilityName = Maximize the Webcams Window
-bbb.video.controls.muteButton.toolTip = Mute or unmute {0}
-bbb.video.controls.switchPresenter.toolTip = Make {0} presenter
-bbb.video.controls.ejectUserBtn.toolTip = Eject {0} from meeting
-bbb.video.controls.privateChatBtn.toolTip = Chat with {0}
-bbb.video.publish.hint.noCamera = No webcam available
-bbb.video.publish.hint.cantOpenCamera = Can't open your webcam
-bbb.video.publish.hint.waitingApproval = Waiting for approval
-bbb.video.publish.hint.videoPreview = Webcam preview
-bbb.video.publish.hint.openingCamera = Opening webcam...
-bbb.video.publish.hint.cameraDenied = Webcam access denied
-bbb.video.publish.hint.cameraIsBeingUsed = Your webcam couldn't be opened - it may be under use by another application
-bbb.video.publish.hint.publishing = Publishing...
-bbb.video.publish.closeBtn.accessName = Close the webcam settings dialog box
-bbb.video.publish.closeBtn.label = Cancel
-bbb.video.publish.titleBar = Publish Webcam Window
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
-bbb.screensharePublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
-bbb.screensharePublish.closeBtn.toolTip = Stop Sharing and Close
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
-bbb.screensharePublish.minimizeBtn.toolTip = Minimize
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.mainshell.locale.version =
+bbb.mainshell.statusProgress.connecting =
+bbb.mainshell.statusProgress.loading =
+bbb.mainshell.statusProgress.cannotConnectServer =
+bbb.mainshell.copyrightLabel2 =
+bbb.mainshell.logBtn.toolTip =
+bbb.mainshell.meetingNotFound =
+bbb.mainshell.invalidAuthToken =
+bbb.mainshell.resetLayoutBtn.toolTip =
+bbb.mainshell.notification.tunnelling =
+bbb.mainshell.notification.webrtc =
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
+bbb.oldlocalewindow.reminder1 =
+bbb.oldlocalewindow.reminder2 =
+bbb.oldlocalewindow.windowTitle =
+bbb.audioSelection.title =
+bbb.audioSelection.btnMicrophone.label =
+bbb.audioSelection.btnMicrophone.toolTip =
+bbb.audioSelection.btnListenOnly.label =
+bbb.audioSelection.btnListenOnly.toolTip =
+bbb.audioSelection.txtPhone.text =
+bbb.micSettings.title =
+bbb.micSettings.speakers.header =
+bbb.micSettings.microphone.header =
+bbb.micSettings.playSound =
+bbb.micSettings.playSound.toolTip =
+bbb.micSettings.hearFromHeadset =
+bbb.micSettings.speakIntoMic =
+bbb.micSettings.echoTestMicPrompt =
+bbb.micSettings.echoTestAudioYes =
+bbb.micSettings.echoTestAudioNo =
+bbb.micSettings.speakIntoMicTestLevel =
+bbb.micSettings.recommendHeadset =
+bbb.micSettings.changeMic =
+bbb.micSettings.changeMic.toolTip =
+bbb.micSettings.comboMicList.toolTip =
+bbb.micSettings.micRecordVolume.label =
+bbb.micSettings.micRecordVolume.toolTip =
+bbb.micSettings.nextButton =
+bbb.micSettings.nextButton.toolTip =
+bbb.micSettings.join =
+bbb.micSettings.join.toolTip =
+bbb.micSettings.cancel =
+bbb.micSettings.connectingtoecho =
+bbb.micSettings.connectingtoecho.error =
+bbb.micSettings.cancel.toolTip =
+bbb.micSettings.access.helpButton =
+bbb.micSettings.access.title =
+bbb.micSettings.webrtc.title =
+bbb.micSettings.webrtc.capableBrowser =
+bbb.micSettings.webrtc.capableBrowser.dontuseit =
+bbb.micSettings.webrtc.capableBrowser.dontuseit.toolTip =
+bbb.micSettings.webrtc.notCapableBrowser =
+bbb.micSettings.webrtc.connecting =
+bbb.micSettings.webrtc.waitingforice =
+bbb.micSettings.webrtc.transferring =
+bbb.micSettings.webrtc.endingecho =
+bbb.micSettings.webrtc.endedecho =
+bbb.micPermissions.message.browserhttp =
+bbb.micPermissions.firefox.title =
+bbb.micPermissions.firefox.message =
+bbb.micPermissions.chrome.title =
+bbb.micPermissions.chrome.message =
+bbb.micWarning.title =
+bbb.micWarning.joinBtn.label =
+bbb.micWarning.testAgain.label =
+bbb.micWarning.message =
+bbb.webrtcWarning.message =
+bbb.webrtcWarning.title =
+bbb.webrtcWarning.failedError.1001 =
+bbb.webrtcWarning.failedError.1002 =
+bbb.webrtcWarning.failedError.1003 =
+bbb.webrtcWarning.failedError.1004 =
+bbb.webrtcWarning.failedError.1005 =
+bbb.webrtcWarning.failedError.1006 =
+bbb.webrtcWarning.failedError.1007 =
+bbb.webrtcWarning.failedError.1008 =
+bbb.webrtcWarning.failedError.1009 =
+bbb.webrtcWarning.failedError.1010 =
+bbb.webrtcWarning.failedError.1011 =
+bbb.webrtcWarning.failedError.unknown =
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
+bbb.webrtcWarning.connection.dropped =
+bbb.webrtcWarning.connection.reconnecting =
+bbb.webrtcWarning.connection.reestablished =
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
+bbb.mainToolbar.helpBtn =
+bbb.mainToolbar.logoutBtn =
+bbb.mainToolbar.logoutBtn.toolTip =
+bbb.mainToolbar.idleLogoutBtn =
+bbb.mainToolbar.langSelector =
+bbb.mainToolbar.settingsBtn =
+bbb.mainToolbar.settingsBtn.toolTip =
+bbb.mainToolbar.shortcutBtn =
+bbb.mainToolbar.shortcutBtn.toolTip =
+bbb.mainToolbar.recordBtn.toolTip.start =
+bbb.mainToolbar.recordBtn.toolTip.stop =
+bbb.mainToolbar.recordBtn.toolTip.recording =
+bbb.mainToolbar.recordBtn.toolTip.notRecording =
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
+bbb.mainToolbar.recordBtn.confirm.title =
+bbb.mainToolbar.recordBtn.confirm.message.start =
+bbb.mainToolbar.recordBtn.confirm.message.stop =
+bbb.mainToolbar.recordBtn.notification.title =
+bbb.mainToolbar.recordBtn.notification.message1 =
+bbb.mainToolbar.recordBtn.notification.message2 =
+bbb.mainToolbar.recordingLabel.recording =
+bbb.mainToolbar.recordingLabel.notRecording =
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
+bbb.clientstatus.close =
+bbb.clientstatus.tunneling.title =
+bbb.clientstatus.tunneling.message =
+bbb.clientstatus.browser.title =
+bbb.clientstatus.browser.message =
+bbb.clientstatus.flash.title =
+bbb.clientstatus.flash.message =
+bbb.clientstatus.webrtc.title =
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
+bbb.window.minimizeBtn.toolTip =
+bbb.window.maximizeRestoreBtn.toolTip =
+bbb.window.closeBtn.toolTip =
+bbb.videoDock.titleBar =
+bbb.presentation.titleBar =
+bbb.chat.titleBar =
+bbb.users.title =
+bbb.users.titleBar =
+bbb.users.quickLink.label =
+bbb.users.minimizeBtn.accessibilityName =
+bbb.users.maximizeRestoreBtn.accessibilityName =
+bbb.users.settings.buttonTooltip =
+bbb.users.settings.audioSettings =
+bbb.users.settings.webcamSettings =
+bbb.users.settings.muteAll =
+bbb.users.settings.muteAllExcept =
+bbb.users.settings.unmuteAll =
+bbb.users.settings.clearAllStatus =
+bbb.users.emojiStatusBtn.toolTip =
+bbb.users.roomMuted.text =
+bbb.users.roomLocked.text =
+bbb.users.pushToTalk.toolTip =
+bbb.users.pushToMute.toolTip =
+bbb.users.muteMeBtnTxt.talk =
+bbb.users.muteMeBtnTxt.mute =
+bbb.users.muteMeBtnTxt.muted =
+bbb.users.usersGrid.contextmenu.exportusers =
+bbb.users.usersGrid.accessibilityName =
+bbb.users.usersGrid.nameItemRenderer =
+bbb.users.usersGrid.nameItemRenderer.youIdentifier =
+bbb.users.usersGrid.statusItemRenderer =
+bbb.users.usersGrid.statusItemRenderer.changePresenter =
+bbb.users.usersGrid.statusItemRenderer.presenter =
+bbb.users.usersGrid.statusItemRenderer.moderator =
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
+bbb.users.usersGrid.statusItemRenderer.clearStatus =
+bbb.users.usersGrid.statusItemRenderer.viewer =
+bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip =
+bbb.users.usersGrid.statusItemRenderer.presIcon.toolTip =
+bbb.users.usersGrid.mediaItemRenderer =
+bbb.users.usersGrid.mediaItemRenderer.talking =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.webcamBtn =
+bbb.users.usersGrid.mediaItemRenderer.pushToTalk =
+bbb.users.usersGrid.mediaItemRenderer.pushToMute =
+bbb.users.usersGrid.mediaItemRenderer.pushToLock =
+bbb.users.usersGrid.mediaItemRenderer.pushToUnlock =
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
+bbb.users.usersGrid.mediaItemRenderer.webcam =
+bbb.users.usersGrid.mediaItemRenderer.micOff =
+bbb.users.usersGrid.mediaItemRenderer.micOn =
+bbb.users.usersGrid.mediaItemRenderer.noAudio =
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
+bbb.users.emojiStatus.clear =
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
+bbb.presentation.title =
+bbb.presentation.titleWithPres =
+bbb.presentation.quickLink.label =
+bbb.presentation.fitToWidth.toolTip =
+bbb.presentation.fitToPage.toolTip =
+bbb.presentation.uploadPresBtn.toolTip =
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
+bbb.presentation.backBtn.toolTip =
+bbb.presentation.btnSlideNum.accessibilityName =
+bbb.presentation.btnSlideNum.toolTip =
+bbb.presentation.forwardBtn.toolTip =
+bbb.presentation.maxUploadFileExceededAlert =
+bbb.presentation.uploadcomplete =
+bbb.presentation.uploaded =
+bbb.presentation.document.supported =
+bbb.presentation.document.converted =
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
+bbb.presentation.error.io =
+bbb.presentation.error.security =
+bbb.presentation.error.convert.notsupported =
+bbb.presentation.error.convert.nbpage =
+bbb.presentation.error.convert.maxnbpagereach =
+bbb.presentation.converted =
+bbb.presentation.slider =
+bbb.presentation.slideloader.starttext =
+bbb.presentation.slideloader.endtext =
+bbb.presentation.uploadwindow.presentationfile =
+bbb.presentation.uploadwindow.pdf =
+bbb.presentation.uploadwindow.word =
+bbb.presentation.uploadwindow.excel =
+bbb.presentation.uploadwindow.powerpoint =
+bbb.presentation.uploadwindow.image =
+bbb.presentation.minimizeBtn.accessibilityName =
+bbb.presentation.maximizeRestoreBtn.accessibilityName =
+bbb.presentation.closeBtn.accessibilityName =
+bbb.fileupload.title =
+bbb.fileupload.lblFileName.defaultText =
+bbb.fileupload.selectBtn.label =
+bbb.fileupload.selectBtn.toolTip =
+bbb.fileupload.uploadBtn =
+bbb.fileupload.uploadBtn.toolTip =
+bbb.fileupload.deleteBtn.toolTip =
+bbb.fileupload.showBtn =
+bbb.fileupload.retry =
+bbb.fileupload.showBtn.toolTip =
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
+bbb.fileupload.genThumbText =
+bbb.fileupload.progBarLbl =
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
+bbb.chat.title =
+bbb.chat.quickLink.label =
+bbb.chat.cmpColorPicker.toolTip =
+bbb.chat.input.accessibilityName =
+bbb.chat.sendBtn.toolTip =
+bbb.chat.sendBtn.accessibilityName =
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
+bbb.chat.contextmenu.copyalltext =
+bbb.chat.publicChatUsername =
+bbb.chat.optionsTabName =
+bbb.chat.privateChatSelect =
+bbb.chat.private.userLeft =
+bbb.chat.private.userJoined =
+bbb.chat.private.closeMessage =
+bbb.chat.usersList.toolTip =
+bbb.chat.usersList.accessibilityName =
+bbb.chat.chatOptions =
+bbb.chat.fontSize =
+bbb.chat.cmbFontSize.toolTip =
+bbb.chat.messageList =
+bbb.chat.minimizeBtn.accessibilityName =
+bbb.chat.maximizeRestoreBtn.accessibilityName =
+bbb.chat.closeBtn.accessibilityName =
+bbb.chat.chatTabs.accessibleNotice =
+bbb.chat.chatMessage.systemMessage =
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
+bbb.publishVideo.changeCameraBtn.labelText =
+bbb.publishVideo.changeCameraBtn.toolTip =
+bbb.publishVideo.cmbResolution.tooltip =
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.startPublishBtn.toolTip =
+bbb.publishVideo.startPublishBtn.errorName =
+bbb.webcamPermissions.chrome.title =
+bbb.webcamPermissions.chrome.message =
+bbb.videodock.title =
+bbb.videodock.quickLink.label =
+bbb.video.minimizeBtn.accessibilityName =
+bbb.video.maximizeRestoreBtn.accessibilityName =
+bbb.video.controls.muteButton.toolTip =
+bbb.video.controls.switchPresenter.toolTip =
+bbb.video.controls.ejectUserBtn.toolTip =
+bbb.video.controls.privateChatBtn.toolTip =
+bbb.video.publish.hint.noCamera =
+bbb.video.publish.hint.cantOpenCamera =
+bbb.video.publish.hint.waitingApproval =
+bbb.video.publish.hint.videoPreview =
+bbb.video.publish.hint.openingCamera =
+bbb.video.publish.hint.cameraDenied =
+bbb.video.publish.hint.cameraIsBeingUsed =
+bbb.video.publish.hint.publishing =
+bbb.video.publish.closeBtn.accessName =
+bbb.video.publish.closeBtn.label =
+bbb.video.publish.titleBar =
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
+bbb.screensharePublish.maximizeRestoreBtn.toolTip =
+bbb.screensharePublish.closeBtn.toolTip =
+bbb.screensharePublish.closeBtn.accessibilityName =
+bbb.screensharePublish.minimizeBtn.toolTip =
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
-bbb.toolbar.phone.toolTip.mute = Stop listening the conference
-bbb.toolbar.phone.toolTip.unmute = Start listening the conference
-bbb.toolbar.phone.toolTip.nomic = No microphone detected
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
-bbb.toolbar.video.toolTip.start = Share Your Webcam
-bbb.toolbar.video.toolTip.stop = Stop Sharing Your Webcam
-bbb.layout.addButton.toolTip = Add the custom layout to the list
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
-bbb.layout.combo.toolTip = Change Your Layout
-bbb.layout.loadButton.toolTip = Load layouts from a file
-bbb.layout.saveButton.toolTip = Save layouts to a file
-bbb.layout.lockButton.toolTip = Lock layout
-bbb.layout.combo.prompt = Apply a layout
-bbb.layout.combo.custom = * Custom layout
-bbb.layout.combo.customName = Custom layout
-bbb.layout.combo.remote = Remote
-bbb.layout.window.name = Layout name
-bbb.layout.save.complete = Layouts were successfully saved
-bbb.layout.load.complete = Layouts were successfully loaded
-bbb.layout.load.failed = Unable to load the layouts
-bbb.layout.sync = Your layout has been sent to all participants
-bbb.layout.name.defaultlayout = Default Layout
-bbb.layout.name.closedcaption = Closed Caption
-bbb.layout.name.videochat = Video Chat
-bbb.layout.name.webcamsfocus = Webcam Meeting
-bbb.layout.name.presentfocus = Presentation Meeting
-bbb.layout.name.presentandusers = Presentation + Users
-bbb.layout.name.lectureassistant = Lecture Assistant
-bbb.layout.name.lecture = Lecture
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
-bbb.highlighter.toolbar.pencil = Pencil
-bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
-bbb.highlighter.toolbar.ellipse = Circle
-bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
-bbb.highlighter.toolbar.rectangle = Rectangle
-bbb.highlighter.toolbar.rectangle.accessibilityName = Switch whiteboard cursor to rectangle
-bbb.highlighter.toolbar.panzoom = Pan and Zoom
-bbb.highlighter.toolbar.panzoom.accessibilityName = Switch whiteboard cursor to pan and zoom
-bbb.highlighter.toolbar.clear = Clear All Annotations
-bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
-bbb.highlighter.toolbar.undo = Undo Annotation
-bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
-bbb.highlighter.toolbar.color = Select Color
-bbb.highlighter.toolbar.color.accessibilityName = Whiteboard mark draw color
-bbb.highlighter.toolbar.thickness = Change Thickness
-bbb.highlighter.toolbar.thickness.accessibilityName = Whiteboard draw thickness
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = Logged Out
-bbb.logout.button.label = OK
-bbb.logout.appshutdown = The server app has been shut down
-bbb.logout.asyncerror = An Async Error occured
-bbb.logout.connectionclosed = The connection to the server has been closed
-bbb.logout.connectionfailed = The connection to the server has ended
-bbb.logout.rejected = The connection to the server has been rejected
-bbb.logout.invalidapp = The red5 app does not exist
-bbb.logout.unknown = Your client has lost connection with the server
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
-bbb.logout.usercommand = You have logged out of the conference
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
-bbb.logout.refresh.message = If this logout was unexpected click the button below to reconnect.
-bbb.logout.refresh.label = Reconnect
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
-bbb.logout.confirm.title = Confirm Logout
-bbb.logout.confirm.message = Are you sure you want to log out?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
-bbb.logout.confirm.yes = Yes
-bbb.logout.confirm.no = No
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
-bbb.connection.reconnecting=Reconnecting
-bbb.connection.reestablished=Connection reestablished
-bbb.connection.bigbluebutton=BigBlueButton
-bbb.connection.sip=SIP
-bbb.connection.video=Video
-bbb.connection.deskshare=Deskshare
-bbb.notes.title = Notes
-bbb.notes.cmpColorPicker.toolTip = Text Color
-bbb.notes.saveBtn = Save
-bbb.notes.saveBtn.toolTip = Save Note
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
-bbb.settings.deskshare.instructions = Choose Allow on the prompt that pops up to check that desktop sharing is working properly for you
-bbb.settings.deskshare.start = Check Desktop Sharing
-bbb.settings.voice.volume = Microphone Activity
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
-bbb.settings.flash.label = Flash version error
-bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. The button below will install the newest Adobe Flash version.
-bbb.settings.flash.command = Install newest Flash
-bbb.settings.isight.label = iSight webcam error
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
-bbb.settings.isight.command = Install Flash 10.2 RC2
-bbb.settings.warning.label = Warning
-bbb.settings.warning.close = Close this Warning
-bbb.settings.noissues = No outstanding issues have been detected.
-bbb.settings.instructions = Accept the Flash prompt that asks you for webcam permissions. If the output matches what is expected, your browser has been set up correctly. Other potentials issues are below. Examine them to find a possible solution.
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
-ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
-ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
-ltbcustom.bbb.highlighter.toolbar.line = Line
-ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
-ltbcustom.bbb.highlighter.toolbar.text = Text
-ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
-ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Text color
-ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
+bbb.toolbar.phone.toolTip.mute =
+bbb.toolbar.phone.toolTip.unmute =
+bbb.toolbar.phone.toolTip.nomic =
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
+bbb.toolbar.video.toolTip.start =
+bbb.toolbar.video.toolTip.stop =
+bbb.layout.addButton.label =
+bbb.layout.addButton.toolTip =
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
+bbb.layout.combo.toolTip =
+bbb.layout.loadButton.toolTip =
+bbb.layout.saveButton.toolTip =
+bbb.layout.lockButton.toolTip =
+bbb.layout.combo.prompt =
+bbb.layout.combo.custom =
+bbb.layout.combo.customName =
+bbb.layout.combo.remote =
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
+bbb.layout.save.complete =
+bbb.layout.save.ioerror =
+bbb.layout.load.complete =
+bbb.layout.load.failed =
+bbb.layout.sync =
+bbb.layout.name.defaultlayout =
+bbb.layout.name.closedcaption =
+bbb.layout.name.videochat =
+bbb.layout.name.webcamsfocus =
+bbb.layout.name.presentfocus =
+bbb.layout.name.presentandusers =
+bbb.layout.name.lectureassistant =
+bbb.layout.name.lecture =
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
+bbb.highlighter.toolbar.pencil =
+bbb.highlighter.toolbar.pencil.accessibilityName =
+bbb.highlighter.toolbar.ellipse =
+bbb.highlighter.toolbar.ellipse.accessibilityName =
+bbb.highlighter.toolbar.rectangle =
+bbb.highlighter.toolbar.rectangle.accessibilityName =
+bbb.highlighter.toolbar.panzoom =
+bbb.highlighter.toolbar.panzoom.accessibilityName =
+bbb.highlighter.toolbar.clear =
+bbb.highlighter.toolbar.clear.accessibilityName =
+bbb.highlighter.toolbar.undo =
+bbb.highlighter.toolbar.undo.accessibilityName =
+bbb.highlighter.toolbar.color =
+bbb.highlighter.toolbar.color.accessibilityName =
+bbb.highlighter.toolbar.thickness =
+bbb.highlighter.toolbar.thickness.accessibilityName =
+bbb.highlighter.toolbar.multiuser =
+bbb.logout.button.label =
+bbb.logout.appshutdown =
+bbb.logout.asyncerror =
+bbb.logout.connectionclosed =
+bbb.logout.connectionfailed =
+bbb.logout.rejected =
+bbb.logout.invalidapp =
+bbb.logout.unknown =
+bbb.logout.guestkickedout =
+bbb.logout.usercommand =
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
+bbb.logout.refresh.message =
+bbb.logout.refresh.label =
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
+bbb.logout.confirm.title =
+bbb.logout.confirm.message =
+bbb.logout.confirm.endMeeting =
+bbb.logout.confirm.yes =
+bbb.logout.confirm.no =
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
+bbb.connection.reconnecting=
+bbb.connection.reestablished=
+bbb.connection.bigbluebutton=
+bbb.connection.sip=
+bbb.connection.video=
+bbb.connection.deskshare=
+bbb.notes.title =
+bbb.notes.cmpColorPicker.toolTip =
+bbb.notes.saveBtn =
+bbb.notes.saveBtn.toolTip =
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
+bbb.settings.deskshare.instructions =
+bbb.settings.deskshare.start =
+bbb.settings.voice.volume =
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
+bbb.settings.flash.label =
+bbb.settings.flash.text =
+bbb.settings.flash.command =
+bbb.settings.isight.label =
+bbb.settings.isight.text =
+bbb.settings.isight.command =
+bbb.settings.warning.label =
+bbb.settings.warning.close =
+bbb.settings.noissues =
+bbb.settings.instructions =
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
+ltbcustom.bbb.highlighter.toolbar.triangle =
+ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.line =
+ltbcustom.bbb.highlighter.toolbar.line.accessibilityName =
+ltbcustom.bbb.highlighter.toolbar.text =
+ltbcustom.bbb.highlighter.toolbar.text.accessibilityName =
+ltbcustom.bbb.highlighter.texttoolbar.textColorPicker =
+ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu =
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
-bbb.accessibility.clientReady = Ready
+bbb.accessibility.clientReady =
-bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
-bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
-bbb.accessibility.chat.chatBox.navigatedFirst = You have navigated to the first message.
-bbb.accessibility.chat.chatBox.navigatedLatest = You have navigated to the latest message.
-bbb.accessibility.chat.chatBox.navigatedLatestRead = You have navigated to the most recent message you have read.
-bbb.accessibility.chat.chatwindow.input = Chat input
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
-bbb.accessibility.chat.initialDescription = Please use the arrow keys to navigate through chat messages.
+bbb.accessibility.chat.chatBox.reachedFirst =
+bbb.accessibility.chat.chatBox.reachedLatest =
+bbb.accessibility.chat.chatBox.navigatedFirst =
+bbb.accessibility.chat.chatBox.navigatedLatest =
+bbb.accessibility.chat.chatBox.navigatedLatestRead =
+bbb.accessibility.chat.chatwindow.input =
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
+bbb.accessibility.chat.initialDescription =
-bbb.accessibility.notes.notesview.input = Notes input
+bbb.accessibility.notes.notesview.input =
-bbb.shortcuthelp.title = Shortcut Keys
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
-bbb.shortcuthelp.minimizeBtn.accessibilityName = Minimize the Shortcut Help Window
-bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = Maximize the Shortcut Help Window
-bbb.shortcuthelp.closeBtn.accessibilityName = Close the Shortcut Help Window
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
-bbb.shortcuthelp.dropdown.general = Global shortcuts
-bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
-bbb.shortcuthelp.dropdown.chat = Chat shortcuts
-bbb.shortcuthelp.dropdown.users = Users shortcuts
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
-bbb.shortcuthelp.headers.shortcut = Shortcut
-bbb.shortcuthelp.headers.function = Function
+bbb.shortcuthelp.title =
+bbb.shortcuthelp.titleBar =
+bbb.shortcuthelp.minimizeBtn.accessibilityName =
+bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName =
+bbb.shortcuthelp.closeBtn.accessibilityName =
+bbb.shortcuthelp.dropdown.accessibilityName =
+bbb.shortcuthelp.dropdown.general =
+bbb.shortcuthelp.dropdown.presentation =
+bbb.shortcuthelp.dropdown.chat =
+bbb.shortcuthelp.dropdown.users =
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
+bbb.shortcuthelp.headers.shortcut =
+bbb.shortcuthelp.headers.function =
-bbb.shortcutkey.general.minimize = 189
-bbb.shortcutkey.general.minimize.function = Minimize current window
-bbb.shortcutkey.general.maximize = 187
-bbb.shortcutkey.general.maximize.function = Maximize current window
+bbb.shortcutkey.general.minimize =
+bbb.shortcutkey.general.minimize.function =
+bbb.shortcutkey.general.maximize =
+bbb.shortcutkey.general.maximize.function =
-bbb.shortcutkey.flash.exit = 79
-bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
-bbb.shortcutkey.users.muteme = 77
-bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
-bbb.shortcutkey.chat.chatinput = 73
-bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
-bbb.shortcutkey.present.focusslide = 67
-bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
-bbb.shortcutkey.whiteboard.undo = 90
-bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
+bbb.shortcutkey.flash.exit =
+bbb.shortcutkey.flash.exit.function =
+bbb.shortcutkey.users.muteme =
+bbb.shortcutkey.users.muteme.function =
+bbb.shortcutkey.chat.chatinput =
+bbb.shortcutkey.chat.chatinput.function =
+bbb.shortcutkey.present.focusslide =
+bbb.shortcutkey.present.focusslide.function =
+bbb.shortcutkey.whiteboard.undo =
+bbb.shortcutkey.whiteboard.undo.function =
-bbb.shortcutkey.focus.users = 49
-bbb.shortcutkey.focus.users.function = Move focus to the Users window
-bbb.shortcutkey.focus.video = 50
-bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
-bbb.shortcutkey.focus.presentation = 51
-bbb.shortcutkey.focus.presentation.function = Move focus to the Presentation window
-bbb.shortcutkey.focus.chat = 52
-bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.users =
+bbb.shortcutkey.focus.users.function =
+bbb.shortcutkey.focus.video =
+bbb.shortcutkey.focus.video.function =
+bbb.shortcutkey.focus.presentation =
+bbb.shortcutkey.focus.presentation.function =
+bbb.shortcutkey.focus.chat =
+bbb.shortcutkey.focus.chat.function =
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
-bbb.shortcutkey.share.desktop = 68
-bbb.shortcutkey.share.desktop.function = Open desktop sharing window
-bbb.shortcutkey.share.webcam = 66
-bbb.shortcutkey.share.webcam.function = Open webcam sharing window
+bbb.shortcutkey.share.desktop =
+bbb.shortcutkey.share.desktop.function =
+bbb.shortcutkey.share.webcam =
+bbb.shortcutkey.share.webcam.function =
-bbb.shortcutkey.shortcutWindow = 72
-bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
-bbb.shortcutkey.logout = 76
-bbb.shortcutkey.logout.function = Log out of this meeting
-bbb.shortcutkey.raiseHand = 82
-bbb.shortcutkey.raiseHand.function = Raise your hand
+bbb.shortcutkey.shortcutWindow =
+bbb.shortcutkey.shortcutWindow.function =
+bbb.shortcutkey.logout =
+bbb.shortcutkey.logout.function =
+bbb.shortcutkey.raiseHand =
+bbb.shortcutkey.raiseHand.function =
-bbb.shortcutkey.present.upload = 89
-bbb.shortcutkey.present.upload.function = Upload presentation
-bbb.shortcutkey.present.previous = 65
-bbb.shortcutkey.present.previous.function = Go to previous slide
-bbb.shortcutkey.present.select = 83
-bbb.shortcutkey.present.select.function = View all slides
-bbb.shortcutkey.present.next = 69
-bbb.shortcutkey.present.next.function = Go to next slide
-bbb.shortcutkey.present.fitWidth = 70
-bbb.shortcutkey.present.fitWidth.function = Fit slides to width
-bbb.shortcutkey.present.fitPage = 82
-bbb.shortcutkey.present.fitPage.function = Fit slides to page
+bbb.shortcutkey.present.upload =
+bbb.shortcutkey.present.upload.function =
+bbb.shortcutkey.present.previous =
+bbb.shortcutkey.present.previous.function =
+bbb.shortcutkey.present.select =
+bbb.shortcutkey.present.select.function =
+bbb.shortcutkey.present.next =
+bbb.shortcutkey.present.next.function =
+bbb.shortcutkey.present.fitWidth =
+bbb.shortcutkey.present.fitWidth.function =
+bbb.shortcutkey.present.fitPage =
+bbb.shortcutkey.present.fitPage.function =
-bbb.shortcutkey.users.makePresenter = 89
-bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
-bbb.shortcutkey.users.mute = 83
-bbb.shortcutkey.users.mute.function = Mute or unmute selected person
-bbb.shortcutkey.users.muteall = 65
-bbb.shortcutkey.users.muteall.function = Mute or unmute all users
-bbb.shortcutkey.users.muteAllButPres = 65
-bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.makePresenter =
+bbb.shortcutkey.users.makePresenter.function =
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
+bbb.shortcutkey.users.mute =
+bbb.shortcutkey.users.mute.function =
+bbb.shortcutkey.users.muteall =
+bbb.shortcutkey.users.muteall.function =
+bbb.shortcutkey.users.muteAllButPres =
+bbb.shortcutkey.users.muteAllButPres.function =
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
-bbb.shortcutkey.chat.focusTabs = 89
-bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
-bbb.shortcutkey.chat.changeColour = 67
-bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
-bbb.shortcutkey.chat.sendMessage = 83
-bbb.shortcutkey.chat.sendMessage.function = Send chat message
-bbb.shortcutkey.chat.closePrivate = 69
-bbb.shortcutkey.chat.closePrivate.function = Close private chat tab
-bbb.shortcutkey.chat.explanation = ----
-bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
+bbb.shortcutkey.chat.focusTabs =
+bbb.shortcutkey.chat.focusTabs.function =
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
+bbb.shortcutkey.chat.changeColour =
+bbb.shortcutkey.chat.changeColour.function =
+bbb.shortcutkey.chat.sendMessage =
+bbb.shortcutkey.chat.sendMessage.function =
+bbb.shortcutkey.chat.closePrivate =
+bbb.shortcutkey.chat.closePrivate.function =
+bbb.shortcutkey.chat.explanation =
+bbb.shortcutkey.chat.explanation.function =
-bbb.shortcutkey.chat.chatbox.advance = 40
-bbb.shortcutkey.chat.chatbox.advance.function = Navigate to the next message
-bbb.shortcutkey.chat.chatbox.goback = 38
-bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
-bbb.shortcutkey.chat.chatbox.repeat = 32
-bbb.shortcutkey.chat.chatbox.repeat.function = Repeat current message
-bbb.shortcutkey.chat.chatbox.golatest = 39
-bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
-bbb.shortcutkey.chat.chatbox.gofirst = 37
-bbb.shortcutkey.chat.chatbox.gofirst.function = Navigate to the first message
-bbb.shortcutkey.chat.chatbox.goread = 75
-bbb.shortcutkey.chat.chatbox.goread.function = Navigate to the most recent message you've read
-bbb.shortcutkey.chat.chatbox.debug = 71
-bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
+bbb.shortcutkey.chat.chatbox.advance =
+bbb.shortcutkey.chat.chatbox.advance.function =
+bbb.shortcutkey.chat.chatbox.goback =
+bbb.shortcutkey.chat.chatbox.goback.function =
+bbb.shortcutkey.chat.chatbox.repeat =
+bbb.shortcutkey.chat.chatbox.repeat.function =
+bbb.shortcutkey.chat.chatbox.golatest =
+bbb.shortcutkey.chat.chatbox.golatest.function =
+bbb.shortcutkey.chat.chatbox.gofirst =
+bbb.shortcutkey.chat.chatbox.gofirst.function =
+bbb.shortcutkey.chat.chatbox.goread =
+bbb.shortcutkey.chat.chatbox.goread.function =
+bbb.shortcutkey.chat.chatbox.debug =
+bbb.shortcutkey.chat.chatbox.debug.function =
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
-bbb.polling.startButton.tooltip = Start a poll
-bbb.polling.startButton.label = Start Poll
-bbb.polling.publishButton.label = Publish
-bbb.polling.closeButton.label = Close
-bbb.polling.customPollOption.label = Custom Poll...
-bbb.polling.pollModal.title = Live Poll Results
-bbb.polling.customChoices.title = Enter Polling Choices
-bbb.polling.respondersLabel.novotes = Waiting for responses
-bbb.polling.respondersLabel.text = {0} Users Responded
-bbb.polling.respondersLabel.finished = Done
-bbb.polling.answer.Yes = Yes
-bbb.polling.answer.No = No
-bbb.polling.answer.True = True
-bbb.polling.answer.False = False
-bbb.polling.answer.A = A
-bbb.polling.answer.B = B
-bbb.polling.answer.C = C
-bbb.polling.answer.D = D
-bbb.polling.answer.E = E
-bbb.polling.answer.F = F
-bbb.polling.answer.G = G
-bbb.polling.results.accessible.header = Poll Results.
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.startButton.tooltip =
+bbb.polling.startButton.label =
+bbb.polling.publishButton.label =
+bbb.polling.closeButton.label =
+bbb.polling.customPollOption.label =
+bbb.polling.pollModal.title =
+bbb.polling.pollModal.hint =
+bbb.polling.customChoices.title =
+bbb.polling.respondersLabel.novotes =
+bbb.polling.respondersLabel.text =
+bbb.polling.respondersLabel.finished =
+bbb.polling.answer.Yes =
+bbb.polling.answer.No =
+bbb.polling.answer.True =
+bbb.polling.answer.False =
+bbb.polling.answer.A =
+bbb.polling.answer.B =
+bbb.polling.answer.C =
+bbb.polling.answer.D =
+bbb.polling.answer.E =
+bbb.polling.answer.F =
+bbb.polling.answer.G =
+bbb.polling.results.accessible.header =
+bbb.polling.results.accessible.answer =
-bbb.publishVideo.startPublishBtn.labelText = Start Sharing
-bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
+bbb.publishVideo.startPublishBtn.labelText =
+bbb.publishVideo.changeCameraBtn.labelText =
-bbb.accessibility.alerts.madePresenter = You are now the Presenter.
-bbb.accessibility.alerts.madeViewer = You are now a Viewer.
+bbb.accessibility.alerts.madePresenter =
+bbb.accessibility.alerts.madeViewer =
-bbb.shortcutkey.specialKeys.space = Spacebar
-bbb.shortcutkey.specialKeys.left = Left Arrow
-bbb.shortcutkey.specialKeys.right = Right Arrow
-bbb.shortcutkey.specialKeys.up = Up Arrow
-bbb.shortcutkey.specialKeys.down = Down Arrow
-bbb.shortcutkey.specialKeys.plus = Plus
-bbb.shortcutkey.specialKeys.minus = Minus
+bbb.shortcutkey.specialKeys.space =
+bbb.shortcutkey.specialKeys.left =
+bbb.shortcutkey.specialKeys.right =
+bbb.shortcutkey.specialKeys.up =
+bbb.shortcutkey.specialKeys.down =
+bbb.shortcutkey.specialKeys.plus =
+bbb.shortcutkey.specialKeys.minus =
-bbb.toolbar.videodock.toolTip.closeAllVideos = Close all videos
-bbb.users.settings.lockAll = Lock All Users
-bbb.users.settings.lockAllExcept = Lock Users Except Presenter
-bbb.users.settings.lockSettings = Lock Viewers ...
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
-bbb.users.settings.unlockAll = Unlock All Viewers
-bbb.users.settings.roomIsLocked = Locked by default
-bbb.users.settings.roomIsMuted = Muted by default
+bbb.toolbar.videodock.toolTip.closeAllVideos =
+bbb.users.settings.lockAll =
+bbb.users.settings.lockAllExcept =
+bbb.users.settings.lockSettings =
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
+bbb.users.settings.unlockAll =
+bbb.users.settings.roomIsLocked =
+bbb.users.settings.roomIsMuted =
-bbb.lockSettings.save = Apply
-bbb.lockSettings.save.tooltip = Apply lock settings
-bbb.lockSettings.cancel = Cancel
-bbb.lockSettings.cancel.toolTip = Close this window without saving
+bbb.lockSettings.save =
+bbb.lockSettings.save.tooltip =
+bbb.lockSettings.cancel =
+bbb.lockSettings.cancel.toolTip =
-bbb.lockSettings.moderatorLocking = Moderator locking
-bbb.lockSettings.privateChat = Private Chat
-bbb.lockSettings.publicChat = Public Chat
-bbb.lockSettings.webcam = Webcam
-bbb.lockSettings.microphone = Microphone
-bbb.lockSettings.layout = Layout
-bbb.lockSettings.title=Lock Viewers
-bbb.lockSettings.feature=Feature
-bbb.lockSettings.locked=Locked
-bbb.lockSettings.lockOnJoin=Lock On Join
+bbb.lockSettings.hint =
+bbb.lockSettings.moderatorLocking =
+bbb.lockSettings.privateChat =
+bbb.lockSettings.publicChat =
+bbb.lockSettings.webcam =
+bbb.lockSettings.webcamsOnlyForModerator =
+bbb.lockSettings.microphone =
+bbb.lockSettings.layout =
+bbb.lockSettings.title=
+bbb.lockSettings.feature=
+bbb.lockSettings.locked=
+bbb.lockSettings.lockOnJoin=
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
-bbb.users.breakout.close = Close
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
+bbb.users.breakout.close =
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/zh_CN/bbbResources.properties b/bigbluebutton-client/locale/zh_CN/bbbResources.properties
index ff566bc81343..2032cf79b26d 100644
--- a/bigbluebutton-client/locale/zh_CN/bbbResources.properties
+++ b/bigbluebutton-client/locale/zh_CN/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = 正在连接到服务器
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = 抱歉,无法连接到服务器。
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = 打开日志
bbb.mainshell.meetingNotFound = 没有找到会话
bbb.mainshell.invalidAuthToken = 无效的认证码
bbb.mainshell.resetLayoutBtn.toolTip = 布局重置
bbb.mainshell.notification.tunnelling = 音频传输
bbb.mainshell.notification.webrtc = WebRTC语音
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = 您可能正在使用旧版的 BigBlueButton 界面翻译。
bbb.oldlocalewindow.reminder2 = 请清空浏览器缓存并重试。
bbb.oldlocalewindow.windowTitle = 警告: 旧的语言文件!
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = 连接
bbb.micSettings.webrtc.transferring = 传输中
bbb.micSettings.webrtc.endingecho = 加入语音
bbb.micSettings.webrtc.endedecho = 回音测试已结束
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = Firefox麦克风允许
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = 允许Chrome 浏览器麦克风
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = 语音警告
bbb.micWarning.joinBtn.label = 加入
bbb.micWarning.testAgain.label = 再次测试
@@ -88,19 +89,19 @@ bbb.webrtcWarning.failedError.1009 = 错误1009:无法获取STUN/TURN服务器
bbb.webrtcWarning.failedError.1010 = 错误1010:ICE协议超时
bbb.webrtcWarning.failedError.1011 = 错误1011:ICE收集超时了
bbb.webrtcWarning.failedError.unknown = 错误 {0}: 未知的错误代码
-bbb.webrtcWarning.failedError.mediamissing = Could not get your microphone for a WebRTC call
-bbb.webrtcWarning.failedError.endedunexpectedly = The WebRTC echo test ended unexpectedly
+bbb.webrtcWarning.failedError.mediamissing =
+bbb.webrtcWarning.failedError.endedunexpectedly =
bbb.webrtcWarning.connection.dropped = 放弃WebRTC连接
bbb.webrtcWarning.connection.reconnecting = 重新连接尝试中
bbb.webrtcWarning.connection.reestablished = WebRTC连接重新建立
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = 帮助
bbb.mainToolbar.logoutBtn = 退出
bbb.mainToolbar.logoutBtn.toolTip = 登出
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = 选择语言
bbb.mainToolbar.settingsBtn = 设置
bbb.mainToolbar.settingsBtn.toolTip = 开启选项
@@ -110,50 +111,50 @@ bbb.mainToolbar.recordBtn.toolTip.start = 开始录制
bbb.mainToolbar.recordBtn.toolTip.stop = 停止录制
bbb.mainToolbar.recordBtn.toolTip.recording = 该课程已被录制
bbb.mainToolbar.recordBtn.toolTip.notRecording = 该课程没有录制
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = 确认录制
bbb.mainToolbar.recordBtn.confirm.message.start = 您确定要开始录制课程吗?
bbb.mainToolbar.recordBtn.confirm.message.stop = 您确定要停止录制课程吗?
-bbb.mainToolbar.recordBtn..notification.title = 记录通知
-bbb.mainToolbar.recordBtn..notification.message1 = 您可以录制该语音会话
-bbb.mainToolbar.recordBtn..notification.message2 = 您需要点击任务栏上的“开始/停止录制”来开始/停止录制
+bbb.mainToolbar.recordBtn.notification.title = 记录通知
+bbb.mainToolbar.recordBtn.notification.message1 = 您可以录制该语音会话
+bbb.mainToolbar.recordBtn.notification.message2 = 您需要点击任务栏上的“开始/停止录制”来开始/停止录制
bbb.mainToolbar.recordingLabel.recording = (录制中)
bbb.mainToolbar.recordingLabel.notRecording = 没有录制
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
-bbb.clientstatus.title = Configuration Notifications
-bbb.clientstatus.notification = Unread notifications
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
+bbb.clientstatus.title =
+bbb.clientstatus.notification =
bbb.clientstatus.close = 关闭
bbb.clientstatus.tunneling.title = 防火墙
-bbb.clientstatus.tunneling.message = A firewall is preventing your client from connecting directly on port 1935 to the remote server. Recommend joining a less restrictive network for a more stable connection
+bbb.clientstatus.tunneling.message =
bbb.clientstatus.browser.title = 浏览器版本
-bbb.clientstatus.browser.message = Your browser ({0}) is not up-to-date. Recommend updating to the latest version.
+bbb.clientstatus.browser.message =
bbb.clientstatus.flash.title = Flash播放器
bbb.clientstatus.flash.message = 您的Flash播放器插件({0}) 已经过时。请更新到最新版本。
bbb.clientstatus.webrtc.title = 音频
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
-bbb.clientstatus.webrtc.message = Recommend using either Firefox or Chrome for better audio.
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
+bbb.clientstatus.webrtc.message =
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = 最小化
bbb.window.maximizeRestoreBtn.toolTip = 最大化
bbb.window.closeBtn.toolTip = 关闭
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = 状态
bbb.users.usersGrid.statusItemRenderer.changePresenter = 点击来设置演讲者
bbb.users.usersGrid.statusItemRenderer.presenter = 演讲者
bbb.users.usersGrid.statusItemRenderer.moderator = 管理者
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = 清除状态
bbb.users.usersGrid.statusItemRenderer.viewer = 观众
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = 摄像头共享中。
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = 单击解除用户静音
bbb.users.usersGrid.mediaItemRenderer.pushToMute = 单击将用户话筒设为静音
bbb.users.usersGrid.mediaItemRenderer.pushToLock = 锁定 {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = 解锁 {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = 弹出{0}
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = 摄像头共享
bbb.users.usersGrid.mediaItemRenderer.micOff = 关闭麦克风
bbb.users.usersGrid.mediaItemRenderer.micOn = 打开麦克风
bbb.users.usersGrid.mediaItemRenderer.noAudio = 不在音频会议中
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = 清除
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
bbb.users.emojiStatus.thumbsUp = 赞成
bbb.users.emojiStatus.thumbsDown = 不赞成
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = 演示
bbb.presentation.titleWithPres = 演示文档:{0}
bbb.presentation.quickLink.label = 演示窗口
bbb.presentation.fitToWidth.toolTip = 按屏幕宽度显示演讲稿
bbb.presentation.fitToPage.toolTip = 显示整页演讲稿
bbb.presentation.uploadPresBtn.toolTip = 上传演讲
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = 上一个幻灯片
bbb.presentation.btnSlideNum.accessibilityName = 第{0}页,共 {1}页
bbb.presentation.btnSlideNum.toolTip = 选择一个幻灯片
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = 上传完毕。请耐心等待文件转换。
bbb.presentation.uploaded = 已上传。
bbb.presentation.document.supported = 支持上传文件类型,开始转换...
bbb.presentation.document.converted = 办公文件转换成功。
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO 错误: 请与管理员联系。
bbb.presentation.error.security = 安全错误: 请与管理员联系。
bbb.presentation.error.convert.notsupported = 错误:上传的文件不支持。请上传可被支持的文件。
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = 上传
bbb.fileupload.uploadBtn.toolTip = 上传文件
bbb.fileupload.deleteBtn.toolTip = 删除演示文件
bbb.fileupload.showBtn = 演示
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = 演示幻灯片
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = 生成缩略图..
bbb.fileupload.progBarLbl = 进度:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = 聊天
bbb.chat.quickLink.label = 聊天窗口
bbb.chat.cmpColorPicker.toolTip = 聊天窗口文字颜色
bbb.chat.input.accessibilityName = 聊天信息编辑区
bbb.chat.sendBtn.toolTip = 发送消息
bbb.chat.sendBtn.accessibilityName = 发送聊天信息
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = 复制所有文字
bbb.chat.publicChatUsername = 所有
bbb.chat.optionsTabName = 选择
@@ -327,18 +330,18 @@ bbb.chat.private.userLeft = 该用户已经离开。
bbb.chat.private.userJoined = 该用户已经加入。
bbb.chat.private.closeMessage = 关闭此标签请按组合键 {0}
bbb.chat.usersList.toolTip = 选择一个用户私聊
-bbb.chat.usersList.accessibilityName = Select user to open private chat. Use the arrow keys to navigate.
+bbb.chat.usersList.accessibilityName =
bbb.chat.chatOptions = 聊天选项
bbb.chat.fontSize = 对话字体大小
bbb.chat.cmbFontSize.toolTip = 选择聊天字体和大小
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = 最小化聊天窗口
bbb.chat.maximizeRestoreBtn.accessibilityName = 最大化聊天窗口
bbb.chat.closeBtn.accessibilityName = 关闭聊天窗口
bbb.chat.chatTabs.accessibleNotice = 此选项卡里的新信息。
bbb.chat.chatMessage.systemMessage = 系统
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
-bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
+bbb.chat.chatMessage.stringRespresentation =
+bbb.chat.chatMessage.tooLong =
bbb.publishVideo.changeCameraBtn.labelText = 更换摄像头
bbb.publishVideo.changeCameraBtn.toolTip = 打开改变摄像头对话框
bbb.publishVideo.cmbResolution.tooltip = 选择网络摄像头分辨率
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = 开始共享
bbb.publishVideo.startPublishBtn.toolTip = 开始共享
bbb.publishVideo.startPublishBtn.errorName = 无法共享摄像头。原因: {0}
bbb.webcamPermissions.chrome.title = Chrome摄像头允许
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = 视频区
bbb.videodock.quickLink.label = 视频窗口
bbb.video.minimizeBtn.accessibilityName = 最小化视频区窗口
@@ -366,90 +369,92 @@ bbb.video.publish.hint.publishing = 发布中...
bbb.video.publish.closeBtn.accessName = 关闭摄像头窗口
bbb.video.publish.closeBtn.label = 取消
bbb.video.publish.titleBar = 发布网络摄像窗口
-bbb.video.streamClose.toolTip = Close stream for: {0}
-bbb.screensharePublish.title = Screen Sharing: Presenter's Preview
-bbb.screensharePublish.pause.tooltip = Pause screen share
-bbb.screensharePublish.pause.label = Pause
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
+bbb.video.streamClose.toolTip =
+bbb.video.message.browserhttp =
+bbb.screensharePublish.title =
+bbb.screensharePublish.pause.tooltip =
+bbb.screensharePublish.pause.label =
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
bbb.screensharePublish.maximizeRestoreBtn.toolTip = 此窗口不能最大化
bbb.screensharePublish.closeBtn.toolTip = 停止分享并关闭
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = 最小化
-bbb.screensharePublish.minimizeBtn.accessibilityName = Minimize the Screen Sharing Publish Window
-bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing Publish Window
-bbb.screensharePublish.commonHelpText.text = The steps below will guide you through starting screen sharing (requires Java).
-bbb.screensharePublish.helpButton.toolTip = Help
-bbb.screensharePublish.helpButton.accessibilityName = Help (Opens tutorial in a new window)
-bbb.screensharePublish.helpText.PCIE1 = 1. Select 'Open'
-bbb.screensharePublish.helpText.PCIE2 = 2. Accept the certificate
+bbb.screensharePublish.minimizeBtn.accessibilityName =
+bbb.screensharePublish.maximizeRestoreBtn.accessibilityName =
+bbb.screensharePublish.commonHelpText.text =
+bbb.screensharePublish.helpButton.toolTip =
+bbb.screensharePublish.helpButton.accessibilityName =
+bbb.screensharePublish.helpText.PCIE1 =
+bbb.screensharePublish.helpText.PCIE2 =
bbb.screensharePublish.helpText.PCIE3 =
-bbb.screensharePublish.helpText.PCFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.PCFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCFirefox1 =
+bbb.screensharePublish.helpText.PCFirefox2 =
bbb.screensharePublish.helpText.PCFirefox3 =
-bbb.screensharePublish.helpText.PCChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.PCChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.PCChrome3 = 3. Accept the certificate
-bbb.screensharePublish.helpText.MacSafari1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacSafari2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacSafari3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacSafari4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacFirefox1 = 1. Choose 'Save File' (if asked)
-bbb.screensharePublish.helpText.MacFirefox2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacFirefox3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacFirefox4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.MacChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.MacChrome2 = 2. Select 'Show In Finder'
-bbb.screensharePublish.helpText.MacChrome3 = 3. Right-click and select 'Open'
-bbb.screensharePublish.helpText.MacChrome4 = 4. Select 'Open' (if prompted)
-bbb.screensharePublish.helpText.LinuxFirefox1 = 1. Click 'OK' to run
-bbb.screensharePublish.helpText.LinuxFirefox2 = 2. Accept the certificate
+bbb.screensharePublish.helpText.PCChrome1 =
+bbb.screensharePublish.helpText.PCChrome2 =
+bbb.screensharePublish.helpText.PCChrome3 =
+bbb.screensharePublish.helpText.MacSafari1 =
+bbb.screensharePublish.helpText.MacSafari2 =
+bbb.screensharePublish.helpText.MacSafari3 =
+bbb.screensharePublish.helpText.MacSafari4 =
+bbb.screensharePublish.helpText.MacFirefox1 =
+bbb.screensharePublish.helpText.MacFirefox2 =
+bbb.screensharePublish.helpText.MacFirefox3 =
+bbb.screensharePublish.helpText.MacFirefox4 =
+bbb.screensharePublish.helpText.MacChrome1 =
+bbb.screensharePublish.helpText.MacChrome2 =
+bbb.screensharePublish.helpText.MacChrome3 =
+bbb.screensharePublish.helpText.MacChrome4 =
+bbb.screensharePublish.helpText.LinuxFirefox1 =
+bbb.screensharePublish.helpText.LinuxFirefox2 =
bbb.screensharePublish.helpText.LinuxFirefox3 =
-bbb.screensharePublish.helpText.LinuxChrome1 = 1. Locate 'screenshare.jnlp'
-bbb.screensharePublish.helpText.LinuxChrome2 = 2. Click to open
-bbb.screensharePublish.helpText.LinuxChrome3 = 3. Accept the certificate
-bbb.screensharePublish.shareTypeLabel.text = Share:
-bbb.screensharePublish.shareType.fullScreen = Full screen
-bbb.screensharePublish.shareType.region = Region
-bbb.screensharePublish.pauseMessage.label = Screen sharing is currently paused.
-bbb.screensharePublish.startFailed.label = Did not detect start of screen sharing.
-bbb.screensharePublish.restartFailed.label = Did not detect restart of screen sharing.
-bbb.screensharePublish.jwsCrashed.label = The screen sharing application closed unexpectedly.
-bbb.screensharePublish.commonErrorMessage.label = Select 'Cancel' and try again.
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
-bbb.screensharePublish.cancelButton.label = Cancel
-bbb.screensharePublish.startButton.label = Start
-bbb.screensharePublish.stopButton.label = Stop
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
-bbb.screenshareView.title = Screen Sharing
-bbb.screenshareView.fitToWindow = Fit to Window
-bbb.screenshareView.actualSize = Display actual size
-bbb.screenshareView.minimizeBtn.accessibilityName = Minimize the Screen Sharing View Window
-bbb.screenshareView.maximizeRestoreBtn.accessibilityName = Maximize the Screen Sharing View Window
-bbb.screenshareView.closeBtn.accessibilityName = Close the Screen Sharing View Window
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.screensharePublish.helpText.LinuxChrome1 =
+bbb.screensharePublish.helpText.LinuxChrome2 =
+bbb.screensharePublish.helpText.LinuxChrome3 =
+bbb.screensharePublish.shareTypeLabel.text =
+bbb.screensharePublish.shareType.fullScreen =
+bbb.screensharePublish.shareType.region =
+bbb.screensharePublish.pauseMessage.label =
+bbb.screensharePublish.startFailed.label =
+bbb.screensharePublish.restartFailed.label =
+bbb.screensharePublish.jwsCrashed.label =
+bbb.screensharePublish.commonErrorMessage.label =
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
+bbb.screensharePublish.cancelButton.label =
+bbb.screensharePublish.startButton.label =
+bbb.screensharePublish.stopButton.label =
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
+bbb.screenshareView.title =
+bbb.screenshareView.fitToWindow =
+bbb.screenshareView.actualSize =
+bbb.screenshareView.minimizeBtn.accessibilityName =
+bbb.screenshareView.maximizeRestoreBtn.accessibilityName =
+bbb.screenshareView.closeBtn.accessibilityName =
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = 停止听取该会话
bbb.toolbar.phone.toolTip.unmute = 开始听取该会话
bbb.toolbar.phone.toolTip.nomic = 没有检测到麦克风
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
-bbb.toolbar.deskshare.toolTip.stop = Stop Sharing Your Screen
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.deskshare.toolTip.start =
+bbb.toolbar.deskshare.toolTip.stop =
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = 分享摄像头
bbb.toolbar.video.toolTip.stop = 停止分享摄像头
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = 将自定义布局加入到列表
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = 改变您的页面布局
bbb.layout.loadButton.toolTip = 从文件打开布局
bbb.layout.saveButton.toolTip = 将布局保存为文件
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = 应用布局
bbb.layout.combo.custom = * 自定义布局
bbb.layout.combo.customName = 自定义布局
bbb.layout.combo.remote = 远程
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = 布局保存成功
+bbb.layout.save.ioerror =
bbb.layout.load.complete = 布局成功载入
bbb.layout.load.failed = 无法加载该布局
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = 默认布局
-bbb.layout.name.closedcaption = Closed Caption
+bbb.layout.name.closedcaption =
bbb.layout.name.videochat = 视频会话
bbb.layout.name.webcamsfocus = 视频会议
bbb.layout.name.presentfocus = 演示稿会话
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = 演讲助手
bbb.layout.name.lecture = 演讲
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = 铅笔
bbb.highlighter.toolbar.pencil.accessibilityName = 切换白板光标为铅笔
bbb.highlighter.toolbar.ellipse = 圆
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = 选择颜色
bbb.highlighter.toolbar.color.accessibilityName = 白板画笔颜色
bbb.highlighter.toolbar.thickness = 修改线条粗细
bbb.highlighter.toolbar.thickness.accessibilityName = 改变白板光标绘画线条粗细
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = 已退出
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = OK
bbb.logout.appshutdown = 服务器应用已被关闭
bbb.logout.asyncerror = 同步错误
@@ -502,24 +509,26 @@ bbb.logout.connectionfailed = 连接服务器已经结束
bbb.logout.rejected = 服务器连接被拒绝
bbb.logout.invalidapp = Red5 应用不存在
bbb.logout.unknown = 您已掉线
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = 您已从会议中登出
-bbb.logour.breakoutRoomClose = Your browser window will be closed
-bbb.logout.ejectedFromMeeting = A moderator has kicked you out of the meeting.
+bbb.logour.breakoutRoomClose =
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = 如果意外登出,请点击下面按钮重新连接
bbb.logout.refresh.label = 重新连接
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = 确认退出
bbb.logout.confirm.message = 你确定要退出吗?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = 是的
bbb.logout.confirm.no = 不是
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
-bbb.connection.failure=Detected Connectivity Problems
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
+bbb.connection.failure=
bbb.connection.reconnecting=重新连接中
bbb.connection.reestablished=重新连接
bbb.connection.bigbluebutton=BigBlueButton
@@ -530,59 +539,60 @@ bbb.notes.title = 笔记
bbb.notes.cmpColorPicker.toolTip = 文字颜色
bbb.notes.saveBtn = 保存
bbb.notes.saveBtn.toolTip = 保存笔记
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = 在弹出窗口中点击同意检查桌面共享程序工作是否正常
bbb.settings.deskshare.start = 检查桌面共享
bbb.settings.voice.volume = 麦克风状态
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash 版本错误
bbb.settings.flash.text = 您安装的 Flash 为 {0} ,BigBlueButton 需要 {1} 以上版本才能正常运行。点击下面的链接安装最新的 Flash Player
bbb.settings.flash.command = 安装最新 Flash
bbb.settings.isight.label = iSight 摄像头错误
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = 安装 Flash 10.2 RC2
bbb.settings.warning.label = 警告
bbb.settings.warning.close = 关闭警告
bbb.settings.noissues = 没有检测到明显的问题。
bbb.settings.instructions = 在弹出的 Flash 设置对话框中“接受” Flash 使用您的摄像头。若您能够看到和听到自己,说明浏览器已设置正确。其他可能存在的问题显示如下。依次点击以找到可行的解决方案。
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = 三角形
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = 切换白板光标为三角形
ltbcustom.bbb.highlighter.toolbar.line = 直线
@@ -591,31 +601,31 @@ ltbcustom.bbb.highlighter.toolbar.text = 文字
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = 切换白板光标为文字
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = 文字颜色
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = 字体大小
-bbb.caption.window.title = Closed Caption
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
-bbb.caption.window.minimizeBtn.accessibilityName = Minimize the Closed Caption Window
-bbb.caption.window.maximizeRestoreBtn.accessibilityName = Maximize the Closed Caption Window
-bbb.caption.transcript.noowner = None
-bbb.caption.transcript.youowner = You
-bbb.caption.transcript.pastewarning.title = Caption Paste Warning
-bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
-bbb.caption.option.label = Options
-bbb.caption.option.language = Language:
-bbb.caption.option.language.tooltip = Select Caption Language
-bbb.caption.option.language.accessibilityName = Select caption language. Use the arrow keys to navigate.
-bbb.caption.option.takeowner = Take Ownership
-bbb.caption.option.takeowner.tooltip = Take Ownership of Selected Language
-bbb.caption.option.fontfamily = Font Family:
-bbb.caption.option.fontfamily.tooltip = Font Family
-bbb.caption.option.fontsize = Font Size:
-bbb.caption.option.fontsize.tooltip = Font Size
-bbb.caption.option.backcolor = Background Color:
-bbb.caption.option.backcolor.tooltip = Background Color
-bbb.caption.option.textcolor = Text Color:
-bbb.caption.option.textcolor.tooltip = Text Color
+bbb.caption.window.title =
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
+bbb.caption.window.minimizeBtn.accessibilityName =
+bbb.caption.window.maximizeRestoreBtn.accessibilityName =
+bbb.caption.transcript.noowner =
+bbb.caption.transcript.youowner =
+bbb.caption.transcript.pastewarning.title =
+bbb.caption.transcript.pastewarning.text =
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
+bbb.caption.option.label =
+bbb.caption.option.language =
+bbb.caption.option.language.tooltip =
+bbb.caption.option.language.accessibilityName =
+bbb.caption.option.takeowner =
+bbb.caption.option.takeowner.tooltip =
+bbb.caption.option.fontfamily =
+bbb.caption.option.fontfamily.tooltip =
+bbb.caption.option.fontsize =
+bbb.caption.option.fontsize.tooltip =
+bbb.caption.option.backcolor =
+bbb.caption.option.backcolor.tooltip =
+bbb.caption.option.textcolor =
+bbb.caption.option.textcolor.tooltip =
bbb.accessibility.clientReady = 准备
@@ -626,24 +636,24 @@ bbb.accessibility.chat.chatBox.navigatedFirst = 您已经浏览到第一条信
bbb.accessibility.chat.chatBox.navigatedLatest = 您已经浏览到最后一条信息
bbb.accessibility.chat.chatBox.navigatedLatestRead = 您已经浏览到您最近一条读过的信息
bbb.accessibility.chat.chatwindow.input = 聊天输入
-bbb.accessibility.chat.chatwindow.audibleChatNotification = Audible Chat Notification
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.audibleChatNotification =
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = 请使用箭头键浏览聊天信息
bbb.accessibility.notes.notesview.input = 注解输入
bbb.shortcuthelp.title = 快捷键
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = 最小化快捷键窗口
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = 最大化快捷键窗口
bbb.shortcuthelp.closeBtn.accessibilityName = 关闭快捷键窗口
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = 通用快捷键
bbb.shortcuthelp.dropdown.presentation = 演示快捷键
bbb.shortcuthelp.dropdown.chat = 聊天快捷键
bbb.shortcuthelp.dropdown.users = 用户快捷键
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = 快捷键
bbb.shortcuthelp.headers.function = 功能
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = 将焦点移到演示窗口
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = 将焦点移到聊天窗口
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = 打开桌面共享窗口
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = 登出本次会议
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = 举手
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = 上传演示文档
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = 转到上一页幻灯片
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = 转到下一张幻灯片
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = 调整幻灯片到合适宽度
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = 调整幻灯片到页面宽度
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = 指定被选人为演讲者
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = 将被选人踢出会议
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = 将被选人的话筒设为静音或者解除静音
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = 将所有人的话筒设为静音或者解除静音
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = 静音演讲者外所有话筒
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = 焦点集中到聊天栏上
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = 焦点集中到文字颜色选择
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = 浏览到您最近读过的信息
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = 临时调试快捷键
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = 发起一个投票
bbb.polling.startButton.label = 发起投票
bbb.polling.publishButton.label = 发布
bbb.polling.closeButton.label = 关闭
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = 投票实时结果
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = 输入投票选项
bbb.polling.respondersLabel.novotes = 等待反馈
bbb.polling.respondersLabel.text = 用户{0} 已经提交
@@ -771,7 +782,7 @@ bbb.polling.answer.E = E
bbb.polling.answer.F = F
bbb.polling.answer.G = G
bbb.polling.results.accessible.header = 投票结果。
-bbb.polling.results.accessible.answer = Answer {0} had {1} votes.
+bbb.polling.results.accessible.answer =
bbb.publishVideo.startPublishBtn.labelText = 开始共享
bbb.publishVideo.changeCameraBtn.labelText = 更换摄像头
@@ -791,8 +802,8 @@ bbb.toolbar.videodock.toolTip.closeAllVideos = 关闭所有视频
bbb.users.settings.lockAll = 锁定所有用户
bbb.users.settings.lockAllExcept = 锁定除演示者外的所有用户
bbb.users.settings.lockSettings = 锁定浏览用户
-bbb.users.settings.breakoutRooms = Breakout Rooms ...
-bbb.users.settings.sendBreakoutRoomsInvitations = Send Breakout Rooms Invitations ...
+bbb.users.settings.breakoutRooms =
+bbb.users.settings.sendBreakoutRoomsInvitations =
bbb.users.settings.unlockAll = 解锁所有浏览用户
bbb.users.settings.roomIsLocked = 默认锁定
bbb.users.settings.roomIsMuted = 默认静音
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = 应用锁定设置
bbb.lockSettings.cancel = 取消
bbb.lockSettings.cancel.toolTip = 不保存并关闭该窗口
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = 强制锁定
bbb.lockSettings.privateChat = 私聊
bbb.lockSettings.publicChat = 公共聊天
bbb.lockSettings.webcam = 摄像头
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = 麦克风
bbb.lockSettings.layout = 页面布局
bbb.lockSettings.title=锁定浏览用户
@@ -813,91 +826,46 @@ bbb.lockSettings.feature=特点
bbb.lockSettings.locked=已锁定
bbb.lockSettings.lockOnJoin=锁定加入
-bbb.users.breakout.breakoutRooms = Breakout Rooms
-bbb.users.breakout.updateBreakoutRooms = Update Breakout Rooms
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
-bbb.users.breakout.calculatingRemainingTime = Calculating remaining time...
-bbb.users.breakout.closing = Closing
-bbb.users.breakout.rooms = Rooms
-bbb.users.breakout.roomsCombo.accessibilityName = Number of rooms to create
-bbb.users.breakout.room = Room
-bbb.users.breakout.randomAssign = Randomly Assign Users
-bbb.users.breakout.timeLimit = Time Limit
-bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
-bbb.users.breakout.minutes = Minutes
-bbb.users.breakout.record = Record
-bbb.users.breakout.recordCheckbox.accessibilityName = Record breakout rooms
-bbb.users.breakout.notAssigned = Not Assigned
-bbb.users.breakout.dragAndDropToolTip = Tip: You can drag and drop users between rooms
-bbb.users.breakout.start = Start
-bbb.users.breakout.invite = Invite
+bbb.users.breakout.breakoutRooms =
+bbb.users.breakout.updateBreakoutRooms =
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
+bbb.users.breakout.calculatingRemainingTime =
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
+bbb.users.breakout.rooms =
+bbb.users.breakout.roomsCombo.accessibilityName =
+bbb.users.breakout.room =
+bbb.users.breakout.timeLimit =
+bbb.users.breakout.durationStepper.accessibilityName =
+bbb.users.breakout.minutes =
+bbb.users.breakout.record =
+bbb.users.breakout.recordCheckbox.accessibilityName =
+bbb.users.breakout.notAssigned =
+bbb.users.breakout.dragAndDropToolTip =
+bbb.users.breakout.start =
+bbb.users.breakout.invite =
bbb.users.breakout.close = 关闭
-bbb.users.breakout.closeAllRooms = Close All Breakout Rooms
-bbb.users.breakout.insufficientUsers = Insufficient users. You should place at least one user in one breakout room.
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
-bbb.users.roomsGrid.room = Room
-bbb.users.roomsGrid.users = Users
-bbb.users.roomsGrid.action = Action
-bbb.users.roomsGrid.transfer = Transfer Audio
-bbb.users.roomsGrid.join = Join
-bbb.users.roomsGrid.noUsers = No users is this room
+bbb.users.breakout.closeAllRooms =
+bbb.users.breakout.insufficientUsers =
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
+bbb.users.roomsGrid.room =
+bbb.users.roomsGrid.users =
+bbb.users.roomsGrid.action =
+bbb.users.roomsGrid.transfer =
+bbb.users.roomsGrid.join =
+bbb.users.roomsGrid.noUsers =
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/locale/zh_TW/bbbResources.properties b/bigbluebutton-client/locale/zh_TW/bbbResources.properties
index 1db7f5d3e27d..f5b1daa07fcc 100644
--- a/bigbluebutton-client/locale/zh_TW/bbbResources.properties
+++ b/bigbluebutton-client/locale/zh_TW/bbbResources.properties
@@ -1,25 +1,25 @@
bbb.mainshell.locale.version = 0.9.0
bbb.mainshell.statusProgress.connecting = 正在連接到伺服器
-bbb.mainshell.statusProgress.loading = Loading
+bbb.mainshell.statusProgress.loading =
bbb.mainshell.statusProgress.cannotConnectServer = 抱歉,無法連接到伺服器.
-bbb.mainshell.copyrightLabel2 = (c) 2017 BigBlueButton Inc. (build {0})
+bbb.mainshell.copyrightLabel2 =
bbb.mainshell.logBtn.toolTip = 打開日誌
bbb.mainshell.meetingNotFound = 沒有會議進行中
bbb.mainshell.invalidAuthToken = 無效的授權代碼
bbb.mainshell.resetLayoutBtn.toolTip = 重新設定版面
bbb.mainshell.notification.tunnelling = 通道
bbb.mainshell.notification.webrtc = WebRTC 音效
-bbb.mainshell.fullscreenBtn.toolTip = Toggle full screen
-bbb.mainshell.quote.sentence.1 = There are no secrets to success. It is the result of preparation, hard work, and learning from failure.
-bbb.mainshell.quote.attribution.1 = Colin Powell
-bbb.mainshell.quote.sentence.2 = Tell me and I forget. Teach me and I remember. Involve me and I learn.
-bbb.mainshell.quote.attribution.2 = Benjamin Franklin
-bbb.mainshell.quote.sentence.3 = I learned the value of hard work by working hard.
-bbb.mainshell.quote.attribution.3 = Margaret Mead
-bbb.mainshell.quote.sentence.4 = Develop a passion for learning. If you do, you will never cease to grow.
-bbb.mainshell.quote.attribution.4 = Anthony J. D'Angelo
-bbb.mainshell.quote.sentence.5 = Research is creating new knowledge.
-bbb.mainshell.quote.attribution.5 = Neil Armstrong
+bbb.mainshell.fullscreenBtn.toolTip =
+bbb.mainshell.quote.sentence.1 =
+bbb.mainshell.quote.attribution.1 =
+bbb.mainshell.quote.sentence.2 =
+bbb.mainshell.quote.attribution.2 =
+bbb.mainshell.quote.sentence.3 =
+bbb.mainshell.quote.attribution.3 =
+bbb.mainshell.quote.sentence.4 =
+bbb.mainshell.quote.attribution.4 =
+bbb.mainshell.quote.sentence.5 =
+bbb.mainshell.quote.attribution.5 =
bbb.oldlocalewindow.reminder1 = 您可能正在使用舊版的BigBlueButton語言翻譯.
bbb.oldlocalewindow.reminder2 = 請清除瀏覽器的暫存資料後再試試看。
bbb.oldlocalewindow.windowTitle = 警告: 舊版的語言翻譯
@@ -66,10 +66,11 @@ bbb.micSettings.webrtc.waitingforice = 連線中
bbb.micSettings.webrtc.transferring = 轉換中
bbb.micSettings.webrtc.endingecho = 加入音訊
bbb.micSettings.webrtc.endedecho = 聲音測試結束
+bbb.micPermissions.message.browserhttp =
bbb.micPermissions.firefox.title = 授權使用Firefox麥克風
-bbb.micPermissions.firefox.message = Click Allow to give Firefox permission to use your microphone.
+bbb.micPermissions.firefox.message =
bbb.micPermissions.chrome.title = 授權使用Chrome麥克風
-bbb.micPermissions.chrome.message = Click Allow to give Chrome permission to use your microphone.
+bbb.micPermissions.chrome.message =
bbb.micWarning.title = 語音警示
bbb.micWarning.joinBtn.label = 逕行進入
bbb.micWarning.testAgain.label = 再試一次
@@ -93,14 +94,14 @@ bbb.webrtcWarning.failedError.endedunexpectedly = WebRTC 的聲音測試不正
bbb.webrtcWarning.connection.dropped = WebRTC 連線中斷
bbb.webrtcWarning.connection.reconnecting = 嘗試重啟連線
bbb.webrtcWarning.connection.reestablished = WebRTC 重新連線
-bbb.inactivityWarning.title = No activity detected
-bbb.inactivityWarning.message = This meeting seems to be inactive. Automatically shutting it down...
-bbb.shuttingDown.message = This meeting is being closed due to inactivity
-bbb.inactivityWarning.cancel = Cancel
+bbb.inactivityWarning.title =
+bbb.inactivityWarning.message =
+bbb.shuttingDown.message =
+bbb.inactivityWarning.cancel =
bbb.mainToolbar.helpBtn = 幫助
bbb.mainToolbar.logoutBtn = 離開
bbb.mainToolbar.logoutBtn.toolTip = 離開
-bbb.mainToolbar.idleLogoutBtn = {0} | Reset Logout Timer
+bbb.mainToolbar.idleLogoutBtn =
bbb.mainToolbar.langSelector = 選擇語言
bbb.mainToolbar.settingsBtn = 選項
bbb.mainToolbar.settingsBtn.toolTip = 開啟選項
@@ -110,31 +111,31 @@ bbb.mainToolbar.recordBtn.toolTip.start = 開始錄製
bbb.mainToolbar.recordBtn.toolTip.stop = 停止錄製
bbb.mainToolbar.recordBtn.toolTip.recording = 會議錄製中
bbb.mainToolbar.recordBtn.toolTip.notRecording = 沒有會議錄製中
-bbb.mainToolbar.recordBtn.toolTip.onlyModerators = Only moderators can start and stop recordings
-bbb.mainToolbar.recordBtn.toolTip.wontInterrupt = This recording can't be interrupted
-bbb.mainToolbar.recordBtn.toolTip.wontRecord = This session cannot be recorded
+bbb.mainToolbar.recordBtn.toolTip.onlyModerators =
+bbb.mainToolbar.recordBtn.toolTip.wontInterrupt =
+bbb.mainToolbar.recordBtn.toolTip.wontRecord =
bbb.mainToolbar.recordBtn.confirm.title = 確認錄製狀態
bbb.mainToolbar.recordBtn.confirm.message.start = 確定要開始錄影嗎?
bbb.mainToolbar.recordBtn.confirm.message.stop = 確定要停止錄影嗎?
-bbb.mainToolbar.recordBtn..notification.title = 錄影通知
-bbb.mainToolbar.recordBtn..notification.message1 = 你可以錄製此會議
-bbb.mainToolbar.recordBtn..notification.message2 = 你必須點選標題欄上的 開始/停止 錄製鍵以開始或停止錄製。
+bbb.mainToolbar.recordBtn.notification.title = 錄影通知
+bbb.mainToolbar.recordBtn.notification.message1 = 你可以錄製此會議
+bbb.mainToolbar.recordBtn.notification.message2 = 你必須點選標題欄上的 開始/停止 錄製鍵以開始或停止錄製。
bbb.mainToolbar.recordingLabel.recording = 錄製中
bbb.mainToolbar.recordingLabel.notRecording = 停止錄製
-bbb.waitWindow.waitMessage.message = You are a guest, please wait moderator approval.
-bbb.waitWindow.waitMessage.title = Waiting
-bbb.guests.title = Guests
-bbb.guests.message.singular = {0} user wants to join this meeting
-bbb.guests.message.plural = {0} users want to join this meeting
-bbb.guests.allowBtn.toolTip = Allow
-bbb.guests.allowEveryoneBtn.text = Allow everyone
-bbb.guests.denyBtn.toolTip = Deny
-bbb.guests.denyEveryoneBtn.text = Deny everyone
-bbb.guests.rememberAction.text = Remember choice
-bbb.guests.alwaysAccept = Always accept
-bbb.guests.alwaysDeny = Always deny
-bbb.guests.askModerator = Ask moderator
-bbb.guests.Management = Guest management
+bbb.waitWindow.waitMessage.message =
+bbb.waitWindow.waitMessage.title =
+bbb.guests.title =
+bbb.guests.message.singular =
+bbb.guests.message.plural =
+bbb.guests.allowBtn.toolTip =
+bbb.guests.allowEveryoneBtn.text =
+bbb.guests.denyBtn.toolTip =
+bbb.guests.denyEveryoneBtn.text =
+bbb.guests.rememberAction.text =
+bbb.guests.alwaysAccept =
+bbb.guests.alwaysDeny =
+bbb.guests.askModerator =
+bbb.guests.Management =
bbb.clientstatus.title = 組態通知
bbb.clientstatus.notification = 未讀取通知
bbb.clientstatus.close = 關閉
@@ -145,15 +146,15 @@ bbb.clientstatus.browser.message = 你的瀏覽器 ({0}) 未更新,建議更
bbb.clientstatus.flash.title = Flash 撥放器
bbb.clientstatus.flash.message = 你的Flash 撥放器外掛 ({0}) 過期,建議更新到最新版本。
bbb.clientstatus.webrtc.title = 音效
-bbb.clientstatus.webrtc.strongStatus = Your WebRTC audio connection is great
-bbb.clientstatus.webrtc.almostStrongStatus = Your WebRTC audio connection is fine
-bbb.clientstatus.webrtc.almostWeakStatus = Your WebRTC audio connection is bad
-bbb.clientstatus.webrtc.weakStatus = Maybe there is a problem with your WebRTC audio connection
+bbb.clientstatus.webrtc.strongStatus =
+bbb.clientstatus.webrtc.almostStrongStatus =
+bbb.clientstatus.webrtc.almostWeakStatus =
+bbb.clientstatus.webrtc.weakStatus =
bbb.clientstatus.webrtc.message = 建議使用 Firefox 或 Chrome 得著最好的音效品質。
-bbb.clientstatus.java.title = Java
-bbb.clientstatus.java.notdetected = Java version not detected.
-bbb.clientstatus.java.notinstalled = You have no Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
-bbb.clientstatus.java.oldversion = You have an old Java installed, please click HERE to install the latest Java to use the desktop sharing feature.
+bbb.clientstatus.java.title =
+bbb.clientstatus.java.notdetected =
+bbb.clientstatus.java.notinstalled =
+bbb.clientstatus.java.oldversion =
bbb.window.minimizeBtn.toolTip = 最小化
bbb.window.maximizeRestoreBtn.toolTip = 最大化
bbb.window.closeBtn.toolTip = 關閉
@@ -188,20 +189,20 @@ bbb.users.usersGrid.statusItemRenderer = 狀態
bbb.users.usersGrid.statusItemRenderer.changePresenter = 點選指定演講人
bbb.users.usersGrid.statusItemRenderer.presenter = 演講人
bbb.users.usersGrid.statusItemRenderer.moderator = 管理員
-bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser = Voice Only
-bbb.users.usersGrid.statusItemRenderer.raiseHand = Hand Raised
-bbb.users.usersGrid.statusItemRenderer.applause = Applause
-bbb.users.usersGrid.statusItemRenderer.thumbsUp = Thumbs up
-bbb.users.usersGrid.statusItemRenderer.thumbsDown = Thubms down
-bbb.users.usersGrid.statusItemRenderer.speakLouder = Speak louder
-bbb.users.usersGrid.statusItemRenderer.speakSofter = Speak softer
-bbb.users.usersGrid.statusItemRenderer.speakFaster = Speak faster
-bbb.users.usersGrid.statusItemRenderer.speakSlower = Speak slower
-bbb.users.usersGrid.statusItemRenderer.away = Away
-bbb.users.usersGrid.statusItemRenderer.confused = Confused
-bbb.users.usersGrid.statusItemRenderer.neutral = Neutral
-bbb.users.usersGrid.statusItemRenderer.happy = Happy
-bbb.users.usersGrid.statusItemRenderer.sad = Sad
+bbb.users.usersGrid.statusItemRenderer.voiceOnlyUser =
+bbb.users.usersGrid.statusItemRenderer.raiseHand =
+bbb.users.usersGrid.statusItemRenderer.applause =
+bbb.users.usersGrid.statusItemRenderer.thumbsUp =
+bbb.users.usersGrid.statusItemRenderer.thumbsDown =
+bbb.users.usersGrid.statusItemRenderer.speakLouder =
+bbb.users.usersGrid.statusItemRenderer.speakSofter =
+bbb.users.usersGrid.statusItemRenderer.speakFaster =
+bbb.users.usersGrid.statusItemRenderer.speakSlower =
+bbb.users.usersGrid.statusItemRenderer.away =
+bbb.users.usersGrid.statusItemRenderer.confused =
+bbb.users.usersGrid.statusItemRenderer.neutral =
+bbb.users.usersGrid.statusItemRenderer.happy =
+bbb.users.usersGrid.statusItemRenderer.sad =
bbb.users.usersGrid.statusItemRenderer.clearStatus = 清除狀態
bbb.users.usersGrid.statusItemRenderer.viewer = 觀看人
bbb.users.usersGrid.statusItemRenderer.streamIcon.toolTip = 分享攝影視訊
@@ -214,38 +215,39 @@ bbb.users.usersGrid.mediaItemRenderer.pushToTalk = 點擊取消用戶靜音
bbb.users.usersGrid.mediaItemRenderer.pushToMute = 點擊將用戶靜音
bbb.users.usersGrid.mediaItemRenderer.pushToLock = 鎖住 {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = 解鎖 {0}
-bbb.users.usersGrid.mediaItemRenderer.kickUser = 將用戶踢出會議室
+bbb.users.usersGrid.mediaItemRenderer.kickUser =
bbb.users.usersGrid.mediaItemRenderer.webcam = 攝像頭已共享
bbb.users.usersGrid.mediaItemRenderer.micOff = 關閉麥克風
bbb.users.usersGrid.mediaItemRenderer.micOn = 打開麥克風
bbb.users.usersGrid.mediaItemRenderer.noAudio = 不在語音會議中
-bbb.users.usersGrid.mediaItemRenderer.promoteUser = Promote {0} to moderator
-bbb.users.usersGrid.mediaItemRenderer.demoteUser = Demote {0} to viewer
+bbb.users.usersGrid.mediaItemRenderer.promoteUser =
+bbb.users.usersGrid.mediaItemRenderer.demoteUser =
bbb.users.emojiStatus.clear = 清除
-bbb.users.emojiStatus.raiseHand = Raise hand
-bbb.users.emojiStatus.happy = Happy
-bbb.users.emojiStatus.neutral = Neutral
-bbb.users.emojiStatus.sad = Sad
-bbb.users.emojiStatus.confused = Confused
-bbb.users.emojiStatus.away = Away
-bbb.users.emojiStatus.thumbsUp = Thumbs Up
-bbb.users.emojiStatus.thumbsDown = Thumbs Down
-bbb.users.emojiStatus.applause = Applause
-bbb.users.emojiStatus.agree = I agree
-bbb.users.emojiStatus.disagree = I disagree
-bbb.users.emojiStatus.none = Clear
-bbb.users.emojiStatus.speakLouder = Could you please speak louder?
-bbb.users.emojiStatus.speakSofter = Could you please speak softer?
-bbb.users.emojiStatus.speakFaster = Could you please speak faster?
-bbb.users.emojiStatus.speakSlower = Could you please speak slower?
-bbb.users.emojiStatus.beRightBack = I'll be right back
+bbb.users.emojiStatus.raiseHand =
+bbb.users.emojiStatus.happy =
+bbb.users.emojiStatus.neutral =
+bbb.users.emojiStatus.sad =
+bbb.users.emojiStatus.confused =
+bbb.users.emojiStatus.away =
+bbb.users.emojiStatus.thumbsUp =
+bbb.users.emojiStatus.thumbsDown =
+bbb.users.emojiStatus.applause =
+bbb.users.emojiStatus.agree =
+bbb.users.emojiStatus.disagree =
+bbb.users.emojiStatus.none =
+bbb.users.emojiStatus.speakLouder =
+bbb.users.emojiStatus.speakSofter =
+bbb.users.emojiStatus.speakFaster =
+bbb.users.emojiStatus.speakSlower =
+bbb.users.emojiStatus.beRightBack =
bbb.presentation.title = 簡報
bbb.presentation.titleWithPres = 投影片: {0}
bbb.presentation.quickLink.label = 投影片視窗
bbb.presentation.fitToWidth.toolTip = 調整成投影片寬
bbb.presentation.fitToPage.toolTip = 調整成整頁投影片
bbb.presentation.uploadPresBtn.toolTip = 上傳投影片
-bbb.presentation.downloadPresBtn.toolTip = Download Presentations
+bbb.presentation.downloadPresBtn.toolTip =
+bbb.presentation.poll.response =
bbb.presentation.backBtn.toolTip = 上一頁
bbb.presentation.btnSlideNum.accessibilityName = 投影片 {0} 之 {1}
bbb.presentation.btnSlideNum.toolTip = 選擇投影片
@@ -255,8 +257,8 @@ bbb.presentation.uploadcomplete = 檔案上傳完畢。正在轉換格式,請
bbb.presentation.uploaded = 已上傳
bbb.presentation.document.supported = 已支援上傳的檔案
bbb.presentation.document.converted = 成功轉換Office檔案
-bbb.presentation.error.document.convert.failed = Try converting the document to PDF and upload again.
-bbb.presentation.error.document.convert.invalid = Please convert this document to PDF first.
+bbb.presentation.error.document.convert.failed =
+bbb.presentation.error.document.convert.invalid =
bbb.presentation.error.io = IO 錯誤: 請與管理員聯繫
bbb.presentation.error.security = 安全錯誤: 請與管理員聯繫
bbb.presentation.error.convert.notsupported = 錯誤:上傳的文件不被支援。請上傳有被支援的檔案
@@ -283,42 +285,43 @@ bbb.fileupload.uploadBtn = 上傳
bbb.fileupload.uploadBtn.toolTip = 上傳檔案
bbb.fileupload.deleteBtn.toolTip = 刪除投影片
bbb.fileupload.showBtn = 顯示
-bbb.fileupload.retry = Try another file
+bbb.fileupload.retry =
bbb.fileupload.showBtn.toolTip = 顯示投影片
-bbb.fileupload.close.tooltip = Close
-bbb.fileupload.close.accessibilityName = Close the File Upload window
+bbb.fileupload.close.tooltip =
+bbb.fileupload.close.accessibilityName =
bbb.fileupload.genThumbText = 產生縮圖..
bbb.fileupload.progBarLbl = 上傳進度:
-bbb.fileupload.fileFormatHint = You can upload any Office or Portable Document Format (PDF) document. For the best result we recommend uploading a PDF.
-bbb.fileupload.letUserDownload = Enable download of presentation
-bbb.fileupload.letUserDownload.tooltip = Check here if you want the other users to download your presentation
-bbb.filedownload.title = Download the Presentations
-bbb.filedownload.close.tooltip = Close
-bbb.filedownload.close.accessibilityName = Close file download window
-bbb.filedownload.fileLbl = Choose File to Download:
-bbb.filedownload.downloadBtn = Download
-bbb.filedownload.downloadBtn.toolTip = Download Presentation
-bbb.filedownload.thisFileIsDownloadable = File is downloadable
+bbb.fileupload.fileFormatHint =
+bbb.fileupload.letUserDownload =
+bbb.fileupload.letUserDownload.tooltip =
+bbb.filedownload.title =
+bbb.filedownload.close.tooltip =
+bbb.filedownload.close.accessibilityName =
+bbb.filedownload.fileLbl =
+bbb.filedownload.downloadBtn =
+bbb.filedownload.downloadBtn.toolTip =
+bbb.filedownload.thisFileIsDownloadable =
bbb.chat.title = 聊天
bbb.chat.quickLink.label = 聊天視窗
bbb.chat.cmpColorPicker.toolTip = 文字顏色
bbb.chat.input.accessibilityName = 聊天信息編輯欄
bbb.chat.sendBtn.toolTip = 送出消息
bbb.chat.sendBtn.accessibilityName = 送出聊天信息
-bbb.chat.saveBtn.toolTip = Save chat
-bbb.chat.saveBtn.accessibilityName = Save chat in text file
-bbb.chat.saveBtn.label = Save
-bbb.chat.save.complete = Chat successfully saved
-bbb.chat.save.filename = public-chat
-bbb.chat.copyBtn.toolTip = Copy chat
-bbb.chat.copyBtn.accessibilityName = Copy chat to clipboard
-bbb.chat.copyBtn.label = Copy
-bbb.chat.copy.complete = Chat copied to clipboard
-bbb.chat.clearBtn.toolTip = Clear Public chat
-bbb.chat.clearBtn.accessibilityName = Clear the public chat history
-bbb.chat.clearBtn.chatMessage = The public chat history was cleared by a moderator
-bbb.chat.clearBtn.alert.title = Warning
-bbb.chat.clearBtn.alert.text = You are clearing the public chat history and this action cannot be undone. Do you want to proceed?
+bbb.chat.saveBtn.toolTip =
+bbb.chat.saveBtn.accessibilityName =
+bbb.chat.saveBtn.label =
+bbb.chat.save.complete =
+bbb.chat.save.ioerror =
+bbb.chat.save.filename =
+bbb.chat.copyBtn.toolTip =
+bbb.chat.copyBtn.accessibilityName =
+bbb.chat.copyBtn.label =
+bbb.chat.copy.complete =
+bbb.chat.clearBtn.toolTip =
+bbb.chat.clearBtn.accessibilityName =
+bbb.chat.clearBtn.chatMessage =
+bbb.chat.clearBtn.alert.title =
+bbb.chat.clearBtn.alert.text =
bbb.chat.contextmenu.copyalltext = 複製全部文字
bbb.chat.publicChatUsername = 所有人
bbb.chat.optionsTabName = 選項
@@ -331,13 +334,13 @@ bbb.chat.usersList.accessibilityName = 選擇使用者打開私人聊天。使
bbb.chat.chatOptions = 聊天選項
bbb.chat.fontSize = 字體大小
bbb.chat.cmbFontSize.toolTip = 選擇聊天訊息的字型大小
-bbb.chat.messageList = Chat Messages
+bbb.chat.messageList =
bbb.chat.minimizeBtn.accessibilityName = 最小化聊天視窗
bbb.chat.maximizeRestoreBtn.accessibilityName = 最大化聊天視窗
bbb.chat.closeBtn.accessibilityName = 關閉聊天窗體
bbb.chat.chatTabs.accessibleNotice = 新的信息
bbb.chat.chatMessage.systemMessage = 系統
-bbb.chat.chatMessage.stringRespresentation = From {0} {1} at {2}
+bbb.chat.chatMessage.stringRespresentation =
bbb.chat.chatMessage.tooLong = The message is {0} character(s) too long
bbb.publishVideo.changeCameraBtn.labelText = 更改攝像頭設置
bbb.publishVideo.changeCameraBtn.toolTip = 開啟更換攝影機對話方塊
@@ -346,7 +349,7 @@ bbb.publishVideo.startPublishBtn.labelText = 開始共享
bbb.publishVideo.startPublishBtn.toolTip = 開始視訊
bbb.publishVideo.startPublishBtn.errorName = 無法共享網路攝影機: {0}
bbb.webcamPermissions.chrome.title = 許可透過Chrome使用 網路攝影機
-bbb.webcamPermissions.chrome.message = Click Allow to give Chrome permission to use your webcam.
+bbb.webcamPermissions.chrome.message =
bbb.videodock.title = 視頻區
bbb.videodock.quickLink.label = 視訊畫面視窗
bbb.video.minimizeBtn.accessibilityName = 最小化視頻視窗
@@ -367,14 +370,15 @@ bbb.video.publish.closeBtn.accessName = 關閉攝影機設定視窗
bbb.video.publish.closeBtn.label = 取消
bbb.video.publish.titleBar = 發佈攝像頭窗體
bbb.video.streamClose.toolTip = 關閉串流給 : {0}
+bbb.video.message.browserhttp =
bbb.screensharePublish.title = 桌面共享: 演講人預覽
bbb.screensharePublish.pause.tooltip = 暫停桌面共享
bbb.screensharePublish.pause.label = 暫停
-bbb.screensharePublish.restart.tooltip = Resume screen share
-bbb.screensharePublish.restart.label = Resume
+bbb.screensharePublish.restart.tooltip =
+bbb.screensharePublish.restart.label =
bbb.screensharePublish.maximizeRestoreBtn.toolTip = 你無法最大化這視窗
bbb.screensharePublish.closeBtn.toolTip = 停止共享並關閉
-bbb.screensharePublish.closeBtn.accessibilityName = Stop Sharing and Close Screen Sharing Publish Window
+bbb.screensharePublish.closeBtn.accessibilityName =
bbb.screensharePublish.minimizeBtn.toolTip = 最小化
bbb.screensharePublish.minimizeBtn.accessibilityName = 最小化桌面共享的發佈視窗
bbb.screensharePublish.maximizeRestoreBtn.accessibilityName = 最大化桌面共享的發佈視窗
@@ -416,40 +420,41 @@ bbb.screensharePublish.startFailed.label = 未偵測到共享桌面啟動
bbb.screensharePublish.restartFailed.label = 未偵測到共享桌面重啟
bbb.screensharePublish.jwsCrashed.label = 共享桌面不預期地關閉
bbb.screensharePublish.commonErrorMessage.label = 選擇 '取消' 並重試一次
-bbb.screensharePublish.tunnelingErrorMessage.one = Screen Sharing is unable to run.
-bbb.screensharePublish.tunnelingErrorMessage.two = Try refreshing the client (click the refresh button on the browser). If after refresh you still see the words '[ Tunneling ]' in the lower right-hand corner of the client, try connecting from a different network location.
+bbb.screensharePublish.tunnelingErrorMessage.one =
+bbb.screensharePublish.tunnelingErrorMessage.two =
bbb.screensharePublish.cancelButton.label = 取消
bbb.screensharePublish.startButton.label = 開始
bbb.screensharePublish.stopButton.label = 停止
-bbb.screensharePublish.stopButton.toolTip = Stop sharing your screen
-bbb.screensharePublish.WebRTCChromeExtensionMissing.label = You're using a recent version of Chrome but don't have the screen sharing extension installed.
-bbb.screensharePublish.WebRTCRetryExtensionInstallation.label = After you have installed the screen sharing extension, please click 'Retry' below.
-bbb.screensharePublish.WebRTCExtensionFailFallback.label = Unable to detect screen sharing extension. Click here to try installing again, or select 'Use Java Screen Sharing'.
-bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label = It seems you may be Incognito or using private browsing. Make sure under your extension settings you allow the extension the run in Incognito/private browsing.
-bbb.screensharePublish.WebRTCExtensionInstallButton.label = Click here to install
-bbb.screensharePublish.WebRTCUseJavaButton.label = Use Java Screen Sharing
-bbb.screensharePublish.WebRTCVideoLoading.label = Video is loading... Please wait
-bbb.screensharePublish.sharingMessage= This is your screen being shared
+bbb.screensharePublish.stopButton.toolTip =
+bbb.screensharePublish.WebRTCChromeExtensionMissing.label =
+bbb.screensharePublish.WebRTCRetryExtensionInstallation.label =
+bbb.screensharePublish.WebRTCExtensionFailFallback.label =
+bbb.screensharePublish.WebRTCPrivateBrowsingWarning.label =
+bbb.screensharePublish.WebRTCExtensionInstallButton.label =
+bbb.screensharePublish.WebRTCUseJavaButton.label =
+bbb.screensharePublish.WebRTCVideoLoading.label =
+bbb.screensharePublish.sharingMessage=
bbb.screenshareView.title = 桌面共享
bbb.screenshareView.fitToWindow = 配合視窗大小
bbb.screenshareView.actualSize = 顯示實際尺寸
bbb.screenshareView.minimizeBtn.accessibilityName = 最小化桌面共享的觀賞視窗
bbb.screenshareView.maximizeRestoreBtn.accessibilityName = 最大化桌面共享的觀賞視窗
bbb.screenshareView.closeBtn.accessibilityName = 關閉桌面共享的觀賞視窗
-bbb.toolbar.phone.toolTip.start = Enable Audio (microphone or listen only)
-bbb.toolbar.phone.toolTip.stop = Disable Audio
+bbb.toolbar.phone.toolTip.start =
+bbb.toolbar.phone.toolTip.stop =
bbb.toolbar.phone.toolTip.mute = 停止聽取會議內容
bbb.toolbar.phone.toolTip.unmute = 開始聽取會議內容
bbb.toolbar.phone.toolTip.nomic = 沒有偵測到麥克風
-bbb.toolbar.deskshare.toolTip.start = Open Screen Share Publish Window
+bbb.toolbar.deskshare.toolTip.start =
bbb.toolbar.deskshare.toolTip.stop = 停止分享你的螢幕
-bbb.toolbar.sharednotes.toolTip = Open Shared Notes
+bbb.toolbar.sharednotes.toolTip =
bbb.toolbar.video.toolTip.start = 分享您的視訊畫面
bbb.toolbar.video.toolTip.stop = 停止分享你的視訊畫面
+bbb.layout.addButton.label =
bbb.layout.addButton.toolTip = 加入自定義佈局
-bbb.layout.overwriteLayoutName.title = Overwrite layout
-bbb.layout.overwriteLayoutName.text = Name already in use. Do you want to overwrite?
-bbb.layout.broadcastButton.toolTip = Apply current layout to all viewers
+bbb.layout.overwriteLayoutName.title =
+bbb.layout.overwriteLayoutName.text =
+bbb.layout.broadcastButton.toolTip =
bbb.layout.combo.toolTip = 更換目前的佈局
bbb.layout.loadButton.toolTip = 從檔案中加載佈局
bbb.layout.saveButton.toolTip = 佈局另存為檔案
@@ -458,24 +463,27 @@ bbb.layout.combo.prompt = 套用版面
bbb.layout.combo.custom = * 自定義佈局
bbb.layout.combo.customName = 自定義佈局
bbb.layout.combo.remote = 遠程
-bbb.layout.window.name = Layout name
+bbb.layout.window.name =
+bbb.layout.window.close.tooltip =
+bbb.layout.window.close.accessibilityName =
bbb.layout.save.complete = 佈局保存成功
+bbb.layout.save.ioerror =
bbb.layout.load.complete = 佈局加載成功
bbb.layout.load.failed = 佈局加載失敗
-bbb.layout.sync = Your layout has been sent to all participants
+bbb.layout.sync =
bbb.layout.name.defaultlayout = 預設版面
bbb.layout.name.closedcaption = 關閉字幕
bbb.layout.name.videochat = 視訊聊天
bbb.layout.name.webcamsfocus = 視訊會議
bbb.layout.name.presentfocus = 簡報會議
-bbb.layout.name.presentandusers = Presentation + Users
+bbb.layout.name.presentandusers =
bbb.layout.name.lectureassistant = 演講人助理
bbb.layout.name.lecture = 演講者
-bbb.layout.name.sharednotes = Shared Notes
-bbb.layout.addCurrentToFileWindow.title = Add current Layout to file
-bbb.layout.addCurrentToFileWindow.text = Do you want to save the current layout to file?
-bbb.layout.denyAddToFile.toolTip = Deny adding the current layout
-bbb.layout.confirmAddToFile.toolTip = Confirm adding the current layout
+bbb.layout.name.sharednotes =
+bbb.layout.addCurrentToFileWindow.title =
+bbb.layout.addCurrentToFileWindow.text =
+bbb.layout.denyAddToFile.toolTip =
+bbb.layout.confirmAddToFile.toolTip =
bbb.highlighter.toolbar.pencil = 畫筆
bbb.highlighter.toolbar.pencil.accessibilityName = 白板光標切換為畫筆
bbb.highlighter.toolbar.ellipse = 圓
@@ -492,8 +500,7 @@ bbb.highlighter.toolbar.color = 選擇顏色
bbb.highlighter.toolbar.color.accessibilityName = 白板畫筆顏色
bbb.highlighter.toolbar.thickness = 修改線條粗細
bbb.highlighter.toolbar.thickness.accessibilityName = 白板畫筆粗細
-bbb.highlighter.toolbar.multiuser = Multi-user Drawing
-bbb.logout.title = 離開
+bbb.highlighter.toolbar.multiuser =
bbb.logout.button.label = 確定
bbb.logout.appshutdown = 伺服器程序已關閉
bbb.logout.asyncerror = 同步錯誤
@@ -502,23 +509,25 @@ bbb.logout.connectionfailed = 與伺服器連接已關閉
bbb.logout.rejected = 連接服務器被回絕
bbb.logout.invalidapp = red5 程序未安装
bbb.logout.unknown = 您已掉線
-bbb.logout.guestkickedout = The moderator didn't allow you to join this meeting
+bbb.logout.guestkickedout =
bbb.logout.usercommand = 您已經離開視訊會議
bbb.logour.breakoutRoomClose = 你的瀏覽器視窗即將關閉
-bbb.logout.ejectedFromMeeting = 會議管理員將你從會議中剔除
+bbb.logout.ejectedFromMeeting =
bbb.logout.refresh.message = 如有不正常的登出,請點選下面的按鈕重新連線。
bbb.logout.refresh.label = 重新連線
-bbb.settings.title = Settings
-bbb.settings.ok = OK
-bbb.settings.cancel = Cancel
-bbb.settings.btn.toolTip = Open configuration window
+bbb.logout.feedback.hint =
+bbb.logout.feedback.label =
+bbb.settings.title =
+bbb.settings.ok =
+bbb.settings.cancel =
+bbb.settings.btn.toolTip =
bbb.logout.confirm.title = 離開確認
bbb.logout.confirm.message = 您確定要離開嗎?
-bbb.logout.confirm.endMeeting = Yes and end the meeting
+bbb.logout.confirm.endMeeting =
bbb.logout.confirm.yes = 是
bbb.logout.confirm.no = 否
-bbb.endSession.confirm.title = Warning
-bbb.endSession.confirm.message = If you close the session, all participants will be disconnected. Do you want to proceed?
+bbb.endSession.confirm.title =
+bbb.endSession.confirm.message =
bbb.connection.failure=偵測連線問題
bbb.connection.reconnecting=重新連線中
bbb.connection.reestablished=連線重新建立中
@@ -530,59 +539,60 @@ bbb.notes.title = 紀要
bbb.notes.cmpColorPicker.toolTip = 文本顏色
bbb.notes.saveBtn = 存檔
bbb.notes.saveBtn.toolTip = 紀要存檔
-bbb.sharedNotes.title = Shared notes
-bbb.sharedNotes.quickLink.label = Shared notes Window
-bbb.sharedNotes.createNoteWindow.label = Note name
-bbb.sharedNotes.createNoteWindow.close.tooltip = Close
-bbb.sharedNotes.createNoteWindow.close.accessibilityName = Close create new note window
-bbb.sharedNotes.typing.single = {0} is typing...
-bbb.sharedNotes.typing.double = {0} and {1} are typing...
-bbb.sharedNotes.typing.multiple = Several people are typing...
-bbb.sharedNotes.save.toolTip = Save notes to file
-bbb.sharedNotes.save.complete = Notes were successfully saved
-bbb.sharedNotes.save.htmlLabel = Formatted text (.html)
-bbb.sharedNotes.save.txtLabel = Plain text (.txt)
-bbb.sharedNotes.new.label = Create
-bbb.sharedNotes.new.toolTip = Create additional note
-bbb.sharedNotes.limit.label = Notes limit reached
-bbb.sharedNotes.clear.label = Clear this note
-bbb.sharedNotes.undo.toolTip = Undo modification
-bbb.sharedNotes.redo.toolTip = Redo modification
-bbb.sharedNotes.toolbar.toolTip = Text formatting toolbar
-bbb.sharedNotes.settings.toolTip = Shared notes settings
-bbb.sharedNotes.clearWarning.title = Cleaning shared notes
-bbb.sharedNotes.clearWarning.message = This action will clear the notes on this window for everyone, and there's no way to undo. Are you sure you want to clear these notes?
-bbb.sharedNotes.additionalNotes.closeWarning.title = Closing shared notes
-bbb.sharedNotes.additionalNotes.closeWarning.message = This action will destroy the notes on this window for everyone, and there's no way to undo. Are you sure you want to close these notes?
-bbb.sharedNotes.messageLengthWarning.title = Character Change Limit Exceeded
-bbb.sharedNotes.messageLengthWarning.text = Your change exceeds the limit by {0}. Try making a smaller change.
-bbb.sharedNotes.remaining.tooltip = Remaining space available in shared notes
-bbb.sharedNotes.full.tooltip = Capacity reached (try deleting some text)
+bbb.sharedNotes.title =
+bbb.sharedNotes.quickLink.label =
+bbb.sharedNotes.createNoteWindow.label =
+bbb.sharedNotes.createNoteWindow.close.tooltip =
+bbb.sharedNotes.createNoteWindow.close.accessibilityName =
+bbb.sharedNotes.typing.single =
+bbb.sharedNotes.typing.double =
+bbb.sharedNotes.typing.multiple =
+bbb.sharedNotes.save.toolTip =
+bbb.sharedNotes.save.complete =
+bbb.sharedNotes.save.ioerror =
+bbb.sharedNotes.save.htmlLabel =
+bbb.sharedNotes.save.txtLabel =
+bbb.sharedNotes.new.label =
+bbb.sharedNotes.new.toolTip =
+bbb.sharedNotes.limit.label =
+bbb.sharedNotes.clear.label =
+bbb.sharedNotes.undo.toolTip =
+bbb.sharedNotes.redo.toolTip =
+bbb.sharedNotes.toolbar.toolTip =
+bbb.sharedNotes.settings.toolTip =
+bbb.sharedNotes.clearWarning.title =
+bbb.sharedNotes.clearWarning.message =
+bbb.sharedNotes.additionalNotes.closeWarning.title =
+bbb.sharedNotes.additionalNotes.closeWarning.message =
+bbb.sharedNotes.messageLengthWarning.title =
+bbb.sharedNotes.messageLengthWarning.text =
+bbb.sharedNotes.remaining.tooltip =
+bbb.sharedNotes.full.tooltip =
bbb.settings.deskshare.instructions = 在彈出窗口中,點擊同意來啓動桌面共享程序
bbb.settings.deskshare.start = 檢查桌面分享
bbb.settings.voice.volume = 麥克風狀態
-bbb.settings.java.label = Java version error
-bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. The button below will install the newest Java JRE version.
-bbb.settings.java.command = Install newest Java
+bbb.settings.java.label =
+bbb.settings.java.text =
+bbb.settings.java.command =
bbb.settings.flash.label = Flash版本错误
bbb.settings.flash.text = 您安裝的Flash爲{0},BigBlueButton需要{1}以上版本才能正常運行。點擊下面的鏈接安裝最新的Flash Player
bbb.settings.flash.command = 安装最新Flash
bbb.settings.isight.label = iSight 鏡頭錯誤
-bbb.settings.isight.text = If you have problems with your iSight webcam, it may be because you are running OS X 10.6.5, which is known to have a problem with Flash capturing video from the iSight webcam. \n To correct this, the link below will install a newer version of Flash player, or update your Mac to the newest version
+bbb.settings.isight.text =
bbb.settings.isight.command = 安装 Flash 10.2 RC2
bbb.settings.warning.label = 警告
bbb.settings.warning.close = 关闭此警告
bbb.settings.noissues = 没有发现额外问题
bbb.settings.instructions = 在彈出的Flash設置對話框中“接受”Flash使用您的視訊鏡頭。若您能夠看到和聽到自己,說明瀏覽器已設置正確。其他可能存在的問題顯示如下。依次點擊以找到可行的解決方案。
-bbb.bwmonitor.title = Network monitor
-bbb.bwmonitor.upload = Upload
-bbb.bwmonitor.upload.short = Up
-bbb.bwmonitor.download = Download
-bbb.bwmonitor.download.short = Down
-bbb.bwmonitor.total = Total
-bbb.bwmonitor.current = Current
-bbb.bwmonitor.available = Available
-bbb.bwmonitor.latency = Latency
+bbb.bwmonitor.title =
+bbb.bwmonitor.upload =
+bbb.bwmonitor.upload.short =
+bbb.bwmonitor.download =
+bbb.bwmonitor.download.short =
+bbb.bwmonitor.total =
+bbb.bwmonitor.current =
+bbb.bwmonitor.available =
+bbb.bwmonitor.latency =
ltbcustom.bbb.highlighter.toolbar.triangle = 三角形
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = 白板光標切換為三角形
ltbcustom.bbb.highlighter.toolbar.line = 直線
@@ -592,16 +602,16 @@ ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = 切換白板光標為
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = 文本顏色
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = 字體大小
bbb.caption.window.title = 關閉字幕
-bbb.caption.quickLink.label = Closed Caption Window
-bbb.caption.window.titleBar = Closed Caption Window Title Bar
+bbb.caption.quickLink.label =
+bbb.caption.window.titleBar =
bbb.caption.window.minimizeBtn.accessibilityName = 最小化已關閉的字幕窗
bbb.caption.window.maximizeRestoreBtn.accessibilityName = 最大化已關閉的字幕窗
bbb.caption.transcript.noowner = 無
bbb.caption.transcript.youowner = 你
bbb.caption.transcript.pastewarning.title = 字幕黏貼警告
bbb.caption.transcript.pastewarning.text = Cannot paste text longer than {0} characters. You pasted {1} characters.
-bbb.caption.transcript.inputArea.toolTip = Caption Input Area
-bbb.caption.transcript.outputArea.toolTip = Caption Output Area
+bbb.caption.transcript.inputArea.toolTip =
+bbb.caption.transcript.outputArea.toolTip =
bbb.caption.option.label = 選項
bbb.caption.option.language = 語言:
bbb.caption.option.language.tooltip = 選擇字幕語言
@@ -627,25 +637,25 @@ bbb.accessibility.chat.chatBox.navigatedLatest = 您已經瀏覽到了最後一
bbb.accessibility.chat.chatBox.navigatedLatestRead = 您已經瀏覽到了您最近已讀過的消息
bbb.accessibility.chat.chatwindow.input = 聊天輸入
bbb.accessibility.chat.chatwindow.audibleChatNotification = 語音聊天通知
-bbb.accessibility.chat.chatwindow.publicChatOptions = Public Chat Options
+bbb.accessibility.chat.chatwindow.publicChatOptions =
bbb.accessibility.chat.initialDescription = 使用方向鍵瀏覽聊天信息
bbb.accessibility.notes.notesview.input = 紀要輸入
bbb.shortcuthelp.title = 快捷鍵
-bbb.shortcuthelp.titleBar = Shortcut Keys Window Title Bar
+bbb.shortcuthelp.titleBar =
bbb.shortcuthelp.minimizeBtn.accessibilityName = 最小化快捷鍵視窗
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = 最大化快捷輔助視窗
bbb.shortcuthelp.closeBtn.accessibilityName = 關閉快捷鍵視窗
-bbb.shortcuthelp.dropdown.accessibilityName = Shortcut Category
+bbb.shortcuthelp.dropdown.accessibilityName =
bbb.shortcuthelp.dropdown.general = 所有的快捷鍵
bbb.shortcuthelp.dropdown.presentation = 演示相關快捷鍵
bbb.shortcuthelp.dropdown.chat = 聊天相關快捷鍵
bbb.shortcuthelp.dropdown.users = 用戶相關快捷鍵
-bbb.shortcuthelp.dropdown.caption = Closed Caption shortcuts
-bbb.shortcuthelp.browserWarning.text = The full list of shortcuts are only supported in Internet Explorer.
+bbb.shortcuthelp.dropdown.caption =
+bbb.shortcuthelp.browserWarning.text =
bbb.shortcuthelp.headers.shortcut = 快捷鍵
-bbb.shortcuthelp.headers.function = 功能
+bbb.shortcuthelp.headers.function = 功能\
bbb.shortcutkey.general.minimize = 189
bbb.shortcutkey.general.minimize.function = 最小化當前視窗
@@ -671,8 +681,8 @@ bbb.shortcutkey.focus.presentation = 51
bbb.shortcutkey.focus.presentation.function = 將焦點移動到演示視窗
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = 將焦點移動到聊天視窗
-bbb.shortcutkey.focus.caption = 53
-bbb.shortcutkey.focus.caption.function = Move focus to the Closed Caption window
+bbb.shortcutkey.focus.caption =
+bbb.shortcutkey.focus.caption.function =
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = 開啟桌面共享視窗
@@ -686,7 +696,7 @@ bbb.shortcutkey.logout.function = 離開這視訊會議
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = 舉手
-bbb.shortcutkey.present.upload = 89
+bbb.shortcutkey.present.upload =
bbb.shortcutkey.present.upload.function = 上傳投影片
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = 上一頁
@@ -696,32 +706,32 @@ bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = 下一頁
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = 適配寬度
-bbb.shortcutkey.present.fitPage = 82
+bbb.shortcutkey.present.fitPage =
bbb.shortcutkey.present.fitPage.function = 適配頁面
-bbb.shortcutkey.users.makePresenter = 89
+bbb.shortcutkey.users.makePresenter =
bbb.shortcutkey.users.makePresenter.function = 選擇用戶作為演講人
-bbb.shortcutkey.users.kick = 69
-bbb.shortcutkey.users.kick.function = 選擇用戶將其請出會議
+bbb.shortcutkey.users.kick =
+bbb.shortcutkey.users.kick.function =
bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute.function = 選擇用戶對其靜音或取消靜音
bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall.function = 所有人靜音或取消靜音
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = 除演講人外其他所有人靜音
-bbb.shortcutkey.users.breakoutRooms = 75
-bbb.shortcutkey.users.breakoutRooms.function = Breakout rooms window
-bbb.shortcutkey.users.focusBreakoutRooms = 82
-bbb.shortcutkey.users.focusBreakoutRooms.function = Focus to breakout rooms list
-bbb.shortcutkey.users.listenToBreakoutRoom = 76
-bbb.shortcutkey.users.listenToBreakoutRoom.function = Listen to selected breakout room
-bbb.shortcutkey.users.joinBreakoutRoom = 79
-bbb.shortcutkey.users.joinBreakoutRoom.function = Join selected breakout room
+bbb.shortcutkey.users.breakoutRooms =
+bbb.shortcutkey.users.breakoutRooms.function =
+bbb.shortcutkey.users.focusBreakoutRooms =
+bbb.shortcutkey.users.focusBreakoutRooms.function =
+bbb.shortcutkey.users.listenToBreakoutRoom =
+bbb.shortcutkey.users.listenToBreakoutRoom.function =
+bbb.shortcutkey.users.joinBreakoutRoom =
+bbb.shortcutkey.users.joinBreakoutRoom.function =
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = 聚焦聊天tab頁
-bbb.shortcutkey.chat.focusBox = 82
-bbb.shortcutkey.chat.focusBox.function = Focus to chat message list
+bbb.shortcutkey.chat.focusBox =
+bbb.shortcutkey.chat.focusBox.function =
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = 聚焦顏色選擇器
bbb.shortcutkey.chat.sendMessage = 83
@@ -746,15 +756,16 @@ bbb.shortcutkey.chat.chatbox.goread.function = 瀏覽到您已讀的最近的消
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = 臨時測試的快捷鍵
-bbb.shortcutkey.caption.takeOwnership = 79
-bbb.shortcutkey.caption.takeOwnership.function = Take ownsership of selected language
+bbb.shortcutkey.caption.takeOwnership =
+bbb.shortcutkey.caption.takeOwnership.function =
bbb.polling.startButton.tooltip = 啟用投票
bbb.polling.startButton.label = 開始投票
bbb.polling.publishButton.label = 發佈
bbb.polling.closeButton.label = 關閉
-bbb.polling.customPollOption.label = Custom Poll...
+bbb.polling.customPollOption.label =
bbb.polling.pollModal.title = 即時的投票結果
+bbb.polling.pollModal.hint =
bbb.polling.customChoices.title = 輸入投票選項
bbb.polling.respondersLabel.novotes = 等待回應
bbb.polling.respondersLabel.text = {0} 位用戶回應
@@ -802,10 +813,12 @@ bbb.lockSettings.save.tooltip = 套用鎖定的設置
bbb.lockSettings.cancel = 取消
bbb.lockSettings.cancel.toolTip = 關閉視窗不儲存
+bbb.lockSettings.hint =
bbb.lockSettings.moderatorLocking = 管理員鎖定
bbb.lockSettings.privateChat = 私人聊天
bbb.lockSettings.publicChat = 公眾聊天
bbb.lockSettings.webcam = 攝影機
+bbb.lockSettings.webcamsOnlyForModerator =
bbb.lockSettings.microphone = 麥克風
bbb.lockSettings.layout = 版面佈局
bbb.lockSettings.title=參與者靜音
@@ -815,13 +828,14 @@ bbb.lockSettings.lockOnJoin=鎖定進入會議室
bbb.users.breakout.breakoutRooms = 已啟動的課室
bbb.users.breakout.updateBreakoutRooms = 更新使用中的課室
-bbb.users.breakout.timer.toolTip = Time left for breakout rooms
+bbb.users.breakout.timerForRoom.toolTip =
+bbb.users.breakout.timer.toolTip =
bbb.users.breakout.calculatingRemainingTime = 計算剩餘時間
-bbb.users.breakout.closing = Closing
+bbb.users.breakout.closing =
+bbb.users.breakout.closewarning.text =
bbb.users.breakout.rooms = 課室
bbb.users.breakout.roomsCombo.accessibilityName = 要建立的課室號碼
bbb.users.breakout.room = 課室
-bbb.users.breakout.randomAssign = 隨機指定使用者
bbb.users.breakout.timeLimit = 時間限制
bbb.users.breakout.durationStepper.accessibilityName = Time limit in minutes
bbb.users.breakout.minutes = 分鐘
@@ -834,14 +848,14 @@ bbb.users.breakout.invite = 邀請
bbb.users.breakout.close = 關閉
bbb.users.breakout.closeAllRooms = 關閉所有使用中的課室
bbb.users.breakout.insufficientUsers = 使用者不足, 至少要有一個使用者在已啟動的會議室
-bbb.users.breakout.confirm = Join A Breakout Room
-bbb.users.breakout.invited = You have been invited to join Breakout Room
-bbb.users.breakout.accept = By accepting, you will automatically leave the audio and the video conferences.
-bbb.users.breakout.joinSession = Join Session
-bbb.users.breakout.joinSession.accessibilityName = Join Breakout Room Session
-bbb.users.breakout.joinSession.close.tooltip = Close
-bbb.users.breakout.joinSession.close.accessibilityName = Close Join Breakout Room Window
-bbb.users.breakout.youareinroom = You are in Breakout Room {0}
+bbb.users.breakout.confirm =
+bbb.users.breakout.invited =
+bbb.users.breakout.accept =
+bbb.users.breakout.joinSession =
+bbb.users.breakout.joinSession.accessibilityName =
+bbb.users.breakout.joinSession.close.tooltip =
+bbb.users.breakout.joinSession.close.accessibilityName =
+bbb.users.breakout.youareinroom =
bbb.users.roomsGrid.room = 課室
bbb.users.roomsGrid.users = 使用者
bbb.users.roomsGrid.action = 動作
@@ -849,55 +863,9 @@ bbb.users.roomsGrid.transfer = 轉換音效
bbb.users.roomsGrid.join = 進入會議室
bbb.users.roomsGrid.noUsers = 沒有使用者在課室中
-bbb.langSelector.default=Default language
-bbb.langSelector.ar=Arabic
-bbb.langSelector.az_AZ=Azerbaijani
-bbb.langSelector.eu_EU=Basque
-bbb.langSelector.bn_BN=Bengali
-bbb.langSelector.bg_BG=Bulgarian
-bbb.langSelector.ca_ES=Catalan
-bbb.langSelector.zh_CN=Chinese (Simplified)
-bbb.langSelector.zh_TW=Chinese (Traditional)
-bbb.langSelector.hr_HR=Croatian
-bbb.langSelector.cs_CZ=Czech
-bbb.langSelector.da_DK=Danish
-bbb.langSelector.nl_NL=Dutch
-bbb.langSelector.en_US=English
-bbb.langSelector.et_EE=Estonian
-bbb.langSelector.fa_IR=Farsi
-bbb.langSelector.fi_FI=Finnish
-bbb.langSelector.fr_FR=French
-bbb.langSelector.fr_CA=French (Canadian)
-bbb.langSelector.ff_SN=Fulah
-bbb.langSelector.de_DE=German
-bbb.langSelector.el_GR=Greek
-bbb.langSelector.he_IL=Hebrew
-bbb.langSelector.hu_HU=Hungarian
-bbb.langSelector.id_ID=Indonesian
-bbb.langSelector.it_IT=Italian
-bbb.langSelector.ja_JP=Japanese
-bbb.langSelector.ko_KR=Korean
-bbb.langSelector.lv_LV=Latvian
-bbb.langSelector.lt_LT=Lithuania
-bbb.langSelector.mn_MN=Mongolian
-bbb.langSelector.ne_NE=Nepali
-bbb.langSelector.no_NO=Norwegian
-bbb.langSelector.pl_PL=Polish
-bbb.langSelector.pt_BR=Portuguese (Brazilian)
-bbb.langSelector.pt_PT=Portuguese
-bbb.langSelector.ro_RO=Romanian
-bbb.langSelector.ru_RU=Russian
-bbb.langSelector.sr_SR=Serbian (Cyrillic)
-bbb.langSelector.sr_RS=Serbian (Latin)
-bbb.langSelector.si_LK=Sinhala
-bbb.langSelector.sk_SK=Slovak
-bbb.langSelector.sl_SL=Slovenian
-bbb.langSelector.es_ES=Spanish
-bbb.langSelector.es_LA=Spanish (Latin American)
-bbb.langSelector.sv_SE=Swedish
-bbb.langSelector.th_TH=Thai
-bbb.langSelector.tr_TR=Turkish
-bbb.langSelector.uk_UA=Ukrainian
-bbb.langSelector.vi_VN=Vietnamese
-bbb.langSelector.cy_GB=Welsh
-bbb.langSelector.oc=Occitan
+bbb.langSelector.default=
+
+bbb.alert.cancel =
+bbb.alert.ok =
+bbb.alert.no =
+bbb.alert.yes =
diff --git a/bigbluebutton-client/resources/config.xml.template b/bigbluebutton-client/resources/config.xml.template
index a0ed70d4aee0..e20a0d6345a6 100755
--- a/bigbluebutton-client/resources/config.xml.template
+++ b/bigbluebutton-client/resources/config.xml.template
@@ -17,8 +17,9 @@
-
+ showRecordingNotification="true" logoutOnStopRecording="false"
+ askForFeedbackOnLogout="false"/>
+
@@ -52,6 +53,7 @@
uri="rtmp://HOST/screenshare"
showButton="true"
enablePause="true"
+ tryKurentoWebRTC="false"
tryWebRTCFirst="false"
chromeExtensionLink=""
chromeExtensionKey=""
diff --git a/bigbluebutton-client/resources/prod/BigBlueButton.html b/bigbluebutton-client/resources/prod/BigBlueButton.html
index 00e1a24d794c..075632fbd06f 100755
--- a/bigbluebutton-client/resources/prod/BigBlueButton.html
+++ b/bigbluebutton-client/resources/prod/BigBlueButton.html
@@ -142,8 +142,8 @@
-
+
diff --git a/bigbluebutton-client/resources/prod/lib/kurento-extension.js b/bigbluebutton-client/resources/prod/lib/kurento-extension.js
index cd9c5fab9026..1086d53d8af9 100644
--- a/bigbluebutton-client/resources/prod/lib/kurento-extension.js
+++ b/bigbluebutton-client/resources/prod/lib/kurento-extension.js
@@ -1,6 +1,7 @@
var isFirefox = typeof window.InstallTrigger !== 'undefined';
var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
var isChrome = !!window.chrome && !isOpera;
+var isSafari = navigator.userAgent.indexOf("Safari") >= 0 && !isChrome;
var kurentoHandler = null;
Kurento = function (
@@ -20,7 +21,7 @@ Kurento = function (
this.screenConstraints = {};
this.mediaCallback = null;
- this.voiceBridge = voiceBridge;
+ this.voiceBridge = voiceBridge + '-SCREENSHARE';
this.internalMeetingId = internalMeetingId;
this.vid_width = window.screen.width;
@@ -33,9 +34,8 @@ Kurento = function (
this.caller_id_name = conferenceUsername;
this.caller_id_number = conferenceUsername;
- this.pingInterval;
- this.kurentoPort = "kurento-screenshare";
+ this.kurentoPort = "bbb-webrtc-sfu";
this.hostName = window.location.hostname;
this.socketUrl = 'wss://' + this.hostName + '/' + this.kurentoPort;
@@ -43,6 +43,7 @@ Kurento = function (
if (chromeExtension != null) {
this.chromeExtension = chromeExtension;
+ window.chromeExtension = chromeExtension;
}
if (onFail != null) {
@@ -57,21 +58,44 @@ Kurento = function (
this.KurentoManager= function () {
this.kurentoVideo = null;
- this.kurentoScreenShare = null;
+ this.kurentoScreenshare = null;
};
KurentoManager.prototype.exitScreenShare = function () {
- if (this.kurentoScreenShare != null) {
- if(kurentoHandler.pingInterval) {
- clearInterval(kurentoHandler.pingInterval);
+ console.log(" [exitScreenShare] Exiting screensharing");
+ if(typeof this.kurentoScreenshare !== 'undefined' && this.kurentoScreenshare) {
+ if(this.kurentoScreenshare.ws !== null) {
+ this.kurentoScreenshare.ws.onclose = function(){};
+ this.kurentoScreenshare.ws.close();
}
- if(kurentoHandler.ws !== null) {
- kurentoHandler.ws.onclose = function(){};
- kurentoHandler.ws.close();
+
+ this.kurentoScreenshare.disposeScreenShare();
+ this.kurentoScreenshare = null;
+ }
+
+ if (this.kurentoScreenshare) {
+ this.kurentoScreenshare = null;
+ }
+
+ if(typeof this.kurentoVideo !== 'undefined' && this.kurentoVideo) {
+ this.exitVideo();
+ }
+};
+
+KurentoManager.prototype.exitVideo = function () {
+ console.log(" [exitScreenShare] Exiting screensharing viewing");
+ if(typeof this.kurentoVideo !== 'undefined' && this.kurentoVideo) {
+ if(this.kurentoVideo.ws !== null) {
+ this.kurentoVideo.ws.onclose = function(){};
+ this.kurentoVideo.ws.close();
}
- kurentoHandler.disposeScreenShare();
- this.kurentoScreenShare = null;
- kurentoHandler = null;
+
+ this.kurentoVideo.disposeScreenShare();
+ this.kurentoVideo = null;
+ }
+
+ if (this.kurentoVideo) {
+ this.kurentoVideo = null;
}
};
@@ -79,24 +103,21 @@ KurentoManager.prototype.shareScreen = function (tag) {
this.exitScreenShare();
var obj = Object.create(Kurento.prototype);
Kurento.apply(obj, arguments);
- this.kurentoScreenShare = obj;
- kurentoHandler = obj;
- this.kurentoScreenShare.setScreenShare(tag);
+ this.kurentoScreenshare = obj;
+ this.kurentoScreenshare.setScreenShare(tag);
};
-// Still unused, part of the HTML5 implementation
KurentoManager.prototype.joinWatchVideo = function (tag) {
this.exitVideo();
var obj = Object.create(Kurento.prototype);
Kurento.apply(obj, arguments);
this.kurentoVideo = obj;
- kurentoHandler = obj;
this.kurentoVideo.setWatchVideo(tag);
};
Kurento.prototype.setScreenShare = function (tag) {
- this.mediaCallback = this.makeShare;
+ this.mediaCallback = this.makeShare.bind(this);
this.create(tag);
};
@@ -112,19 +133,18 @@ Kurento.prototype.init = function () {
console.log("this browser supports websockets");
this.ws = new WebSocket(this.socketUrl);
- this.ws.onmessage = this.onWSMessage;
- this.ws.onclose = function (close) {
+ this.ws.onmessage = this.onWSMessage.bind(this);
+ this.ws.onclose = (close) => {
kurentoManager.exitScreenShare();
self.onFail("Websocket connection closed");
};
- this.ws.onerror = function (error) {
+ this.ws.onerror = (error) => {
kurentoManager.exitScreenShare();
self.onFail("Websocket connection error");
};
- this.ws.onopen = function() {
- self.pingInterval = setInterval(self.ping, 3000);
+ this.ws.onopen = function () {
self.mediaCallback();
- };
+ }.bind(self);
}
else
console.log("this browser does not support websockets");
@@ -135,15 +155,16 @@ Kurento.prototype.onWSMessage = function (message) {
switch (parsedMessage.id) {
case 'presenterResponse':
- kurentoHandler.presenterResponse(parsedMessage);
+ this.presenterResponse(parsedMessage);
+ break;
+ case 'viewerResponse':
+ this.viewerResponse(parsedMessage);
break;
case 'stopSharing':
kurentoManager.exitScreenShare();
break;
case 'iceCandidate':
- kurentoHandler.webRtcPeer.addIceCandidate(parsedMessage.candidate);
- break;
- case 'pong':
+ this.webRtcPeer.addIceCandidate(parsedMessage.candidate);
break;
default:
console.error('Unrecognized message', parsedMessage);
@@ -156,21 +177,33 @@ Kurento.prototype.setRenderTag = function (tag) {
Kurento.prototype.presenterResponse = function (message) {
if (message.response != 'accepted') {
- var errorMsg = message.message ? message.message : 'Unknow error';
- console.warn('Call not accepted for the following reason: ' + errorMsg);
+ var errorMsg = message.message ? message.message : 'Unknown error';
+ console.warn('Call not accepted for the following reason: ' + JSON.stringify(errorMsg, null, 2));
kurentoManager.exitScreenShare();
- kurentoHandler.onFail(errorMessage);
+ this.onFail(errorMessage);
} else {
console.log("Presenter call was accepted with SDP => " + message.sdpAnswer);
this.webRtcPeer.processAnswer(message.sdpAnswer);
}
}
+Kurento.prototype.viewerResponse = function (message) {
+ if (message.response != 'accepted') {
+ var errorMsg = message.message ? message.message : 'Unknown error';
+ console.warn('Call not accepted for the following reason: ' + errorMsg);
+ kurentoManager.exitScreenShare();
+ this.onFail(errorMessage);
+ } else {
+ console.log("Viewer call was accepted with SDP => " + message.sdpAnswer);
+ this.webRtcPeer.processAnswer(message.sdpAnswer);
+ }
+}
+
Kurento.prototype.serverResponse = function (message) {
if (message.response != 'accepted') {
var errorMsg = message.message ? message.message : 'Unknow error';
console.warn('Call not accepted for the following reason: ' + errorMsg);
- kurentoHandler.dispose();
+ kurentoManager.exitScreenShare();
} else {
this.webRtcPeer.processAnswer(message.sdpAnswer);
}
@@ -178,89 +211,105 @@ Kurento.prototype.serverResponse = function (message) {
Kurento.prototype.makeShare = function() {
var self = this;
- console.log("Kurento.prototype.makeShare " + JSON.stringify(this.webRtcPeer, null, 2));
if (!this.webRtcPeer) {
-
var options = {
- onicecandidate : this.onIceCandidate
+ onicecandidate : self.onIceCandidate.bind(self)
}
- console.log("Peer options " + JSON.stringify(options, null, 2));
-
- kurentoHandler.startScreenStreamFrom();
-
+ this.startScreenStreamFrom();
}
}
Kurento.prototype.onOfferPresenter = function (error, offerSdp) {
+ let self = this;
if(error) {
console.log("Kurento.prototype.onOfferPresenter Error " + error);
- kurentoHandler.onFail(error);
+ this.onFail(error);
return;
}
var message = {
id : 'presenter',
type: 'screenshare',
- internalMeetingId: kurentoHandler.internalMeetingId,
- voiceBridge: kurentoHandler.voiceBridge,
- callerName : kurentoHandler.caller_id_name,
+ role: 'presenter',
+ internalMeetingId: self.internalMeetingId,
+ voiceBridge: self.voiceBridge,
+ callerName : self.caller_id_name,
sdpOffer : offerSdp,
- vh: kurentoHandler.vid_height,
- vw: kurentoHandler.vid_width
+ vh: self.vid_height,
+ vw: self.vid_width
};
console.log("onOfferPresenter sending to screenshare server => " + JSON.stringify(message, null, 2));
- kurentoHandler.sendMessage(message);
+ this.sendMessage(message);
}
Kurento.prototype.startScreenStreamFrom = function () {
- var screenInfo = null;
- var _this = this;
+ var self = this;
if (!!window.chrome) {
- if (!_this.chromeExtension) {
- _this.logError({
+ if (!self.chromeExtension) {
+ self.logError({
status: 'failed',
message: 'Missing Chrome Extension key',
});
- _this.onFail();
+ self.onFail();
return;
}
}
// TODO it would be nice to check those constraints
- _this.screenConstraints.video = {};
+ if (typeof screenConstraints !== undefined) {
+ self.screenConstraints = {};
+ }
+ self.screenConstraints.video = {};
+ console.log(self);
var options = {
- //localVideo: this.renderTag,
- onicecandidate : _this.onIceCandidate,
- mediaConstraints : _this.screenConstraints,
+ localVideo: document.getElementById(this.renderTag),
+ onicecandidate : self.onIceCandidate.bind(self),
+ mediaConstraints : self.screenConstraints,
sendSource : 'desktop'
};
console.log(" Peer options => " + JSON.stringify(options, null, 2));
- _this.webRtcPeer = kurentoUtils.WebRtcPeer.WebRtcPeerSendonly(options, function(error) {
+ self.webRtcPeer = kurentoUtils.WebRtcPeer.WebRtcPeerSendonly(options, function(error) {
if(error) {
console.log("WebRtcPeerSendonly constructor error " + JSON.stringify(error, null, 2));
- kurentoHandler.onFail(error);
+ self.onFail(error);
return kurentoManager.exitScreenShare();
}
- _this.webRtcPeer.generateOffer(_this.onOfferPresenter);
+ self.webRtcPeer.generateOffer(self.onOfferPresenter.bind(self));
console.log("Generated peer offer w/ options " + JSON.stringify(options));
});
}
-Kurento.prototype.onIceCandidate = function(candidate) {
+Kurento.prototype.onIceCandidate = function (candidate) {
+ let self = this;
console.log('Local candidate' + JSON.stringify(candidate));
var message = {
id : 'onIceCandidate',
+ role: 'presenter',
type: 'screenshare',
- voiceBridge: kurentoHandler.voiceBridge,
+ voiceBridge: self.voiceBridge,
candidate : candidate
}
- console.log("this object " + JSON.stringify(this, null, 2));
- kurentoHandler.sendMessage(message);
+ this.sendMessage(message);
+}
+
+Kurento.prototype.onViewerIceCandidate = function (candidate) {
+ let self = this;
+ console.log('Viewer local candidate' + JSON.stringify(candidate));
+
+ var message = {
+ id : 'viewerIceCandidate',
+ role: 'viewer',
+ type: 'screenshare',
+ voiceBridge: self.voiceBridge,
+ candidate : candidate,
+ callerName: self.caller_id_name
+ }
+ this.sendMessage(message);
}
Kurento.prototype.setWatchVideo = function (tag) {
@@ -276,60 +325,50 @@ Kurento.prototype.viewer = function () {
if (!this.webRtcPeer) {
var options = {
- remoteVideo: this.renderTag,
- onicecandidate : onIceCandidate
+ remoteVideo: document.getElementById(this.renderTag),
+ onicecandidate : this.onViewerIceCandidate.bind(this)
}
- webRtcPeer = kurentoUtils.WebRtcPeer.WebRtcPeerRecvonly(options, function(error) {
+ self.webRtcPeer = kurentoUtils.WebRtcPeer.WebRtcPeerRecvonly(options, function(error) {
if(error) {
- return kurentoHandler.onFail(error);
+ return self.onFail(error);
}
- this.generateOffer(onOfferViewer);
+ this.generateOffer(self.onOfferViewer.bind(self));
});
}
};
Kurento.prototype.onOfferViewer = function (error, offerSdp) {
+ let self = this;
if(error) {
console.log("Kurento.prototype.onOfferViewer Error " + error);
- return kurentoHandler.onFail();
+ return this.onFail();
}
var message = {
id : 'viewer',
type: 'screenshare',
- internalMeetingId: kurentoHandler.internalMeetingId,
- voiceBridge: kurentoHandler.voiceBridge,
- callerName : kurentoHandler.caller_id_name,
+ role: 'viewer',
+ internalMeetingId: self.internalMeetingId,
+ voiceBridge: self.voiceBridge,
+ callerName : self.caller_id_name,
sdpOffer : offerSdp
};
console.log("onOfferViewer sending to screenshare server => " + JSON.stringify(message, null, 2));
- kurentoHandler.sendMessage(message);
+ this.sendMessage(message);
};
-Kurento.prototype.ping = function() {
- var message = {
- id : 'ping',
- type: 'screenshare',
- internalMeetingId: kurentoHandler.internalMeetingId,
- voiceBridge: kurentoHandler.voiceBridge,
- callerName : kurentoHandler.caller_id_name,
- };
-
- kurentoHandler.sendMessage(message);
-}
-
Kurento.prototype.stop = function() {
- if (this.webRtcPeer) {
- var message = {
- id : 'stop',
- type : 'screenshare',
- voiceBridge: kurentoHandler.voiceBridge
- }
- kurentoHandler.sendMessage(message);
- kurentoHandler.disposeScreenShare();
- }
+ //if (this.webRtcPeer) {
+ // var message = {
+ // id : 'stop',
+ // type : 'screenshare',
+ // voiceBridge: kurentoHandler.voiceBridge
+ // }
+ // kurentoHandler.sendMessage(message);
+ // kurentoHandler.disposeScreenShare();
+ //}
}
Kurento.prototype.dispose = function() {
@@ -360,19 +399,6 @@ Kurento.prototype.logError = function (obj) {
console.error(obj);
};
-Kurento.prototype.getChromeScreenConstraints = function(callback, extensionId) {
- chrome.runtime.sendMessage(extensionId, {
- getStream: true,
- sources: [
- "window",
- "screen",
- "tab"
- ]},
- function(response) {
- console.log(response);
- callback(response);
- });
-};
Kurento.normalizeCallback = function (callback) {
if (typeof callback == 'function') {
@@ -389,30 +415,47 @@ Kurento.normalizeCallback = function (callback) {
// this function explains how to use above methods/objects
window.getScreenConstraints = function(sendSource, callback) {
- var _this = this;
- var chromeMediaSourceId = sendSource;
- if(isChrome) {
- kurentoHandler.getChromeScreenConstraints (function (constraints) {
+ let chromeMediaSourceId = sendSource;
+ let screenConstraints = {video: {}};
- var sourceId = constraints.streamId;
+ if(isChrome) {
+ getChromeScreenConstraints ((constraints) => {
+ if(!constraints){
+ document.dispatchEvent(new Event("installChromeExtension"));
+ return;
+ }
+ extensionInstalled = true;
+ let sourceId = constraints.streamId;
// this statement sets gets 'sourceId" and sets "chromeMediaSourceId"
- kurentoHandler.screenConstraints.video.chromeMediaSource = { exact: [sendSource]};
- kurentoHandler.screenConstraints.video.chromeMediaSourceId= sourceId;
- console.log("getScreenConstraints for Chrome returns => " +JSON.stringify(kurentoHandler.screenConstraints, null, 2));
+ screenConstraints.video.chromeMediaSource = { exact: [sendSource]};
+ screenConstraints.video.chromeMediaSourceId = sourceId;
+ console.log("getScreenConstraints for Chrome returns => ");
+ console.log(screenConstraints);
// now invoking native getUserMedia API
- callback(null, kurentoHandler.screenConstraints);
+ callback(null, screenConstraints);
- }, kurentoHandler.chromeExtension);
+ }, chromeExtension);
}
else if (isFirefox) {
- kurentoHandler.screenConstraints.video.mediaSource= "screen";
- kurentoHandler.screenConstraints.video.width= {max: kurentoHandler.vid_width};
- kurentoHandler.screenConstraints.video.height = {max: kurentoHandler.vid_height};
+ screenConstraints.video.mediaSource= "window";
+ screenConstraints.video.width= {max: "1280"};
+ screenConstraints.video.height = {max: "720"};
- console.log("getScreenConstraints for Firefox returns => " +JSON.stringify(kurentoHandler.screenConstraints, null, 2));
+ console.log("getScreenConstraints for Firefox returns => ");
+ console.log(screenConstraints);
// now invoking native getUserMedia API
- callback(null, kurentoHandler.screenConstraints);
+ callback(null, screenConstraints);
+ }
+ else if(isSafari) {
+ screenConstraints.video.mediaSource= "screen";
+ screenConstraints.video.width= {max: window.screen.width};
+ screenConstraints.video.height = {max: window.screen.vid_height};
+
+ console.log("getScreenConstraints for Safari returns => ");
+ console.log(screenConstraints);
+ // now invoking native getUserMedia API
+ callback(null, screenConstraints);
}
}
@@ -437,3 +480,22 @@ window.kurentoWatchVideo = function () {
window.kurentoInitialize();
window.kurentoManager.joinWatchVideo.apply(window.kurentoManager, arguments);
};
+
+window.kurentoExitVideo = function () {
+ window.kurentoInitialize();
+ window.kurentoManager.exitVideo();
+}
+
+window.getChromeScreenConstraints = function(callback, extensionId) {
+ chrome.runtime.sendMessage(extensionId, {
+ getStream: true,
+ sources: [
+ "window",
+ "screen",
+ "tab"
+ ]},
+ function(response) {
+ console.log(response);
+ callback(response);
+ });
+};;
diff --git a/bigbluebutton-client/resources/prod/lib/kurento-utils.js b/bigbluebutton-client/resources/prod/lib/kurento-utils.js
new file mode 100644
index 000000000000..d171093e8784
--- /dev/null
+++ b/bigbluebutton-client/resources/prod/lib/kurento-utils.js
@@ -0,0 +1,4362 @@
+(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.kurentoUtils = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 0) {
+ return sdp.slice(0, n);
+ } else {
+ return sdp;
+ }
+}
+function getSimulcastInfo(videoStream) {
+ var videoTracks = videoStream.getVideoTracks();
+ if (!videoTracks.length) {
+ logger.warn('No video tracks available in the video stream');
+ return '';
+ }
+ var lines = [
+ 'a=x-google-flag:conference',
+ 'a=ssrc-group:SIM 1 2 3',
+ 'a=ssrc:1 cname:localVideo',
+ 'a=ssrc:1 msid:' + videoStream.id + ' ' + videoTracks[0].id,
+ 'a=ssrc:1 mslabel:' + videoStream.id,
+ 'a=ssrc:1 label:' + videoTracks[0].id,
+ 'a=ssrc:2 cname:localVideo',
+ 'a=ssrc:2 msid:' + videoStream.id + ' ' + videoTracks[0].id,
+ 'a=ssrc:2 mslabel:' + videoStream.id,
+ 'a=ssrc:2 label:' + videoTracks[0].id,
+ 'a=ssrc:3 cname:localVideo',
+ 'a=ssrc:3 msid:' + videoStream.id + ' ' + videoTracks[0].id,
+ 'a=ssrc:3 mslabel:' + videoStream.id,
+ 'a=ssrc:3 label:' + videoTracks[0].id
+ ];
+ lines.push('');
+ return lines.join('\n');
+}
+function WebRtcPeer(mode, options, callback) {
+ if (!(this instanceof WebRtcPeer)) {
+ return new WebRtcPeer(mode, options, callback);
+ }
+ WebRtcPeer.super_.call(this);
+ if (options instanceof Function) {
+ callback = options;
+ options = undefined;
+ }
+ options = options || {};
+ callback = (callback || noop).bind(this);
+ var self = this;
+ var localVideo = options.localVideo;
+ var remoteVideo = options.remoteVideo;
+ var videoStream = options.videoStream;
+ var audioStream = options.audioStream;
+ var mediaConstraints = options.mediaConstraints;
+ var connectionConstraints = options.connectionConstraints;
+ var pc = options.peerConnection;
+ var sendSource = options.sendSource || 'webcam';
+ var dataChannelConfig = options.dataChannelConfig;
+ var useDataChannels = options.dataChannels || false;
+ var dataChannel;
+ var guid = uuid.v4();
+ var configuration = recursive({ iceServers: freeice() }, options.configuration);
+ var onicecandidate = options.onicecandidate;
+ if (onicecandidate)
+ this.on('icecandidate', onicecandidate);
+ var oncandidategatheringdone = options.oncandidategatheringdone;
+ if (oncandidategatheringdone) {
+ this.on('candidategatheringdone', oncandidategatheringdone);
+ }
+ var simulcast = options.simulcast;
+ var multistream = options.multistream;
+ var interop = new sdpTranslator.Interop();
+ var candidatesQueueOut = [];
+ var candidategatheringdone = false;
+ Object.defineProperties(this, {
+ 'peerConnection': {
+ get: function () {
+ return pc;
+ }
+ },
+ 'id': {
+ value: options.id || guid,
+ writable: false
+ },
+ 'remoteVideo': {
+ get: function () {
+ return remoteVideo;
+ }
+ },
+ 'localVideo': {
+ get: function () {
+ return localVideo;
+ }
+ },
+ 'dataChannel': {
+ get: function () {
+ return dataChannel;
+ }
+ },
+ 'currentFrame': {
+ get: function () {
+ if (!remoteVideo)
+ return;
+ if (remoteVideo.readyState < remoteVideo.HAVE_CURRENT_DATA)
+ throw new Error('No video stream data available');
+ var canvas = document.createElement('canvas');
+ canvas.width = remoteVideo.videoWidth;
+ canvas.height = remoteVideo.videoHeight;
+ canvas.getContext('2d').drawImage(remoteVideo, 0, 0);
+ return canvas;
+ }
+ }
+ });
+ if (!pc) {
+ pc = new RTCPeerConnection(configuration);
+ if (useDataChannels && !dataChannel) {
+ var dcId = 'WebRtcPeer-' + self.id;
+ var dcOptions = undefined;
+ if (dataChannelConfig) {
+ dcId = dataChannelConfig.id || dcId;
+ dcOptions = dataChannelConfig.options;
+ }
+ dataChannel = pc.createDataChannel(dcId, dcOptions);
+ if (dataChannelConfig) {
+ dataChannel.onopen = dataChannelConfig.onopen;
+ dataChannel.onclose = dataChannelConfig.onclose;
+ dataChannel.onmessage = dataChannelConfig.onmessage;
+ dataChannel.onbufferedamountlow = dataChannelConfig.onbufferedamountlow;
+ dataChannel.onerror = dataChannelConfig.onerror || noop;
+ }
+ }
+ }
+ pc.addEventListener('icecandidate', function (event) {
+ var candidate = event.candidate;
+ if (EventEmitter.listenerCount(self, 'icecandidate') || EventEmitter.listenerCount(self, 'candidategatheringdone')) {
+ if (candidate) {
+ var cand;
+ if (multistream && usePlanB) {
+ cand = interop.candidateToUnifiedPlan(candidate);
+ } else {
+ cand = candidate;
+ }
+ self.emit('icecandidate', cand);
+ candidategatheringdone = false;
+ } else if (!candidategatheringdone) {
+ self.emit('candidategatheringdone');
+ candidategatheringdone = true;
+ }
+ } else if (!candidategatheringdone) {
+ candidatesQueueOut.push(candidate);
+ if (!candidate)
+ candidategatheringdone = true;
+ }
+ });
+ pc.ontrack = options.onaddstream;
+ pc.onnegotiationneeded = options.onnegotiationneeded;
+ this.on('newListener', function (event, listener) {
+ if (event === 'icecandidate' || event === 'candidategatheringdone') {
+ while (candidatesQueueOut.length) {
+ var candidate = candidatesQueueOut.shift();
+ if (!candidate === (event === 'candidategatheringdone')) {
+ listener(candidate);
+ }
+ }
+ }
+ });
+ var addIceCandidate = bufferizeCandidates(pc);
+ this.addIceCandidate = function (iceCandidate, callback) {
+ var candidate;
+ if (multistream && usePlanB) {
+ candidate = interop.candidateToPlanB(iceCandidate);
+ } else {
+ candidate = new RTCIceCandidate(iceCandidate);
+ }
+ logger.debug('Remote ICE candidate received', iceCandidate);
+ callback = (callback || noop).bind(this);
+ addIceCandidate(candidate, callback);
+ };
+ this.generateOffer = function (callback) {
+ callback = callback.bind(this);
+ var offerAudio = true;
+ var offerVideo = true;
+ if (mediaConstraints) {
+ offerAudio = typeof mediaConstraints.audio === 'boolean' ? mediaConstraints.audio : true;
+ offerVideo = typeof mediaConstraints.video === 'boolean' ? mediaConstraints.video : true;
+ }
+ var browserDependantConstraints = {
+ offerToReceiveAudio: mode !== 'sendonly' && offerAudio,
+ offerToReceiveVideo: mode !== 'sendonly' && offerVideo
+ };
+ var constraints = browserDependantConstraints;
+ logger.debug('constraints: ' + JSON.stringify(constraints));
+ pc.createOffer(constraints).then(function (offer) {
+ logger.debug('Created SDP offer');
+ offer = mangleSdpToAddSimulcast(offer);
+ return pc.setLocalDescription(offer);
+ }).then(function () {
+ var localDescription = pc.localDescription;
+ logger.debug('Local description set', localDescription.sdp);
+ if (multistream && usePlanB) {
+ localDescription = interop.toUnifiedPlan(localDescription);
+ logger.debug('offer::origPlanB->UnifiedPlan', dumpSDP(localDescription));
+ }
+ callback(null, localDescription.sdp, self.processAnswer.bind(self));
+ }).catch(callback);
+ };
+ this.getLocalSessionDescriptor = function () {
+ return pc.localDescription;
+ };
+ this.getRemoteSessionDescriptor = function () {
+ return pc.remoteDescription;
+ };
+ function setRemoteVideo() {
+ if (remoteVideo) {
+ var stream = pc.getRemoteStreams()[0];
+ remoteVideo.pause();
+ remoteVideo.srcObject = stream;
+ remoteVideo.load();
+ logger.info('Remote URL:', remoteVideo.srcObject);
+ }
+ }
+ this.showLocalVideo = function () {
+ localVideo.srcObject = videoStream;
+ localVideo.muted = true;
+ };
+ this.send = function (data) {
+ if (dataChannel && dataChannel.readyState === 'open') {
+ dataChannel.send(data);
+ } else {
+ logger.warn('Trying to send data over a non-existing or closed data channel');
+ }
+ };
+ this.processAnswer = function (sdpAnswer, callback) {
+ callback = (callback || noop).bind(this);
+ var answer = new RTCSessionDescription({
+ type: 'answer',
+ sdp: sdpAnswer
+ });
+ if (multistream && usePlanB) {
+ var planBAnswer = interop.toPlanB(answer);
+ logger.debug('asnwer::planB', dumpSDP(planBAnswer));
+ answer = planBAnswer;
+ }
+ logger.debug('SDP answer received, setting remote description');
+ if (pc.signalingState === 'closed') {
+ return callback('PeerConnection is closed');
+ }
+ pc.setRemoteDescription(answer, function () {
+ setRemoteVideo();
+ callback();
+ }, callback);
+ };
+ this.processOffer = function (sdpOffer, callback) {
+ callback = callback.bind(this);
+ var offer = new RTCSessionDescription({
+ type: 'offer',
+ sdp: sdpOffer
+ });
+ if (multistream && usePlanB) {
+ var planBOffer = interop.toPlanB(offer);
+ logger.debug('offer::planB', dumpSDP(planBOffer));
+ offer = planBOffer;
+ }
+ logger.debug('SDP offer received, setting remote description');
+ if (pc.signalingState === 'closed') {
+ return callback('PeerConnection is closed');
+ }
+ pc.setRemoteDescription(offer).then(function () {
+ return setRemoteVideo();
+ }).then(function () {
+ return pc.createAnswer();
+ }).then(function (answer) {
+ answer = mangleSdpToAddSimulcast(answer);
+ logger.debug('Created SDP answer');
+ return pc.setLocalDescription(answer);
+ }).then(function () {
+ var localDescription = pc.localDescription;
+ if (multistream && usePlanB) {
+ localDescription = interop.toUnifiedPlan(localDescription);
+ logger.debug('answer::origPlanB->UnifiedPlan', dumpSDP(localDescription));
+ }
+ logger.debug('Local description set', localDescription.sdp);
+ callback(null, localDescription.sdp);
+ }).catch(callback);
+ };
+ function mangleSdpToAddSimulcast(answer) {
+ if (simulcast) {
+ if (browser.name === 'Chrome' || browser.name === 'Chromium') {
+ logger.debug('Adding multicast info');
+ answer = new RTCSessionDescription({
+ 'type': answer.type,
+ 'sdp': removeFIDFromOffer(answer.sdp) + getSimulcastInfo(videoStream)
+ });
+ } else {
+ logger.warn('Simulcast is only available in Chrome browser.');
+ }
+ }
+ return answer;
+ }
+ function start() {
+ if (pc.signalingState === 'closed') {
+ callback('The peer connection object is in "closed" state. This is most likely due to an invocation of the dispose method before accepting in the dialogue');
+ }
+ if (videoStream && localVideo) {
+ self.showLocalVideo();
+ }
+ if (videoStream) {
+ pc.addStream(videoStream);
+ }
+ if (audioStream) {
+ pc.addStream(audioStream);
+ }
+ var browser = parser.getBrowser();
+ if (mode === 'sendonly' && (browser.name === 'Chrome' || browser.name === 'Chromium') && browser.major === 39) {
+ mode = 'sendrecv';
+ }
+ callback();
+ }
+ if (mode !== 'recvonly' && !videoStream && !audioStream) {
+ function getMedia(constraints) {
+ if (constraints === undefined) {
+ constraints = MEDIA_CONSTRAINTS;
+ }
+ navigator.mediaDevices.getUserMedia(constraints).then(function (stream) {
+ videoStream = stream;
+ start();
+ }).catch(callback);
+ }
+ if (sendSource === 'webcam') {
+ getMedia(mediaConstraints);
+ } else {
+ getScreenConstraints(sendSource, function (error, constraints_) {
+ if (error)
+ return callback(error);
+ constraints = [mediaConstraints];
+ constraints.unshift(constraints_);
+ getMedia(recursive.apply(undefined, constraints));
+ }, guid);
+ }
+ } else {
+ setTimeout(start, 0);
+ }
+ this.on('_dispose', function () {
+ if (localVideo) {
+ localVideo.pause();
+ localVideo.src = '';
+ localVideo.load();
+ localVideo.muted = false;
+ }
+ if (remoteVideo) {
+ remoteVideo.pause();
+ remoteVideo.src = '';
+ remoteVideo.load();
+ }
+ self.removeAllListeners();
+ if (window.cancelChooseDesktopMedia !== undefined) {
+ window.cancelChooseDesktopMedia(guid);
+ }
+ });
+}
+inherits(WebRtcPeer, EventEmitter);
+function createEnableDescriptor(type) {
+ var method = 'get' + type + 'Tracks';
+ return {
+ enumerable: true,
+ get: function () {
+ if (!this.peerConnection)
+ return;
+ var streams = this.peerConnection.getLocalStreams();
+ if (!streams.length)
+ return;
+ for (var i = 0, stream; stream = streams[i]; i++) {
+ var tracks = stream[method]();
+ for (var j = 0, track; track = tracks[j]; j++)
+ if (!track.enabled)
+ return false;
+ }
+ return true;
+ },
+ set: function (value) {
+ function trackSetEnable(track) {
+ track.enabled = value;
+ }
+ this.peerConnection.getLocalStreams().forEach(function (stream) {
+ stream[method]().forEach(trackSetEnable);
+ });
+ }
+ };
+}
+Object.defineProperties(WebRtcPeer.prototype, {
+ 'enabled': {
+ enumerable: true,
+ get: function () {
+ return this.audioEnabled && this.videoEnabled;
+ },
+ set: function (value) {
+ this.audioEnabled = this.videoEnabled = value;
+ }
+ },
+ 'audioEnabled': createEnableDescriptor('Audio'),
+ 'videoEnabled': createEnableDescriptor('Video')
+});
+WebRtcPeer.prototype.getLocalStream = function (index) {
+ if (this.peerConnection) {
+ return this.peerConnection.getLocalStreams()[index || 0];
+ }
+};
+WebRtcPeer.prototype.getRemoteStream = function (index) {
+ if (this.peerConnection) {
+ return this.peerConnection.getRemoteStreams()[index || 0];
+ }
+};
+WebRtcPeer.prototype.dispose = function () {
+ logger.debug('Disposing WebRtcPeer');
+ var pc = this.peerConnection;
+ var dc = this.dataChannel;
+ try {
+ if (dc) {
+ if (dc.signalingState === 'closed')
+ return;
+ dc.close();
+ }
+ if (pc) {
+ if (pc.signalingState === 'closed')
+ return;
+ pc.getLocalStreams().forEach(streamStop);
+ pc.close();
+ }
+ } catch (err) {
+ logger.warn('Exception disposing webrtc peer ' + err);
+ }
+ this.emit('_dispose');
+};
+function WebRtcPeerRecvonly(options, callback) {
+ if (!(this instanceof WebRtcPeerRecvonly)) {
+ return new WebRtcPeerRecvonly(options, callback);
+ }
+ WebRtcPeerRecvonly.super_.call(this, 'recvonly', options, callback);
+}
+inherits(WebRtcPeerRecvonly, WebRtcPeer);
+function WebRtcPeerSendonly(options, callback) {
+ if (!(this instanceof WebRtcPeerSendonly)) {
+ return new WebRtcPeerSendonly(options, callback);
+ }
+ WebRtcPeerSendonly.super_.call(this, 'sendonly', options, callback);
+}
+inherits(WebRtcPeerSendonly, WebRtcPeer);
+function WebRtcPeerSendrecv(options, callback) {
+ if (!(this instanceof WebRtcPeerSendrecv)) {
+ return new WebRtcPeerSendrecv(options, callback);
+ }
+ WebRtcPeerSendrecv.super_.call(this, 'sendrecv', options, callback);
+}
+inherits(WebRtcPeerSendrecv, WebRtcPeer);
+function harkUtils(stream, options) {
+ return hark(stream, options);
+}
+exports.bufferizeCandidates = bufferizeCandidates;
+exports.WebRtcPeerRecvonly = WebRtcPeerRecvonly;
+exports.WebRtcPeerSendonly = WebRtcPeerSendonly;
+exports.WebRtcPeerSendrecv = WebRtcPeerSendrecv;
+exports.hark = harkUtils;
+},{"events":4,"freeice":5,"hark":8,"inherits":9,"kurento-browser-extensions":10,"merge":11,"sdp-translator":18,"ua-parser-js":21,"uuid":23}],2:[function(require,module,exports){
+if (window.addEventListener)
+ module.exports = require('./index');
+},{"./index":3}],3:[function(require,module,exports){
+var WebRtcPeer = require('./WebRtcPeer');
+exports.WebRtcPeer = WebRtcPeer;
+},{"./WebRtcPeer":1}],4:[function(require,module,exports){
+// Copyright Joyent, Inc. and other Node contributors.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to permit
+// persons to whom the Software is furnished to do so, subject to the
+// following conditions:
+//
+// The above copyright notice and this permission notice shall be included
+// in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+// USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+function EventEmitter() {
+ this._events = this._events || {};
+ this._maxListeners = this._maxListeners || undefined;
+}
+module.exports = EventEmitter;
+
+// Backwards-compat with node 0.10.x
+EventEmitter.EventEmitter = EventEmitter;
+
+EventEmitter.prototype._events = undefined;
+EventEmitter.prototype._maxListeners = undefined;
+
+// By default EventEmitters will print a warning if more than 10 listeners are
+// added to it. This is a useful default which helps finding memory leaks.
+EventEmitter.defaultMaxListeners = 10;
+
+// Obviously not all Emitters should be limited to 10. This function allows
+// that to be increased. Set to zero for unlimited.
+EventEmitter.prototype.setMaxListeners = function(n) {
+ if (!isNumber(n) || n < 0 || isNaN(n))
+ throw TypeError('n must be a positive number');
+ this._maxListeners = n;
+ return this;
+};
+
+EventEmitter.prototype.emit = function(type) {
+ var er, handler, len, args, i, listeners;
+
+ if (!this._events)
+ this._events = {};
+
+ // If there is no 'error' event listener then throw.
+ if (type === 'error') {
+ if (!this._events.error ||
+ (isObject(this._events.error) && !this._events.error.length)) {
+ er = arguments[1];
+ if (er instanceof Error) {
+ throw er; // Unhandled 'error' event
+ } else {
+ // At least give some kind of context to the user
+ var err = new Error('Uncaught, unspecified "error" event. (' + er + ')');
+ err.context = er;
+ throw err;
+ }
+ }
+ }
+
+ handler = this._events[type];
+
+ if (isUndefined(handler))
+ return false;
+
+ if (isFunction(handler)) {
+ switch (arguments.length) {
+ // fast cases
+ case 1:
+ handler.call(this);
+ break;
+ case 2:
+ handler.call(this, arguments[1]);
+ break;
+ case 3:
+ handler.call(this, arguments[1], arguments[2]);
+ break;
+ // slower
+ default:
+ args = Array.prototype.slice.call(arguments, 1);
+ handler.apply(this, args);
+ }
+ } else if (isObject(handler)) {
+ args = Array.prototype.slice.call(arguments, 1);
+ listeners = handler.slice();
+ len = listeners.length;
+ for (i = 0; i < len; i++)
+ listeners[i].apply(this, args);
+ }
+
+ return true;
+};
+
+EventEmitter.prototype.addListener = function(type, listener) {
+ var m;
+
+ if (!isFunction(listener))
+ throw TypeError('listener must be a function');
+
+ if (!this._events)
+ this._events = {};
+
+ // To avoid recursion in the case that type === "newListener"! Before
+ // adding it to the listeners, first emit "newListener".
+ if (this._events.newListener)
+ this.emit('newListener', type,
+ isFunction(listener.listener) ?
+ listener.listener : listener);
+
+ if (!this._events[type])
+ // Optimize the case of one listener. Don't need the extra array object.
+ this._events[type] = listener;
+ else if (isObject(this._events[type]))
+ // If we've already got an array, just append.
+ this._events[type].push(listener);
+ else
+ // Adding the second element, need to change to array.
+ this._events[type] = [this._events[type], listener];
+
+ // Check for listener leak
+ if (isObject(this._events[type]) && !this._events[type].warned) {
+ if (!isUndefined(this._maxListeners)) {
+ m = this._maxListeners;
+ } else {
+ m = EventEmitter.defaultMaxListeners;
+ }
+
+ if (m && m > 0 && this._events[type].length > m) {
+ this._events[type].warned = true;
+ console.error('(node) warning: possible EventEmitter memory ' +
+ 'leak detected. %d listeners added. ' +
+ 'Use emitter.setMaxListeners() to increase limit.',
+ this._events[type].length);
+ if (typeof console.trace === 'function') {
+ // not supported in IE 10
+ console.trace();
+ }
+ }
+ }
+
+ return this;
+};
+
+EventEmitter.prototype.on = EventEmitter.prototype.addListener;
+
+EventEmitter.prototype.once = function(type, listener) {
+ if (!isFunction(listener))
+ throw TypeError('listener must be a function');
+
+ var fired = false;
+
+ function g() {
+ this.removeListener(type, g);
+
+ if (!fired) {
+ fired = true;
+ listener.apply(this, arguments);
+ }
+ }
+
+ g.listener = listener;
+ this.on(type, g);
+
+ return this;
+};
+
+// emits a 'removeListener' event iff the listener was removed
+EventEmitter.prototype.removeListener = function(type, listener) {
+ var list, position, length, i;
+
+ if (!isFunction(listener))
+ throw TypeError('listener must be a function');
+
+ if (!this._events || !this._events[type])
+ return this;
+
+ list = this._events[type];
+ length = list.length;
+ position = -1;
+
+ if (list === listener ||
+ (isFunction(list.listener) && list.listener === listener)) {
+ delete this._events[type];
+ if (this._events.removeListener)
+ this.emit('removeListener', type, listener);
+
+ } else if (isObject(list)) {
+ for (i = length; i-- > 0;) {
+ if (list[i] === listener ||
+ (list[i].listener && list[i].listener === listener)) {
+ position = i;
+ break;
+ }
+ }
+
+ if (position < 0)
+ return this;
+
+ if (list.length === 1) {
+ list.length = 0;
+ delete this._events[type];
+ } else {
+ list.splice(position, 1);
+ }
+
+ if (this._events.removeListener)
+ this.emit('removeListener', type, listener);
+ }
+
+ return this;
+};
+
+EventEmitter.prototype.removeAllListeners = function(type) {
+ var key, listeners;
+
+ if (!this._events)
+ return this;
+
+ // not listening for removeListener, no need to emit
+ if (!this._events.removeListener) {
+ if (arguments.length === 0)
+ this._events = {};
+ else if (this._events[type])
+ delete this._events[type];
+ return this;
+ }
+
+ // emit removeListener for all listeners on all events
+ if (arguments.length === 0) {
+ for (key in this._events) {
+ if (key === 'removeListener') continue;
+ this.removeAllListeners(key);
+ }
+ this.removeAllListeners('removeListener');
+ this._events = {};
+ return this;
+ }
+
+ listeners = this._events[type];
+
+ if (isFunction(listeners)) {
+ this.removeListener(type, listeners);
+ } else if (listeners) {
+ // LIFO order
+ while (listeners.length)
+ this.removeListener(type, listeners[listeners.length - 1]);
+ }
+ delete this._events[type];
+
+ return this;
+};
+
+EventEmitter.prototype.listeners = function(type) {
+ var ret;
+ if (!this._events || !this._events[type])
+ ret = [];
+ else if (isFunction(this._events[type]))
+ ret = [this._events[type]];
+ else
+ ret = this._events[type].slice();
+ return ret;
+};
+
+EventEmitter.prototype.listenerCount = function(type) {
+ if (this._events) {
+ var evlistener = this._events[type];
+
+ if (isFunction(evlistener))
+ return 1;
+ else if (evlistener)
+ return evlistener.length;
+ }
+ return 0;
+};
+
+EventEmitter.listenerCount = function(emitter, type) {
+ return emitter.listenerCount(type);
+};
+
+function isFunction(arg) {
+ return typeof arg === 'function';
+}
+
+function isNumber(arg) {
+ return typeof arg === 'number';
+}
+
+function isObject(arg) {
+ return typeof arg === 'object' && arg !== null;
+}
+
+function isUndefined(arg) {
+ return arg === void 0;
+}
+
+},{}],5:[function(require,module,exports){
+/* jshint node: true */
+'use strict';
+
+var normalice = require('normalice');
+
+/**
+ # freeice
+
+ The `freeice` module is a simple way of getting random STUN or TURN server
+ for your WebRTC application. The list of servers (just STUN at this stage)
+ were sourced from this [gist](https://gist.github.com/zziuni/3741933).
+
+ ## Example Use
+
+ The following demonstrates how you can use `freeice` with
+ [rtc-quickconnect](https://github.com/rtc-io/rtc-quickconnect):
+
+ <<< examples/quickconnect.js
+
+ As the `freeice` module generates ice servers in a list compliant with the
+ WebRTC spec you will be able to use it with raw `RTCPeerConnection`
+ constructors and other WebRTC libraries.
+
+ ## Hey, don't use my STUN/TURN server!
+
+ If for some reason your free STUN or TURN server ends up in the
+ list of servers ([stun](https://github.com/DamonOehlman/freeice/blob/master/stun.json) or
+ [turn](https://github.com/DamonOehlman/freeice/blob/master/turn.json))
+ that is used in this module, you can feel
+ free to open an issue on this repository and those servers will be removed
+ within 24 hours (or sooner). This is the quickest and probably the most
+ polite way to have something removed (and provides us some visibility
+ if someone opens a pull request requesting that a server is added).
+
+ ## Please add my server!
+
+ If you have a server that you wish to add to the list, that's awesome! I'm
+ sure I speak on behalf of a whole pile of WebRTC developers who say thanks.
+ To get it into the list, feel free to either open a pull request or if you
+ find that process a bit daunting then just create an issue requesting
+ the addition of the server (make sure you provide all the details, and if
+ you have a Terms of Service then including that in the PR/issue would be
+ awesome).
+
+ ## I know of a free server, can I add it?
+
+ Sure, if you do your homework and make sure it is ok to use (I'm currently
+ in the process of reviewing the terms of those STUN servers included from
+ the original list). If it's ok to go, then please see the previous entry
+ for how to add it.
+
+ ## Current List of Servers
+
+ * current as at the time of last `README.md` file generation
+
+ ### STUN
+
+ <<< stun.json
+
+ ### TURN
+
+ <<< turn.json
+
+**/
+
+var freeice = module.exports = function(opts) {
+ // if a list of servers has been provided, then use it instead of defaults
+ var servers = {
+ stun: (opts || {}).stun || require('./stun.json'),
+ turn: (opts || {}).turn || require('./turn.json')
+ };
+
+ var stunCount = (opts || {}).stunCount || 2;
+ var turnCount = (opts || {}).turnCount || 0;
+ var selected;
+
+ function getServers(type, count) {
+ var out = [];
+ var input = [].concat(servers[type]);
+ var idx;
+
+ while (input.length && out.length < count) {
+ idx = (Math.random() * input.length) | 0;
+ out = out.concat(input.splice(idx, 1));
+ }
+
+ return out.map(function(url) {
+ //If it's a not a string, don't try to "normalice" it otherwise using type:url will screw it up
+ if ((typeof url !== 'string') && (! (url instanceof String))) {
+ return url;
+ } else {
+ return normalice(type + ':' + url);
+ }
+ });
+ }
+
+ // add stun servers
+ selected = [].concat(getServers('stun', stunCount));
+
+ if (turnCount) {
+ selected = selected.concat(getServers('turn', turnCount));
+ }
+
+ return selected;
+};
+
+},{"./stun.json":6,"./turn.json":7,"normalice":12}],6:[function(require,module,exports){
+module.exports=[
+ "stun.l.google.com:19302",
+ "stun1.l.google.com:19302",
+ "stun2.l.google.com:19302",
+ "stun3.l.google.com:19302",
+ "stun4.l.google.com:19302",
+ "stun.ekiga.net",
+ "stun.ideasip.com",
+ "stun.schlund.de",
+ "stun.stunprotocol.org:3478",
+ "stun.voiparound.com",
+ "stun.voipbuster.com",
+ "stun.voipstunt.com",
+ "stun.voxgratia.org",
+ "stun.services.mozilla.com"
+]
+
+},{}],7:[function(require,module,exports){
+module.exports=[]
+
+},{}],8:[function(require,module,exports){
+var WildEmitter = require('wildemitter');
+
+function getMaxVolume (analyser, fftBins) {
+ var maxVolume = -Infinity;
+ analyser.getFloatFrequencyData(fftBins);
+
+ for(var i=4, ii=fftBins.length; i < ii; i++) {
+ if (fftBins[i] > maxVolume && fftBins[i] < 0) {
+ maxVolume = fftBins[i];
+ }
+ };
+
+ return maxVolume;
+}
+
+
+var audioContextType = window.AudioContext || window.webkitAudioContext;
+// use a single audio context due to hardware limits
+var audioContext = null;
+module.exports = function(stream, options) {
+ var harker = new WildEmitter();
+
+
+ // make it not break in non-supported browsers
+ if (!audioContextType) return harker;
+
+ //Config
+ var options = options || {},
+ smoothing = (options.smoothing || 0.1),
+ interval = (options.interval || 50),
+ threshold = options.threshold,
+ play = options.play,
+ history = options.history || 10,
+ running = true;
+
+ //Setup Audio Context
+ if (!audioContext) {
+ audioContext = new audioContextType();
+ }
+ var sourceNode, fftBins, analyser;
+
+ analyser = audioContext.createAnalyser();
+ analyser.fftSize = 512;
+ analyser.smoothingTimeConstant = smoothing;
+ fftBins = new Float32Array(analyser.fftSize);
+
+ if (stream.jquery) stream = stream[0];
+ if (stream instanceof HTMLAudioElement || stream instanceof HTMLVideoElement) {
+ //Audio Tag
+ sourceNode = audioContext.createMediaElementSource(stream);
+ if (typeof play === 'undefined') play = true;
+ threshold = threshold || -50;
+ } else {
+ //WebRTC Stream
+ sourceNode = audioContext.createMediaStreamSource(stream);
+ threshold = threshold || -50;
+ }
+
+ sourceNode.connect(analyser);
+ if (play) analyser.connect(audioContext.destination);
+
+ harker.speaking = false;
+
+ harker.setThreshold = function(t) {
+ threshold = t;
+ };
+
+ harker.setInterval = function(i) {
+ interval = i;
+ };
+
+ harker.stop = function() {
+ running = false;
+ harker.emit('volume_change', -100, threshold);
+ if (harker.speaking) {
+ harker.speaking = false;
+ harker.emit('stopped_speaking');
+ }
+ };
+ harker.speakingHistory = [];
+ for (var i = 0; i < history; i++) {
+ harker.speakingHistory.push(0);
+ }
+
+ // Poll the analyser node to determine if speaking
+ // and emit events if changed
+ var looper = function() {
+ setTimeout(function() {
+
+ //check if stop has been called
+ if(!running) {
+ return;
+ }
+
+ var currentVolume = getMaxVolume(analyser, fftBins);
+
+ harker.emit('volume_change', currentVolume, threshold);
+
+ var history = 0;
+ if (currentVolume > threshold && !harker.speaking) {
+ // trigger quickly, short history
+ for (var i = harker.speakingHistory.length - 3; i < harker.speakingHistory.length; i++) {
+ history += harker.speakingHistory[i];
+ }
+ if (history >= 2) {
+ harker.speaking = true;
+ harker.emit('speaking');
+ }
+ } else if (currentVolume < threshold && harker.speaking) {
+ for (var i = 0; i < harker.speakingHistory.length; i++) {
+ history += harker.speakingHistory[i];
+ }
+ if (history == 0) {
+ harker.speaking = false;
+ harker.emit('stopped_speaking');
+ }
+ }
+ harker.speakingHistory.shift();
+ harker.speakingHistory.push(0 + (currentVolume > threshold));
+
+ looper();
+ }, interval);
+ };
+ looper();
+
+
+ return harker;
+}
+
+},{"wildemitter":24}],9:[function(require,module,exports){
+if (typeof Object.create === 'function') {
+ // implementation from standard node.js 'util' module
+ module.exports = function inherits(ctor, superCtor) {
+ ctor.super_ = superCtor
+ ctor.prototype = Object.create(superCtor.prototype, {
+ constructor: {
+ value: ctor,
+ enumerable: false,
+ writable: true,
+ configurable: true
+ }
+ });
+ };
+} else {
+ // old school shim for old browsers
+ module.exports = function inherits(ctor, superCtor) {
+ ctor.super_ = superCtor
+ var TempCtor = function () {}
+ TempCtor.prototype = superCtor.prototype
+ ctor.prototype = new TempCtor()
+ ctor.prototype.constructor = ctor
+ }
+}
+
+},{}],10:[function(require,module,exports){
+// Does nothing at all.
+
+},{}],11:[function(require,module,exports){
+/*!
+ * @name JavaScript/NodeJS Merge v1.2.0
+ * @author yeikos
+ * @repository https://github.com/yeikos/js.merge
+
+ * Copyright 2014 yeikos - MIT license
+ * https://raw.github.com/yeikos/js.merge/master/LICENSE
+ */
+
+;(function(isNode) {
+
+ /**
+ * Merge one or more objects
+ * @param bool? clone
+ * @param mixed,... arguments
+ * @return object
+ */
+
+ var Public = function(clone) {
+
+ return merge(clone === true, false, arguments);
+
+ }, publicName = 'merge';
+
+ /**
+ * Merge two or more objects recursively
+ * @param bool? clone
+ * @param mixed,... arguments
+ * @return object
+ */
+
+ Public.recursive = function(clone) {
+
+ return merge(clone === true, true, arguments);
+
+ };
+
+ /**
+ * Clone the input removing any reference
+ * @param mixed input
+ * @return mixed
+ */
+
+ Public.clone = function(input) {
+
+ var output = input,
+ type = typeOf(input),
+ index, size;
+
+ if (type === 'array') {
+
+ output = [];
+ size = input.length;
+
+ for (index=0;index 1) {
+ url = parts[1];
+ parts = parts[0].split(':');
+
+ // add the output credential and username
+ output.username = parts[0];
+ output.credential = (input || {}).credential || parts[1] || '';
+ }
+
+ output.url = protocol + url;
+ output.urls = [ output.url ];
+
+ return output;
+};
+
+},{}],13:[function(require,module,exports){
+var grammar = module.exports = {
+ v: [{
+ name: 'version',
+ reg: /^(\d*)$/
+ }],
+ o: [{ //o=- 20518 0 IN IP4 203.0.113.1
+ // NB: sessionId will be a String in most cases because it is huge
+ name: 'origin',
+ reg: /^(\S*) (\d*) (\d*) (\S*) IP(\d) (\S*)/,
+ names: ['username', 'sessionId', 'sessionVersion', 'netType', 'ipVer', 'address'],
+ format: "%s %s %d %s IP%d %s"
+ }],
+ // default parsing of these only (though some of these feel outdated)
+ s: [{ name: 'name' }],
+ i: [{ name: 'description' }],
+ u: [{ name: 'uri' }],
+ e: [{ name: 'email' }],
+ p: [{ name: 'phone' }],
+ z: [{ name: 'timezones' }], // TODO: this one can actually be parsed properly..
+ r: [{ name: 'repeats' }], // TODO: this one can also be parsed properly
+ //k: [{}], // outdated thing ignored
+ t: [{ //t=0 0
+ name: 'timing',
+ reg: /^(\d*) (\d*)/,
+ names: ['start', 'stop'],
+ format: "%d %d"
+ }],
+ c: [{ //c=IN IP4 10.47.197.26
+ name: 'connection',
+ reg: /^IN IP(\d) (\S*)/,
+ names: ['version', 'ip'],
+ format: "IN IP%d %s"
+ }],
+ b: [{ //b=AS:4000
+ push: 'bandwidth',
+ reg: /^(TIAS|AS|CT|RR|RS):(\d*)/,
+ names: ['type', 'limit'],
+ format: "%s:%s"
+ }],
+ m: [{ //m=video 51744 RTP/AVP 126 97 98 34 31
+ // NB: special - pushes to session
+ // TODO: rtp/fmtp should be filtered by the payloads found here?
+ reg: /^(\w*) (\d*) ([\w\/]*)(?: (.*))?/,
+ names: ['type', 'port', 'protocol', 'payloads'],
+ format: "%s %d %s %s"
+ }],
+ a: [
+ { //a=rtpmap:110 opus/48000/2
+ push: 'rtp',
+ reg: /^rtpmap:(\d*) ([\w\-]*)(?:\s*\/(\d*)(?:\s*\/(\S*))?)?/,
+ names: ['payload', 'codec', 'rate', 'encoding'],
+ format: function (o) {
+ return (o.encoding) ?
+ "rtpmap:%d %s/%s/%s":
+ o.rate ?
+ "rtpmap:%d %s/%s":
+ "rtpmap:%d %s";
+ }
+ },
+ {
+ //a=fmtp:108 profile-level-id=24;object=23;bitrate=64000
+ //a=fmtp:111 minptime=10; useinbandfec=1
+ push: 'fmtp',
+ reg: /^fmtp:(\d*) ([\S| ]*)/,
+ names: ['payload', 'config'],
+ format: "fmtp:%d %s"
+ },
+ { //a=control:streamid=0
+ name: 'control',
+ reg: /^control:(.*)/,
+ format: "control:%s"
+ },
+ { //a=rtcp:65179 IN IP4 193.84.77.194
+ name: 'rtcp',
+ reg: /^rtcp:(\d*)(?: (\S*) IP(\d) (\S*))?/,
+ names: ['port', 'netType', 'ipVer', 'address'],
+ format: function (o) {
+ return (o.address != null) ?
+ "rtcp:%d %s IP%d %s":
+ "rtcp:%d";
+ }
+ },
+ { //a=rtcp-fb:98 trr-int 100
+ push: 'rtcpFbTrrInt',
+ reg: /^rtcp-fb:(\*|\d*) trr-int (\d*)/,
+ names: ['payload', 'value'],
+ format: "rtcp-fb:%d trr-int %d"
+ },
+ { //a=rtcp-fb:98 nack rpsi
+ push: 'rtcpFb',
+ reg: /^rtcp-fb:(\*|\d*) ([\w-_]*)(?: ([\w-_]*))?/,
+ names: ['payload', 'type', 'subtype'],
+ format: function (o) {
+ return (o.subtype != null) ?
+ "rtcp-fb:%s %s %s":
+ "rtcp-fb:%s %s";
+ }
+ },
+ { //a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
+ //a=extmap:1/recvonly URI-gps-string
+ push: 'ext',
+ reg: /^extmap:([\w_\/]*) (\S*)(?: (\S*))?/,
+ names: ['value', 'uri', 'config'], // value may include "/direction" suffix
+ format: function (o) {
+ return (o.config != null) ?
+ "extmap:%s %s %s":
+ "extmap:%s %s";
+ }
+ },
+ {
+ //a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:PS1uQCVeeCFCanVmcjkpPywjNWhcYD0mXXtxaVBR|2^20|1:32
+ push: 'crypto',
+ reg: /^crypto:(\d*) ([\w_]*) (\S*)(?: (\S*))?/,
+ names: ['id', 'suite', 'config', 'sessionConfig'],
+ format: function (o) {
+ return (o.sessionConfig != null) ?
+ "crypto:%d %s %s %s":
+ "crypto:%d %s %s";
+ }
+ },
+ { //a=setup:actpass
+ name: 'setup',
+ reg: /^setup:(\w*)/,
+ format: "setup:%s"
+ },
+ { //a=mid:1
+ name: 'mid',
+ reg: /^mid:([^\s]*)/,
+ format: "mid:%s"
+ },
+ { //a=msid:0c8b064d-d807-43b4-b434-f92a889d8587 98178685-d409-46e0-8e16-7ef0db0db64a
+ name: 'msid',
+ reg: /^msid:(.*)/,
+ format: "msid:%s"
+ },
+ { //a=ptime:20
+ name: 'ptime',
+ reg: /^ptime:(\d*)/,
+ format: "ptime:%d"
+ },
+ { //a=maxptime:60
+ name: 'maxptime',
+ reg: /^maxptime:(\d*)/,
+ format: "maxptime:%d"
+ },
+ { //a=sendrecv
+ name: 'direction',
+ reg: /^(sendrecv|recvonly|sendonly|inactive)/
+ },
+ { //a=ice-lite
+ name: 'icelite',
+ reg: /^(ice-lite)/
+ },
+ { //a=ice-ufrag:F7gI
+ name: 'iceUfrag',
+ reg: /^ice-ufrag:(\S*)/,
+ format: "ice-ufrag:%s"
+ },
+ { //a=ice-pwd:x9cml/YzichV2+XlhiMu8g
+ name: 'icePwd',
+ reg: /^ice-pwd:(\S*)/,
+ format: "ice-pwd:%s"
+ },
+ { //a=fingerprint:SHA-1 00:11:22:33:44:55:66:77:88:99:AA:BB:CC:DD:EE:FF:00:11:22:33
+ name: 'fingerprint',
+ reg: /^fingerprint:(\S*) (\S*)/,
+ names: ['type', 'hash'],
+ format: "fingerprint:%s %s"
+ },
+ {
+ //a=candidate:0 1 UDP 2113667327 203.0.113.1 54400 typ host
+ //a=candidate:1162875081 1 udp 2113937151 192.168.34.75 60017 typ host generation 0
+ //a=candidate:3289912957 2 udp 1845501695 193.84.77.194 60017 typ srflx raddr 192.168.34.75 rport 60017 generation 0
+ //a=candidate:229815620 1 tcp 1518280447 192.168.150.19 60017 typ host tcptype active generation 0
+ //a=candidate:3289912957 2 tcp 1845501695 193.84.77.194 60017 typ srflx raddr 192.168.34.75 rport 60017 tcptype passive generation 0
+ push:'candidates',
+ reg: /^candidate:(\S*) (\d*) (\S*) (\d*) (\S*) (\d*) typ (\S*)(?: raddr (\S*) rport (\d*))?(?: tcptype (\S*))?(?: generation (\d*))?/,
+ names: ['foundation', 'component', 'transport', 'priority', 'ip', 'port', 'type', 'raddr', 'rport', 'tcptype', 'generation'],
+ format: function (o) {
+ var str = "candidate:%s %d %s %d %s %d typ %s";
+
+ str += (o.raddr != null) ? " raddr %s rport %d" : "%v%v";
+
+ // NB: candidate has three optional chunks, so %void middles one if it's missing
+ str += (o.tcptype != null) ? " tcptype %s" : "%v";
+
+ if (o.generation != null) {
+ str += " generation %d";
+ }
+ return str;
+ }
+ },
+ { //a=end-of-candidates (keep after the candidates line for readability)
+ name: 'endOfCandidates',
+ reg: /^(end-of-candidates)/
+ },
+ { //a=remote-candidates:1 203.0.113.1 54400 2 203.0.113.1 54401 ...
+ name: 'remoteCandidates',
+ reg: /^remote-candidates:(.*)/,
+ format: "remote-candidates:%s"
+ },
+ { //a=ice-options:google-ice
+ name: 'iceOptions',
+ reg: /^ice-options:(\S*)/,
+ format: "ice-options:%s"
+ },
+ { //a=ssrc:2566107569 cname:t9YU8M1UxTF8Y1A1
+ push: "ssrcs",
+ reg: /^ssrc:(\d*) ([\w_]*):(.*)/,
+ names: ['id', 'attribute', 'value'],
+ format: "ssrc:%d %s:%s"
+ },
+ { //a=ssrc-group:FEC 1 2
+ push: "ssrcGroups",
+ reg: /^ssrc-group:(\w*) (.*)/,
+ names: ['semantics', 'ssrcs'],
+ format: "ssrc-group:%s %s"
+ },
+ { //a=msid-semantic: WMS Jvlam5X3SX1OP6pn20zWogvaKJz5Hjf9OnlV
+ name: "msidSemantic",
+ reg: /^msid-semantic:\s?(\w*) (\S*)/,
+ names: ['semantic', 'token'],
+ format: "msid-semantic: %s %s" // space after ":" is not accidental
+ },
+ { //a=group:BUNDLE audio video
+ push: 'groups',
+ reg: /^group:(\w*) (.*)/,
+ names: ['type', 'mids'],
+ format: "group:%s %s"
+ },
+ { //a=rtcp-mux
+ name: 'rtcpMux',
+ reg: /^(rtcp-mux)/
+ },
+ { //a=rtcp-rsize
+ name: 'rtcpRsize',
+ reg: /^(rtcp-rsize)/
+ },
+ { // any a= that we don't understand is kepts verbatim on media.invalid
+ push: 'invalid',
+ names: ["value"]
+ }
+ ]
+};
+
+// set sensible defaults to avoid polluting the grammar with boring details
+Object.keys(grammar).forEach(function (key) {
+ var objs = grammar[key];
+ objs.forEach(function (obj) {
+ if (!obj.reg) {
+ obj.reg = /(.*)/;
+ }
+ if (!obj.format) {
+ obj.format = "%s";
+ }
+ });
+});
+
+},{}],14:[function(require,module,exports){
+var parser = require('./parser');
+var writer = require('./writer');
+
+exports.write = writer;
+exports.parse = parser.parse;
+exports.parseFmtpConfig = parser.parseFmtpConfig;
+exports.parsePayloads = parser.parsePayloads;
+exports.parseRemoteCandidates = parser.parseRemoteCandidates;
+
+},{"./parser":15,"./writer":16}],15:[function(require,module,exports){
+var toIntIfInt = function (v) {
+ return String(Number(v)) === v ? Number(v) : v;
+};
+
+var attachProperties = function (match, location, names, rawName) {
+ if (rawName && !names) {
+ location[rawName] = toIntIfInt(match[1]);
+ }
+ else {
+ for (var i = 0; i < names.length; i += 1) {
+ if (match[i+1] != null) {
+ location[names[i]] = toIntIfInt(match[i+1]);
+ }
+ }
+ }
+};
+
+var parseReg = function (obj, location, content) {
+ var needsBlank = obj.name && obj.names;
+ if (obj.push && !location[obj.push]) {
+ location[obj.push] = [];
+ }
+ else if (needsBlank && !location[obj.name]) {
+ location[obj.name] = {};
+ }
+ var keyLocation = obj.push ?
+ {} : // blank object that will be pushed
+ needsBlank ? location[obj.name] : location; // otherwise, named location or root
+
+ attachProperties(content.match(obj.reg), keyLocation, obj.names, obj.name);
+
+ if (obj.push) {
+ location[obj.push].push(keyLocation);
+ }
+};
+
+var grammar = require('./grammar');
+var validLine = RegExp.prototype.test.bind(/^([a-z])=(.*)/);
+
+exports.parse = function (sdp) {
+ var session = {}
+ , media = []
+ , location = session; // points at where properties go under (one of the above)
+
+ // parse lines we understand
+ sdp.split(/(\r\n|\r|\n)/).filter(validLine).forEach(function (l) {
+ var type = l[0];
+ var content = l.slice(2);
+ if (type === 'm') {
+ media.push({rtp: [], fmtp: []});
+ location = media[media.length-1]; // point at latest media line
+ }
+
+ for (var j = 0; j < (grammar[type] || []).length; j += 1) {
+ var obj = grammar[type][j];
+ if (obj.reg.test(content)) {
+ return parseReg(obj, location, content);
+ }
+ }
+ });
+
+ session.media = media; // link it up
+ return session;
+};
+
+var fmtpReducer = function (acc, expr) {
+ var s = expr.split('=');
+ if (s.length === 2) {
+ acc[s[0]] = toIntIfInt(s[1]);
+ }
+ return acc;
+};
+
+exports.parseFmtpConfig = function (str) {
+ return str.split(/\;\s?/).reduce(fmtpReducer, {});
+};
+
+exports.parsePayloads = function (str) {
+ return str.split(' ').map(Number);
+};
+
+exports.parseRemoteCandidates = function (str) {
+ var candidates = [];
+ var parts = str.split(' ').map(toIntIfInt);
+ for (var i = 0; i < parts.length; i += 3) {
+ candidates.push({
+ component: parts[i],
+ ip: parts[i + 1],
+ port: parts[i + 2]
+ });
+ }
+ return candidates;
+};
+
+},{"./grammar":13}],16:[function(require,module,exports){
+var grammar = require('./grammar');
+
+// customized util.format - discards excess arguments and can void middle ones
+var formatRegExp = /%[sdv%]/g;
+var format = function (formatStr) {
+ var i = 1;
+ var args = arguments;
+ var len = args.length;
+ return formatStr.replace(formatRegExp, function (x) {
+ if (i >= len) {
+ return x; // missing argument
+ }
+ var arg = args[i];
+ i += 1;
+ switch (x) {
+ case '%%':
+ return '%';
+ case '%s':
+ return String(arg);
+ case '%d':
+ return Number(arg);
+ case '%v':
+ return '';
+ }
+ });
+ // NB: we discard excess arguments - they are typically undefined from makeLine
+};
+
+var makeLine = function (type, obj, location) {
+ var str = obj.format instanceof Function ?
+ (obj.format(obj.push ? location : location[obj.name])) :
+ obj.format;
+
+ var args = [type + '=' + str];
+ if (obj.names) {
+ for (var i = 0; i < obj.names.length; i += 1) {
+ var n = obj.names[i];
+ if (obj.name) {
+ args.push(location[obj.name][n]);
+ }
+ else { // for mLine and push attributes
+ args.push(location[obj.names[i]]);
+ }
+ }
+ }
+ else {
+ args.push(location[obj.name]);
+ }
+ return format.apply(null, args);
+};
+
+// RFC specified order
+// TODO: extend this with all the rest
+var defaultOuterOrder = [
+ 'v', 'o', 's', 'i',
+ 'u', 'e', 'p', 'c',
+ 'b', 't', 'r', 'z', 'a'
+];
+var defaultInnerOrder = ['i', 'c', 'b', 'a'];
+
+
+module.exports = function (session, opts) {
+ opts = opts || {};
+ // ensure certain properties exist
+ if (session.version == null) {
+ session.version = 0; // "v=0" must be there (only defined version atm)
+ }
+ if (session.name == null) {
+ session.name = " "; // "s= " must be there if no meaningful name set
+ }
+ session.media.forEach(function (mLine) {
+ if (mLine.payloads == null) {
+ mLine.payloads = "";
+ }
+ });
+
+ var outerOrder = opts.outerOrder || defaultOuterOrder;
+ var innerOrder = opts.innerOrder || defaultInnerOrder;
+ var sdp = [];
+
+ // loop through outerOrder for matching properties on session
+ outerOrder.forEach(function (type) {
+ grammar[type].forEach(function (obj) {
+ if (obj.name in session && session[obj.name] != null) {
+ sdp.push(makeLine(type, obj, session));
+ }
+ else if (obj.push in session && session[obj.push] != null) {
+ session[obj.push].forEach(function (el) {
+ sdp.push(makeLine(type, obj, el));
+ });
+ }
+ });
+ });
+
+ // then for each media line, follow the innerOrder
+ session.media.forEach(function (mLine) {
+ sdp.push(makeLine('m', grammar.m[0], mLine));
+
+ innerOrder.forEach(function (type) {
+ grammar[type].forEach(function (obj) {
+ if (obj.name in mLine && mLine[obj.name] != null) {
+ sdp.push(makeLine(type, obj, mLine));
+ }
+ else if (obj.push in mLine && mLine[obj.push] != null) {
+ mLine[obj.push].forEach(function (el) {
+ sdp.push(makeLine(type, obj, el));
+ });
+ }
+ });
+ });
+ });
+
+ return sdp.join('\r\n') + '\r\n';
+};
+
+},{"./grammar":13}],17:[function(require,module,exports){
+/* Copyright @ 2015 Atlassian Pty Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+module.exports = function arrayEquals(array) {
+ // if the other array is a falsy value, return
+ if (!array)
+ return false;
+
+ // compare lengths - can save a lot of time
+ if (this.length != array.length)
+ return false;
+
+ for (var i = 0, l = this.length; i < l; i++) {
+ // Check if we have nested arrays
+ if (this[i] instanceof Array && array[i] instanceof Array) {
+ // recurse into the nested arrays
+ if (!arrayEquals.apply(this[i], [array[i]]))
+ return false;
+ } else if (this[i] != array[i]) {
+ // Warning - two different object instances will never be equal:
+ // {x:20} != {x:20}
+ return false;
+ }
+ }
+ return true;
+};
+
+
+},{}],18:[function(require,module,exports){
+/* Copyright @ 2015 Atlassian Pty Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+exports.Interop = require('./interop');
+
+},{"./interop":19}],19:[function(require,module,exports){
+/* Copyright @ 2015 Atlassian Pty Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* global RTCSessionDescription */
+/* global RTCIceCandidate */
+/* jshint -W097 */
+"use strict";
+
+var transform = require('./transform');
+var arrayEquals = require('./array-equals');
+
+function Interop() {
+
+ /**
+ * This map holds the most recent Unified Plan offer/answer SDP that was
+ * converted to Plan B, with the SDP type ('offer' or 'answer') as keys and
+ * the SDP string as values.
+ *
+ * @type {{}}
+ */
+ this.cache = {
+ mlB2UMap : {},
+ mlU2BMap : {}
+ };
+}
+
+module.exports = Interop;
+
+/**
+ * Changes the candidate args to match with the related Unified Plan
+ */
+Interop.prototype.candidateToUnifiedPlan = function(candidate) {
+ var cand = new RTCIceCandidate(candidate);
+
+ cand.sdpMLineIndex = this.cache.mlB2UMap[cand.sdpMLineIndex];
+ /* TODO: change sdpMid to (audio|video)-SSRC */
+
+ return cand;
+};
+
+/**
+ * Changes the candidate args to match with the related Plan B
+ */
+Interop.prototype.candidateToPlanB = function(candidate) {
+ var cand = new RTCIceCandidate(candidate);
+
+ if (cand.sdpMid.indexOf('audio') === 0) {
+ cand.sdpMid = 'audio';
+ } else if (cand.sdpMid.indexOf('video') === 0) {
+ cand.sdpMid = 'video';
+ } else {
+ throw new Error('candidate with ' + cand.sdpMid + ' not allowed');
+ }
+
+ cand.sdpMLineIndex = this.cache.mlU2BMap[cand.sdpMLineIndex];
+
+ return cand;
+};
+
+/**
+ * Returns the index of the first m-line with the given media type and with a
+ * direction which allows sending, in the last Unified Plan description with
+ * type "answer" converted to Plan B. Returns {null} if there is no saved
+ * answer, or if none of its m-lines with the given type allow sending.
+ * @param type the media type ("audio" or "video").
+ * @returns {*}
+ */
+Interop.prototype.getFirstSendingIndexFromAnswer = function(type) {
+ if (!this.cache.answer) {
+ return null;
+ }
+
+ var session = transform.parse(this.cache.answer);
+ if (session && session.media && Array.isArray(session.media)){
+ for (var i = 0; i < session.media.length; i++) {
+ if (session.media[i].type == type &&
+ (!session.media[i].direction /* default to sendrecv */ ||
+ session.media[i].direction === 'sendrecv' ||
+ session.media[i].direction === 'sendonly')){
+ return i;
+ }
+ }
+ }
+
+ return null;
+};
+
+/**
+ * This method transforms a Unified Plan SDP to an equivalent Plan B SDP. A
+ * PeerConnection wrapper transforms the SDP to Plan B before passing it to the
+ * application.
+ *
+ * @param desc
+ * @returns {*}
+ */
+Interop.prototype.toPlanB = function(desc) {
+ var self = this;
+ //#region Preliminary input validation.
+
+ if (typeof desc !== 'object' || desc === null ||
+ typeof desc.sdp !== 'string') {
+ console.warn('An empty description was passed as an argument.');
+ return desc;
+ }
+
+ // Objectify the SDP for easier manipulation.
+ var session = transform.parse(desc.sdp);
+
+ // If the SDP contains no media, there's nothing to transform.
+ if (typeof session.media === 'undefined' ||
+ !Array.isArray(session.media) || session.media.length === 0) {
+ console.warn('The description has no media.');
+ return desc;
+ }
+
+ // Try some heuristics to "make sure" this is a Unified Plan SDP. Plan B
+ // SDP has a video, an audio and a data "channel" at most.
+ if (session.media.length <= 3 && session.media.every(function(m) {
+ return ['video', 'audio', 'data'].indexOf(m.mid) !== -1;
+ })) {
+ console.warn('This description does not look like Unified Plan.');
+ return desc;
+ }
+
+ //#endregion
+
+ // HACK https://bugzilla.mozilla.org/show_bug.cgi?id=1113443
+ var sdp = desc.sdp;
+ var rewrite = false;
+ for (var i = 0; i < session.media.length; i++) {
+ var uLine = session.media[i];
+ uLine.rtp.forEach(function(rtp) {
+ if (rtp.codec === 'NULL')
+ {
+ rewrite = true;
+ var offer = transform.parse(self.cache.offer);
+ rtp.codec = offer.media[i].rtp[0].codec;
+ }
+ });
+ }
+ if (rewrite) {
+ sdp = transform.write(session);
+ }
+
+ // Unified Plan SDP is our "precious". Cache it for later use in the Plan B
+ // -> Unified Plan transformation.
+ this.cache[desc.type] = sdp;
+
+ //#region Convert from Unified Plan to Plan B.
+
+ // We rebuild the session.media array.
+ var media = session.media;
+ session.media = [];
+
+ // Associative array that maps channel types to channel objects for fast
+ // access to channel objects by their type, e.g. type2bl['audio']->channel
+ // obj.
+ var type2bl = {};
+
+ // Used to build the group:BUNDLE value after the channels construction
+ // loop.
+ var types = [];
+
+ media.forEach(function(uLine) {
+ // rtcp-mux is required in the Plan B SDP.
+ if ((typeof uLine.rtcpMux !== 'string' ||
+ uLine.rtcpMux !== 'rtcp-mux') &&
+ uLine.direction !== 'inactive') {
+ throw new Error('Cannot convert to Plan B because m-lines ' +
+ 'without the rtcp-mux attribute were found.');
+ }
+
+ // If we don't have a channel for this uLine.type OR the selected is
+ // inactive, then select this uLine as the channel basis.
+ if (typeof type2bl[uLine.type] === 'undefined' ||
+ type2bl[uLine.type].direction === 'inactive') {
+ type2bl[uLine.type] = uLine;
+ }
+
+ if (uLine.protocol != type2bl[uLine.type].protocol) {
+ throw new Error('Cannot convert to Plan B because m-lines ' +
+ 'have different protocols and this library does not have ' +
+ 'support for that');
+ }
+
+ if (uLine.payloads != type2bl[uLine.type].payloads) {
+ throw new Error('Cannot convert to Plan B because m-lines ' +
+ 'have different payloads and this library does not have ' +
+ 'support for that');
+ }
+
+ });
+
+ // Implode the Unified Plan m-lines/tracks into Plan B channels.
+ media.forEach(function(uLine) {
+ if (uLine.type === 'application') {
+ session.media.push(uLine);
+ types.push(uLine.mid);
+ return;
+ }
+
+ // Add sources to the channel and handle a=msid.
+ if (typeof uLine.sources === 'object') {
+ Object.keys(uLine.sources).forEach(function(ssrc) {
+ if (typeof type2bl[uLine.type].sources !== 'object')
+ type2bl[uLine.type].sources = {};
+
+ // Assign the sources to the channel.
+ type2bl[uLine.type].sources[ssrc] =
+ uLine.sources[ssrc];
+
+ if (typeof uLine.msid !== 'undefined') {
+ // In Plan B the msid is an SSRC attribute. Also, we don't
+ // care about the obsolete label and mslabel attributes.
+ //
+ // Note that it is not guaranteed that the uLine will
+ // have an msid. recvonly channels in particular don't have
+ // one.
+ type2bl[uLine.type].sources[ssrc].msid =
+ uLine.msid;
+ }
+ // NOTE ssrcs in ssrc groups will share msids, as
+ // draft-uberti-rtcweb-plan-00 mandates.
+ });
+ }
+
+ // Add ssrc groups to the channel.
+ if (typeof uLine.ssrcGroups !== 'undefined' &&
+ Array.isArray(uLine.ssrcGroups)) {
+
+ // Create the ssrcGroups array, if it's not defined.
+ if (typeof type2bl[uLine.type].ssrcGroups === 'undefined' ||
+ !Array.isArray(type2bl[uLine.type].ssrcGroups)) {
+ type2bl[uLine.type].ssrcGroups = [];
+ }
+
+ type2bl[uLine.type].ssrcGroups =
+ type2bl[uLine.type].ssrcGroups.concat(
+ uLine.ssrcGroups);
+ }
+
+ if (type2bl[uLine.type] === uLine) {
+ // Plan B mids are in ['audio', 'video', 'data']
+ uLine.mid = uLine.type;
+
+ // Plan B doesn't support/need the bundle-only attribute.
+ delete uLine.bundleOnly;
+
+ // In Plan B the msid is an SSRC attribute.
+ delete uLine.msid;
+
+ if (uLine.type == media[0].type) {
+ types.unshift(uLine.type);
+ // Add the channel to the new media array.
+ session.media.unshift(uLine);
+ } else {
+ types.push(uLine.type);
+ // Add the channel to the new media array.
+ session.media.push(uLine);
+ }
+ }
+ });
+
+ if (typeof session.groups !== 'undefined') {
+ // We regenerate the BUNDLE group with the new mids.
+ session.groups.some(function(group) {
+ if (group.type === 'BUNDLE') {
+ group.mids = types.join(' ');
+ return true;
+ }
+ });
+ }
+
+ // msid semantic
+ session.msidSemantic = {
+ semantic: 'WMS',
+ token: '*'
+ };
+
+ var resStr = transform.write(session);
+
+ return new RTCSessionDescription({
+ type: desc.type,
+ sdp: resStr
+ });
+
+ //#endregion
+};
+
+/* follow rules defined in RFC4145 */
+function addSetupAttr(uLine) {
+ if (typeof uLine.setup === 'undefined') {
+ return;
+ }
+
+ if (uLine.setup === "active") {
+ uLine.setup = "passive";
+ } else if (uLine.setup === "passive") {
+ uLine.setup = "active";
+ }
+}
+
+/**
+ * This method transforms a Plan B SDP to an equivalent Unified Plan SDP. A
+ * PeerConnection wrapper transforms the SDP to Unified Plan before passing it
+ * to FF.
+ *
+ * @param desc
+ * @returns {*}
+ */
+Interop.prototype.toUnifiedPlan = function(desc) {
+ var self = this;
+ //#region Preliminary input validation.
+
+ if (typeof desc !== 'object' || desc === null ||
+ typeof desc.sdp !== 'string') {
+ console.warn('An empty description was passed as an argument.');
+ return desc;
+ }
+
+ var session = transform.parse(desc.sdp);
+
+ // If the SDP contains no media, there's nothing to transform.
+ if (typeof session.media === 'undefined' ||
+ !Array.isArray(session.media) || session.media.length === 0) {
+ console.warn('The description has no media.');
+ return desc;
+ }
+
+ // Try some heuristics to "make sure" this is a Plan B SDP. Plan B SDP has
+ // a video, an audio and a data "channel" at most.
+ if (session.media.length > 3 || !session.media.every(function(m) {
+ return ['video', 'audio', 'data'].indexOf(m.mid) !== -1;
+ })) {
+ console.warn('This description does not look like Plan B.');
+ return desc;
+ }
+
+ // Make sure this Plan B SDP can be converted to a Unified Plan SDP.
+ var mids = [];
+ session.media.forEach(function(m) {
+ mids.push(m.mid);
+ });
+
+ var hasBundle = false;
+ if (typeof session.groups !== 'undefined' &&
+ Array.isArray(session.groups)) {
+ hasBundle = session.groups.every(function(g) {
+ return g.type !== 'BUNDLE' ||
+ arrayEquals.apply(g.mids.sort(), [mids.sort()]);
+ });
+ }
+
+ if (!hasBundle) {
+ var mustBeBundle = false;
+
+ session.media.forEach(function(m) {
+ if (m.direction !== 'inactive') {
+ mustBeBundle = true;
+ }
+ });
+
+ if (mustBeBundle) {
+ throw new Error("Cannot convert to Unified Plan because m-lines that" +
+ " are not bundled were found.");
+ }
+ }
+
+ //#endregion
+
+
+ //#region Convert from Plan B to Unified Plan.
+
+ // Unfortunately, a Plan B offer/answer doesn't have enough information to
+ // rebuild an equivalent Unified Plan offer/answer.
+ //
+ // For example, if this is a local answer (in Unified Plan style) that we
+ // convert to Plan B prior to handing it over to the application (the
+ // PeerConnection wrapper called us, for instance, after a successful
+ // createAnswer), we want to remember the m-line at which we've seen the
+ // (local) SSRC. That's because when the application wants to do call the
+ // SLD method, forcing us to do the inverse transformation (from Plan B to
+ // Unified Plan), we need to know to which m-line to assign the (local)
+ // SSRC. We also need to know all the other m-lines that the original
+ // answer had and include them in the transformed answer as well.
+ //
+ // Another example is if this is a remote offer that we convert to Plan B
+ // prior to giving it to the application, we want to remember the mid at
+ // which we've seen the (remote) SSRC.
+ //
+ // In the iteration that follows, we use the cached Unified Plan (if it
+ // exists) to assign mids to ssrcs.
+
+ var type;
+ if (desc.type === 'answer') {
+ type = 'offer';
+ } else if (desc.type === 'offer') {
+ type = 'answer';
+ } else {
+ throw new Error("Type '" + desc.type + "' not supported.");
+ }
+
+ var cached;
+ if (typeof this.cache[type] !== 'undefined') {
+ cached = transform.parse(this.cache[type]);
+ }
+
+ var recvonlySsrcs = {
+ audio: {},
+ video: {}
+ };
+
+ // A helper map that sends mids to m-line objects. We use it later to
+ // rebuild the Unified Plan style session.media array.
+ var mid2ul = {};
+ var bIdx = 0;
+ var uIdx = 0;
+
+ var sources2ul = {};
+
+ var candidates;
+ var iceUfrag;
+ var icePwd;
+ var fingerprint;
+ var payloads = {};
+ var rtcpFb = {};
+ var rtp = {};
+
+ session.media.forEach(function(bLine) {
+ if ((typeof bLine.rtcpMux !== 'string' ||
+ bLine.rtcpMux !== 'rtcp-mux') &&
+ bLine.direction !== 'inactive') {
+ throw new Error("Cannot convert to Unified Plan because m-lines " +
+ "without the rtcp-mux attribute were found.");
+ }
+
+ if (bLine.type === 'application') {
+ mid2ul[bLine.mid] = bLine;
+ return;
+ }
+
+ // With rtcp-mux and bundle all the channels should have the same ICE
+ // stuff.
+ var sources = bLine.sources;
+ var ssrcGroups = bLine.ssrcGroups;
+ var port = bLine.port;
+
+ /* Chrome adds different candidates even using bundle, so we concat the candidates list */
+ if (typeof bLine.candidates != 'undefined') {
+ if (typeof candidates != 'undefined') {
+ candidates = candidates.concat(bLine.candidates);
+ } else {
+ candidates = bLine.candidates;
+ }
+ }
+
+ if ((typeof iceUfrag != 'undefined') && (typeof bLine.iceUfrag != 'undefined') && (iceUfrag != bLine.iceUfrag)) {
+ throw new Error("Only BUNDLE supported, iceUfrag must be the same for all m-lines.\n" +
+ "\tLast iceUfrag: " + iceUfrag + "\n" +
+ "\tNew iceUfrag: " + bLine.iceUfrag
+ );
+ }
+
+ if (typeof bLine.iceUfrag != 'undefined') {
+ iceUfrag = bLine.iceUfrag;
+ }
+
+ if ((typeof icePwd != 'undefined') && (typeof bLine.icePwd != 'undefined') && (icePwd != bLine.icePwd)) {
+ throw new Error("Only BUNDLE supported, icePwd must be the same for all m-lines.\n" +
+ "\tLast icePwd: " + icePwd + "\n" +
+ "\tNew icePwd: " + bLine.icePwd
+ );
+ }
+
+ if (typeof bLine.icePwd != 'undefined') {
+ icePwd = bLine.icePwd;
+ }
+
+ if ((typeof fingerprint != 'undefined') && (typeof bLine.fingerprint != 'undefined') &&
+ (fingerprint.type != bLine.fingerprint.type || fingerprint.hash != bLine.fingerprint.hash)) {
+ throw new Error("Only BUNDLE supported, fingerprint must be the same for all m-lines.\n" +
+ "\tLast fingerprint: " + JSON.stringify(fingerprint) + "\n" +
+ "\tNew fingerprint: " + JSON.stringify(bLine.fingerprint)
+ );
+ }
+
+ if (typeof bLine.fingerprint != 'undefined') {
+ fingerprint = bLine.fingerprint;
+ }
+
+ payloads[bLine.type] = bLine.payloads;
+ rtcpFb[bLine.type] = bLine.rtcpFb;
+ rtp[bLine.type] = bLine.rtp;
+
+ // inverted ssrc group map
+ var ssrc2group = {};
+ if (typeof ssrcGroups !== 'undefined' && Array.isArray(ssrcGroups)) {
+ ssrcGroups.forEach(function (ssrcGroup) {
+ // XXX This might brake if an SSRC is in more than one group
+ // for some reason.
+ if (typeof ssrcGroup.ssrcs !== 'undefined' &&
+ Array.isArray(ssrcGroup.ssrcs)) {
+ ssrcGroup.ssrcs.forEach(function (ssrc) {
+ if (typeof ssrc2group[ssrc] === 'undefined') {
+ ssrc2group[ssrc] = [];
+ }
+
+ ssrc2group[ssrc].push(ssrcGroup);
+ });
+ }
+ });
+ }
+
+ // ssrc to m-line index.
+ var ssrc2ml = {};
+
+ if (typeof sources === 'object') {
+
+ // We'll use the "bLine" object as a prototype for each new "mLine"
+ // that we create, but first we need to clean it up a bit.
+ delete bLine.sources;
+ delete bLine.ssrcGroups;
+ delete bLine.candidates;
+ delete bLine.iceUfrag;
+ delete bLine.icePwd;
+ delete bLine.fingerprint;
+ delete bLine.port;
+ delete bLine.mid;
+
+ // Explode the Plan B channel sources with one m-line per source.
+ Object.keys(sources).forEach(function(ssrc) {
+
+ // The (unified) m-line for this SSRC. We either create it from
+ // scratch or, if it's a grouped SSRC, we re-use a related
+ // mline. In other words, if the source is grouped with another
+ // source, put the two together in the same m-line.
+ var uLine;
+
+ // We assume here that we are the answerer in the O/A, so any
+ // offers which we translate come from the remote side, while
+ // answers are local. So the check below is to make that we
+ // handle receive-only SSRCs in a special way only if they come
+ // from the remote side.
+ if (desc.type==='offer') {
+ // We want to detect SSRCs which are used by a remote peer
+ // in an m-line with direction=recvonly (i.e. they are
+ // being used for RTCP only).
+ // This information would have gotten lost if the remote
+ // peer used Unified Plan and their local description was
+ // translated to Plan B. So we use the lack of an MSID
+ // attribute to deduce a "receive only" SSRC.
+ if (!sources[ssrc].msid) {
+ recvonlySsrcs[bLine.type][ssrc] = sources[ssrc];
+ // Receive-only SSRCs must not create new m-lines. We
+ // will assign them to an existing m-line later.
+ return;
+ }
+ }
+
+ if (typeof ssrc2group[ssrc] !== 'undefined' &&
+ Array.isArray(ssrc2group[ssrc])) {
+ ssrc2group[ssrc].some(function (ssrcGroup) {
+ // ssrcGroup.ssrcs *is* an Array, no need to check
+ // again here.
+ return ssrcGroup.ssrcs.some(function (related) {
+ if (typeof ssrc2ml[related] === 'object') {
+ uLine = ssrc2ml[related];
+ return true;
+ }
+ });
+ });
+ }
+
+ if (typeof uLine === 'object') {
+ // the m-line already exists. Just add the source.
+ uLine.sources[ssrc] = sources[ssrc];
+ delete sources[ssrc].msid;
+ } else {
+ // Use the "bLine" as a prototype for the "uLine".
+ uLine = Object.create(bLine);
+ ssrc2ml[ssrc] = uLine;
+
+ if (typeof sources[ssrc].msid !== 'undefined') {
+ // Assign the msid of the source to the m-line. Note
+ // that it is not guaranteed that the source will have
+ // msid. In particular "recvonly" sources don't have an
+ // msid. Note that "recvonly" is a term only defined
+ // for m-lines.
+ uLine.msid = sources[ssrc].msid;
+ delete sources[ssrc].msid;
+ }
+
+ // We assign one SSRC per media line.
+ uLine.sources = {};
+ uLine.sources[ssrc] = sources[ssrc];
+ uLine.ssrcGroups = ssrc2group[ssrc];
+
+ // Use the cached Unified Plan SDP (if it exists) to assign
+ // SSRCs to mids.
+ if (typeof cached !== 'undefined' &&
+ typeof cached.media !== 'undefined' &&
+ Array.isArray(cached.media)) {
+
+ cached.media.forEach(function (m) {
+ if (typeof m.sources === 'object') {
+ Object.keys(m.sources).forEach(function (s) {
+ if (s === ssrc) {
+ uLine.mid = m.mid;
+ }
+ });
+ }
+ });
+ }
+
+ if (typeof uLine.mid === 'undefined') {
+
+ // If this is an SSRC that we see for the first time
+ // assign it a new mid. This is typically the case when
+ // this method is called to transform a remote
+ // description for the first time or when there is a
+ // new SSRC in the remote description because a new
+ // peer has joined the conference. Local SSRCs should
+ // have already been added to the map in the toPlanB
+ // method.
+ //
+ // Because FF generates answers in Unified Plan style,
+ // we MUST already have a cached answer with all the
+ // local SSRCs mapped to some m-line/mid.
+
+ uLine.mid = [bLine.type, '-', ssrc].join('');
+ }
+
+ // Include the candidates in the 1st media line.
+ uLine.candidates = candidates;
+ uLine.iceUfrag = iceUfrag;
+ uLine.icePwd = icePwd;
+ uLine.fingerprint = fingerprint;
+ uLine.port = port;
+
+ mid2ul[uLine.mid] = uLine;
+ sources2ul[uIdx] = uLine.sources;
+
+ self.cache.mlU2BMap[uIdx] = bIdx;
+ if (typeof self.cache.mlB2UMap[bIdx] === 'undefined') {
+ self.cache.mlB2UMap[bIdx] = uIdx;
+ }
+ uIdx++;
+ }
+ });
+ } else {
+ var uLine = bLine;
+
+ uLine.candidates = candidates;
+ uLine.iceUfrag = iceUfrag;
+ uLine.icePwd = icePwd;
+ uLine.fingerprint = fingerprint;
+ uLine.port = port;
+
+ mid2ul[uLine.mid] = uLine;
+
+ self.cache.mlU2BMap[uIdx] = bIdx;
+ if (typeof self.cache.mlB2UMap[bIdx] === 'undefined') {
+ self.cache.mlB2UMap[bIdx] = uIdx;
+ }
+ }
+
+ bIdx++;
+ });
+
+ // Rebuild the media array in the right order and add the missing mLines
+ // (missing from the Plan B SDP).
+ session.media = [];
+ mids = []; // reuse
+
+ if (desc.type === 'answer') {
+
+ // The media lines in the answer must match the media lines in the
+ // offer. The order is important too. Here we assume that Firefox is
+ // the answerer, so we merely have to use the reconstructed (unified)
+ // answer to update the cached (unified) answer accordingly.
+ //
+ // In the general case, one would have to use the cached (unified)
+ // offer to find the m-lines that are missing from the reconstructed
+ // answer, potentially grabbing them from the cached (unified) answer.
+ // One has to be careful with this approach because inactive m-lines do
+ // not always have an mid, making it tricky (impossible?) to find where
+ // exactly and which m-lines are missing from the reconstructed answer.
+
+ for (var i = 0; i < cached.media.length; i++) {
+ var uLine = cached.media[i];
+
+ delete uLine.msid;
+ delete uLine.sources;
+ delete uLine.ssrcGroups;
+
+ if (typeof sources2ul[i] === 'undefined') {
+ if (!uLine.direction
+ || uLine.direction === 'sendrecv')
+ uLine.direction = 'recvonly';
+ else if (uLine.direction === 'sendonly')
+ uLine.direction = 'inactive';
+ } else {
+ if (!uLine.direction
+ || uLine.direction === 'sendrecv')
+ uLine.direction = 'sendrecv';
+ else if (uLine.direction === 'recvonly')
+ uLine.direction = 'sendonly';
+ }
+
+ uLine.sources = sources2ul[i];
+ uLine.candidates = candidates;
+ uLine.iceUfrag = iceUfrag;
+ uLine.icePwd = icePwd;
+ uLine.fingerprint = fingerprint;
+
+ uLine.rtp = rtp[uLine.type];
+ uLine.payloads = payloads[uLine.type];
+ uLine.rtcpFb = rtcpFb[uLine.type];
+
+ session.media.push(uLine);
+
+ if (typeof uLine.mid === 'string') {
+ // inactive lines don't/may not have an mid.
+ mids.push(uLine.mid);
+ }
+ }
+ } else {
+
+ // SDP offer/answer (and the JSEP spec) forbids removing an m-section
+ // under any circumstances. If we are no longer interested in sending a
+ // track, we just remove the msid and ssrc attributes and set it to
+ // either a=recvonly (as the reofferer, we must use recvonly if the
+ // other side was previously sending on the m-section, but we can also
+ // leave the possibility open if it wasn't previously in use), or
+ // a=inactive.
+
+ if (typeof cached !== 'undefined' &&
+ typeof cached.media !== 'undefined' &&
+ Array.isArray(cached.media)) {
+ cached.media.forEach(function(uLine) {
+ mids.push(uLine.mid);
+ if (typeof mid2ul[uLine.mid] !== 'undefined') {
+ session.media.push(mid2ul[uLine.mid]);
+ } else {
+ delete uLine.msid;
+ delete uLine.sources;
+ delete uLine.ssrcGroups;
+
+ if (!uLine.direction
+ || uLine.direction === 'sendrecv') {
+ uLine.direction = 'sendonly';
+ }
+ if (!uLine.direction
+ || uLine.direction === 'recvonly') {
+ uLine.direction = 'inactive';
+ }
+
+ addSetupAttr (uLine);
+ session.media.push(uLine);
+ }
+ });
+ }
+
+ // Add all the remaining (new) m-lines of the transformed SDP.
+ Object.keys(mid2ul).forEach(function(mid) {
+ if (mids.indexOf(mid) === -1) {
+ mids.push(mid);
+ if (mid2ul[mid].direction === 'recvonly') {
+ // This is a remote recvonly channel. Add its SSRC to the
+ // appropriate sendrecv or sendonly channel.
+ // TODO(gp) what if we don't have sendrecv/sendonly
+ // channel?
+
+ var done = false;
+
+ session.media.some(function (uLine) {
+ if ((uLine.direction === 'sendrecv' ||
+ uLine.direction === 'sendonly') &&
+ uLine.type === mid2ul[mid].type) {
+ // mid2ul[mid] shouldn't have any ssrc-groups
+ Object.keys(mid2ul[mid].sources).forEach(
+ function (ssrc) {
+ uLine.sources[ssrc] =
+ mid2ul[mid].sources[ssrc];
+ });
+
+ done = true;
+ return true;
+ }
+ });
+
+ if (!done) {
+ session.media.push(mid2ul[mid]);
+ }
+ } else {
+ session.media.push(mid2ul[mid]);
+ }
+ }
+ });
+ }
+
+ // After we have constructed the Plan Unified m-lines we can figure out
+ // where (in which m-line) to place the 'recvonly SSRCs'.
+ // Note: we assume here that we are the answerer in the O/A, so any offers
+ // which we translate come from the remote side, while answers are local
+ // (and so our last local description is cached as an 'answer').
+ ["audio", "video"].forEach(function (type) {
+ if (!session || !session.media || !Array.isArray(session.media))
+ return;
+
+ var idx = null;
+ if (Object.keys(recvonlySsrcs[type]).length > 0) {
+ idx = self.getFirstSendingIndexFromAnswer(type);
+ if (idx === null){
+ // If this is the first offer we receive, we don't have a
+ // cached answer. Assume that we will be sending media using
+ // the first m-line for each media type.
+
+ for (var i = 0; i < session.media.length; i++) {
+ if (session.media[i].type === type) {
+ idx = i;
+ break;
+ }
+ }
+ }
+ }
+
+ if (idx && session.media.length > idx) {
+ var mLine = session.media[idx];
+ Object.keys(recvonlySsrcs[type]).forEach(function(ssrc) {
+ if (mLine.sources && mLine.sources[ssrc]) {
+ console.warn("Replacing an existing SSRC.");
+ }
+ if (!mLine.sources) {
+ mLine.sources = {};
+ }
+
+ mLine.sources[ssrc] = recvonlySsrcs[type][ssrc];
+ });
+ }
+ });
+
+ if (typeof session.groups !== 'undefined') {
+ // We regenerate the BUNDLE group (since we regenerated the mids)
+ session.groups.some(function(group) {
+ if (group.type === 'BUNDLE') {
+ group.mids = mids.join(' ');
+ return true;
+ }
+ });
+ }
+
+ // msid semantic
+ session.msidSemantic = {
+ semantic: 'WMS',
+ token: '*'
+ };
+
+ var resStr = transform.write(session);
+
+ // Cache the transformed SDP (Unified Plan) for later re-use in this
+ // function.
+ this.cache[desc.type] = resStr;
+
+ return new RTCSessionDescription({
+ type: desc.type,
+ sdp: resStr
+ });
+
+ //#endregion
+};
+
+},{"./array-equals":17,"./transform":20}],20:[function(require,module,exports){
+/* Copyright @ 2015 Atlassian Pty Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+var transform = require('sdp-transform');
+
+exports.write = function(session, opts) {
+
+ if (typeof session !== 'undefined' &&
+ typeof session.media !== 'undefined' &&
+ Array.isArray(session.media)) {
+
+ session.media.forEach(function (mLine) {
+ // expand sources to ssrcs
+ if (typeof mLine.sources !== 'undefined' &&
+ Object.keys(mLine.sources).length !== 0) {
+ mLine.ssrcs = [];
+ Object.keys(mLine.sources).forEach(function (ssrc) {
+ var source = mLine.sources[ssrc];
+ Object.keys(source).forEach(function (attribute) {
+ mLine.ssrcs.push({
+ id: ssrc,
+ attribute: attribute,
+ value: source[attribute]
+ });
+ });
+ });
+ delete mLine.sources;
+ }
+
+ // join ssrcs in ssrc groups
+ if (typeof mLine.ssrcGroups !== 'undefined' &&
+ Array.isArray(mLine.ssrcGroups)) {
+ mLine.ssrcGroups.forEach(function (ssrcGroup) {
+ if (typeof ssrcGroup.ssrcs !== 'undefined' &&
+ Array.isArray(ssrcGroup.ssrcs)) {
+ ssrcGroup.ssrcs = ssrcGroup.ssrcs.join(' ');
+ }
+ });
+ }
+ });
+ }
+
+ // join group mids
+ if (typeof session !== 'undefined' &&
+ typeof session.groups !== 'undefined' && Array.isArray(session.groups)) {
+
+ session.groups.forEach(function (g) {
+ if (typeof g.mids !== 'undefined' && Array.isArray(g.mids)) {
+ g.mids = g.mids.join(' ');
+ }
+ });
+ }
+
+ return transform.write(session, opts);
+};
+
+exports.parse = function(sdp) {
+ var session = transform.parse(sdp);
+
+ if (typeof session !== 'undefined' && typeof session.media !== 'undefined' &&
+ Array.isArray(session.media)) {
+
+ session.media.forEach(function (mLine) {
+ // group sources attributes by ssrc
+ if (typeof mLine.ssrcs !== 'undefined' && Array.isArray(mLine.ssrcs)) {
+ mLine.sources = {};
+ mLine.ssrcs.forEach(function (ssrc) {
+ if (!mLine.sources[ssrc.id])
+ mLine.sources[ssrc.id] = {};
+ mLine.sources[ssrc.id][ssrc.attribute] = ssrc.value;
+ });
+
+ delete mLine.ssrcs;
+ }
+
+ // split ssrcs in ssrc groups
+ if (typeof mLine.ssrcGroups !== 'undefined' &&
+ Array.isArray(mLine.ssrcGroups)) {
+ mLine.ssrcGroups.forEach(function (ssrcGroup) {
+ if (typeof ssrcGroup.ssrcs === 'string') {
+ ssrcGroup.ssrcs = ssrcGroup.ssrcs.split(' ');
+ }
+ });
+ }
+ });
+ }
+ // split group mids
+ if (typeof session !== 'undefined' &&
+ typeof session.groups !== 'undefined' && Array.isArray(session.groups)) {
+
+ session.groups.forEach(function (g) {
+ if (typeof g.mids === 'string') {
+ g.mids = g.mids.split(' ');
+ }
+ });
+ }
+
+ return session;
+};
+
+
+},{"sdp-transform":14}],21:[function(require,module,exports){
+/**
+ * UAParser.js v0.7.17
+ * Lightweight JavaScript-based User-Agent string parser
+ * https://github.com/faisalman/ua-parser-js
+ *
+ * Copyright © 2012-2016 Faisal Salman
+ * Dual licensed under GPLv2 & MIT
+ */
+
+(function (window, undefined) {
+
+ 'use strict';
+
+ //////////////
+ // Constants
+ /////////////
+
+
+ var LIBVERSION = '0.7.17',
+ EMPTY = '',
+ UNKNOWN = '?',
+ FUNC_TYPE = 'function',
+ UNDEF_TYPE = 'undefined',
+ OBJ_TYPE = 'object',
+ STR_TYPE = 'string',
+ MAJOR = 'major', // deprecated
+ MODEL = 'model',
+ NAME = 'name',
+ TYPE = 'type',
+ VENDOR = 'vendor',
+ VERSION = 'version',
+ ARCHITECTURE= 'architecture',
+ CONSOLE = 'console',
+ MOBILE = 'mobile',
+ TABLET = 'tablet',
+ SMARTTV = 'smarttv',
+ WEARABLE = 'wearable',
+ EMBEDDED = 'embedded';
+
+
+ ///////////
+ // Helper
+ //////////
+
+
+ var util = {
+ extend : function (regexes, extensions) {
+ var margedRegexes = {};
+ for (var i in regexes) {
+ if (extensions[i] && extensions[i].length % 2 === 0) {
+ margedRegexes[i] = extensions[i].concat(regexes[i]);
+ } else {
+ margedRegexes[i] = regexes[i];
+ }
+ }
+ return margedRegexes;
+ },
+ has : function (str1, str2) {
+ if (typeof str1 === "string") {
+ return str2.toLowerCase().indexOf(str1.toLowerCase()) !== -1;
+ } else {
+ return false;
+ }
+ },
+ lowerize : function (str) {
+ return str.toLowerCase();
+ },
+ major : function (version) {
+ return typeof(version) === STR_TYPE ? version.replace(/[^\d\.]/g,'').split(".")[0] : undefined;
+ },
+ trim : function (str) {
+ return str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
+ }
+ };
+
+
+ ///////////////
+ // Map helper
+ //////////////
+
+
+ var mapper = {
+
+ rgx : function (ua, arrays) {
+
+ //var result = {},
+ var i = 0, j, k, p, q, matches, match;//, args = arguments;
+
+ /*// construct object barebones
+ for (p = 0; p < args[1].length; p++) {
+ q = args[1][p];
+ result[typeof q === OBJ_TYPE ? q[0] : q] = undefined;
+ }*/
+
+ // loop through all regexes maps
+ while (i < arrays.length && !matches) {
+
+ var regex = arrays[i], // even sequence (0,2,4,..)
+ props = arrays[i + 1]; // odd sequence (1,3,5,..)
+ j = k = 0;
+
+ // try matching uastring with regexes
+ while (j < regex.length && !matches) {
+
+ matches = regex[j++].exec(ua);
+
+ if (!!matches) {
+ for (p = 0; p < props.length; p++) {
+ match = matches[++k];
+ q = props[p];
+ // check if given property is actually array
+ if (typeof q === OBJ_TYPE && q.length > 0) {
+ if (q.length == 2) {
+ if (typeof q[1] == FUNC_TYPE) {
+ // assign modified match
+ this[q[0]] = q[1].call(this, match);
+ } else {
+ // assign given value, ignore regex match
+ this[q[0]] = q[1];
+ }
+ } else if (q.length == 3) {
+ // check whether function or regex
+ if (typeof q[1] === FUNC_TYPE && !(q[1].exec && q[1].test)) {
+ // call function (usually string mapper)
+ this[q[0]] = match ? q[1].call(this, match, q[2]) : undefined;
+ } else {
+ // sanitize match using given regex
+ this[q[0]] = match ? match.replace(q[1], q[2]) : undefined;
+ }
+ } else if (q.length == 4) {
+ this[q[0]] = match ? q[3].call(this, match.replace(q[1], q[2])) : undefined;
+ }
+ } else {
+ this[q] = match ? match : undefined;
+ }
+ }
+ }
+ }
+ i += 2;
+ }
+ // console.log(this);
+ //return this;
+ },
+
+ str : function (str, map) {
+
+ for (var i in map) {
+ // check if array
+ if (typeof map[i] === OBJ_TYPE && map[i].length > 0) {
+ for (var j = 0; j < map[i].length; j++) {
+ if (util.has(map[i][j], str)) {
+ return (i === UNKNOWN) ? undefined : i;
+ }
+ }
+ } else if (util.has(map[i], str)) {
+ return (i === UNKNOWN) ? undefined : i;
+ }
+ }
+ return str;
+ }
+ };
+
+
+ ///////////////
+ // String map
+ //////////////
+
+
+ var maps = {
+
+ browser : {
+ oldsafari : {
+ version : {
+ '1.0' : '/8',
+ '1.2' : '/1',
+ '1.3' : '/3',
+ '2.0' : '/412',
+ '2.0.2' : '/416',
+ '2.0.3' : '/417',
+ '2.0.4' : '/419',
+ '?' : '/'
+ }
+ }
+ },
+
+ device : {
+ amazon : {
+ model : {
+ 'Fire Phone' : ['SD', 'KF']
+ }
+ },
+ sprint : {
+ model : {
+ 'Evo Shift 4G' : '7373KT'
+ },
+ vendor : {
+ 'HTC' : 'APA',
+ 'Sprint' : 'Sprint'
+ }
+ }
+ },
+
+ os : {
+ windows : {
+ version : {
+ 'ME' : '4.90',
+ 'NT 3.11' : 'NT3.51',
+ 'NT 4.0' : 'NT4.0',
+ '2000' : 'NT 5.0',
+ 'XP' : ['NT 5.1', 'NT 5.2'],
+ 'Vista' : 'NT 6.0',
+ '7' : 'NT 6.1',
+ '8' : 'NT 6.2',
+ '8.1' : 'NT 6.3',
+ '10' : ['NT 6.4', 'NT 10.0'],
+ 'RT' : 'ARM'
+ }
+ }
+ }
+ };
+
+
+ //////////////
+ // Regex map
+ /////////////
+
+
+ var regexes = {
+
+ browser : [[
+
+ // Presto based
+ /(opera\smini)\/([\w\.-]+)/i, // Opera Mini
+ /(opera\s[mobiletab]+).+version\/([\w\.-]+)/i, // Opera Mobi/Tablet
+ /(opera).+version\/([\w\.]+)/i, // Opera > 9.80
+ /(opera)[\/\s]+([\w\.]+)/i // Opera < 9.80
+ ], [NAME, VERSION], [
+
+ /(opios)[\/\s]+([\w\.]+)/i // Opera mini on iphone >= 8.0
+ ], [[NAME, 'Opera Mini'], VERSION], [
+
+ /\s(opr)\/([\w\.]+)/i // Opera Webkit
+ ], [[NAME, 'Opera'], VERSION], [
+
+ // Mixed
+ /(kindle)\/([\w\.]+)/i, // Kindle
+ /(lunascape|maxthon|netfront|jasmine|blazer)[\/\s]?([\w\.]+)*/i,
+ // Lunascape/Maxthon/Netfront/Jasmine/Blazer
+
+ // Trident based
+ /(avant\s|iemobile|slim|baidu)(?:browser)?[\/\s]?([\w\.]*)/i,
+ // Avant/IEMobile/SlimBrowser/Baidu
+ /(?:ms|\()(ie)\s([\w\.]+)/i, // Internet Explorer
+
+ // Webkit/KHTML based
+ /(rekonq)\/([\w\.]+)*/i, // Rekonq
+ /(chromium|flock|rockmelt|midori|epiphany|silk|skyfire|ovibrowser|bolt|iron|vivaldi|iridium|phantomjs|bowser)\/([\w\.-]+)/i
+ // Chromium/Flock/RockMelt/Midori/Epiphany/Silk/Skyfire/Bolt/Iron/Iridium/PhantomJS/Bowser
+ ], [NAME, VERSION], [
+
+ /(trident).+rv[:\s]([\w\.]+).+like\sgecko/i // IE11
+ ], [[NAME, 'IE'], VERSION], [
+
+ /(edge)\/((\d+)?[\w\.]+)/i // Microsoft Edge
+ ], [NAME, VERSION], [
+
+ /(yabrowser)\/([\w\.]+)/i // Yandex
+ ], [[NAME, 'Yandex'], VERSION], [
+
+ /(puffin)\/([\w\.]+)/i // Puffin
+ ], [[NAME, 'Puffin'], VERSION], [
+
+ /((?:[\s\/])uc?\s?browser|(?:juc.+)ucweb)[\/\s]?([\w\.]+)/i
+ // UCBrowser
+ ], [[NAME, 'UCBrowser'], VERSION], [
+
+ /(comodo_dragon)\/([\w\.]+)/i // Comodo Dragon
+ ], [[NAME, /_/g, ' '], VERSION], [
+
+ /(micromessenger)\/([\w\.]+)/i // WeChat
+ ], [[NAME, 'WeChat'], VERSION], [
+
+ /(QQ)\/([\d\.]+)/i // QQ, aka ShouQ
+ ], [NAME, VERSION], [
+
+ /m?(qqbrowser)[\/\s]?([\w\.]+)/i // QQBrowser
+ ], [NAME, VERSION], [
+
+ /xiaomi\/miuibrowser\/([\w\.]+)/i // MIUI Browser
+ ], [VERSION, [NAME, 'MIUI Browser']], [
+
+ /;fbav\/([\w\.]+);/i // Facebook App for iOS & Android
+ ], [VERSION, [NAME, 'Facebook']], [
+
+ /headlesschrome(?:\/([\w\.]+)|\s)/i // Chrome Headless
+ ], [VERSION, [NAME, 'Chrome Headless']], [
+
+ /\swv\).+(chrome)\/([\w\.]+)/i // Chrome WebView
+ ], [[NAME, /(.+)/, '$1 WebView'], VERSION], [
+
+ /((?:oculus|samsung)browser)\/([\w\.]+)/i
+ ], [[NAME, /(.+(?:g|us))(.+)/, '$1 $2'], VERSION], [ // Oculus / Samsung Browser
+
+ /android.+version\/([\w\.]+)\s+(?:mobile\s?safari|safari)*/i // Android Browser
+ ], [VERSION, [NAME, 'Android Browser']], [
+
+ /(chrome|omniweb|arora|[tizenoka]{5}\s?browser)\/v?([\w\.]+)/i
+ // Chrome/OmniWeb/Arora/Tizen/Nokia
+ ], [NAME, VERSION], [
+
+ /(dolfin)\/([\w\.]+)/i // Dolphin
+ ], [[NAME, 'Dolphin'], VERSION], [
+
+ /((?:android.+)crmo|crios)\/([\w\.]+)/i // Chrome for Android/iOS
+ ], [[NAME, 'Chrome'], VERSION], [
+
+ /(coast)\/([\w\.]+)/i // Opera Coast
+ ], [[NAME, 'Opera Coast'], VERSION], [
+
+ /fxios\/([\w\.-]+)/i // Firefox for iOS
+ ], [VERSION, [NAME, 'Firefox']], [
+
+ /version\/([\w\.]+).+?mobile\/\w+\s(safari)/i // Mobile Safari
+ ], [VERSION, [NAME, 'Mobile Safari']], [
+
+ /version\/([\w\.]+).+?(mobile\s?safari|safari)/i // Safari & Safari Mobile
+ ], [VERSION, NAME], [
+
+ /webkit.+?(gsa)\/([\w\.]+).+?(mobile\s?safari|safari)(\/[\w\.]+)/i // Google Search Appliance on iOS
+ ], [[NAME, 'GSA'], VERSION], [
+
+ /webkit.+?(mobile\s?safari|safari)(\/[\w\.]+)/i // Safari < 3.0
+ ], [NAME, [VERSION, mapper.str, maps.browser.oldsafari.version]], [
+
+ /(konqueror)\/([\w\.]+)/i, // Konqueror
+ /(webkit|khtml)\/([\w\.]+)/i
+ ], [NAME, VERSION], [
+
+ // Gecko based
+ /(navigator|netscape)\/([\w\.-]+)/i // Netscape
+ ], [[NAME, 'Netscape'], VERSION], [
+ /(swiftfox)/i, // Swiftfox
+ /(icedragon|iceweasel|camino|chimera|fennec|maemo\sbrowser|minimo|conkeror)[\/\s]?([\w\.\+]+)/i,
+ // IceDragon/Iceweasel/Camino/Chimera/Fennec/Maemo/Minimo/Conkeror
+ /(firefox|seamonkey|k-meleon|icecat|iceape|firebird|phoenix)\/([\w\.-]+)/i,
+ // Firefox/SeaMonkey/K-Meleon/IceCat/IceApe/Firebird/Phoenix
+ /(mozilla)\/([\w\.]+).+rv\:.+gecko\/\d+/i, // Mozilla
+
+ // Other
+ /(polaris|lynx|dillo|icab|doris|amaya|w3m|netsurf|sleipnir)[\/\s]?([\w\.]+)/i,
+ // Polaris/Lynx/Dillo/iCab/Doris/Amaya/w3m/NetSurf/Sleipnir
+ /(links)\s\(([\w\.]+)/i, // Links
+ /(gobrowser)\/?([\w\.]+)*/i, // GoBrowser
+ /(ice\s?browser)\/v?([\w\._]+)/i, // ICE Browser
+ /(mosaic)[\/\s]([\w\.]+)/i // Mosaic
+ ], [NAME, VERSION]
+
+ /* /////////////////////
+ // Media players BEGIN
+ ////////////////////////
+
+ , [
+
+ /(apple(?:coremedia|))\/((\d+)[\w\._]+)/i, // Generic Apple CoreMedia
+ /(coremedia) v((\d+)[\w\._]+)/i
+ ], [NAME, VERSION], [
+
+ /(aqualung|lyssna|bsplayer)\/((\d+)?[\w\.-]+)/i // Aqualung/Lyssna/BSPlayer
+ ], [NAME, VERSION], [
+
+ /(ares|ossproxy)\s((\d+)[\w\.-]+)/i // Ares/OSSProxy
+ ], [NAME, VERSION], [
+
+ /(audacious|audimusicstream|amarok|bass|core|dalvik|gnomemplayer|music on console|nsplayer|psp-internetradioplayer|videos)\/((\d+)[\w\.-]+)/i,
+ // Audacious/AudiMusicStream/Amarok/BASS/OpenCORE/Dalvik/GnomeMplayer/MoC
+ // NSPlayer/PSP-InternetRadioPlayer/Videos
+ /(clementine|music player daemon)\s((\d+)[\w\.-]+)/i, // Clementine/MPD
+ /(lg player|nexplayer)\s((\d+)[\d\.]+)/i,
+ /player\/(nexplayer|lg player)\s((\d+)[\w\.-]+)/i // NexPlayer/LG Player
+ ], [NAME, VERSION], [
+ /(nexplayer)\s((\d+)[\w\.-]+)/i // Nexplayer
+ ], [NAME, VERSION], [
+
+ /(flrp)\/((\d+)[\w\.-]+)/i // Flip Player
+ ], [[NAME, 'Flip Player'], VERSION], [
+
+ /(fstream|nativehost|queryseekspider|ia-archiver|facebookexternalhit)/i
+ // FStream/NativeHost/QuerySeekSpider/IA Archiver/facebookexternalhit
+ ], [NAME], [
+
+ /(gstreamer) souphttpsrc (?:\([^\)]+\)){0,1} libsoup\/((\d+)[\w\.-]+)/i
+ // Gstreamer
+ ], [NAME, VERSION], [
+
+ /(htc streaming player)\s[\w_]+\s\/\s((\d+)[\d\.]+)/i, // HTC Streaming Player
+ /(java|python-urllib|python-requests|wget|libcurl)\/((\d+)[\w\.-_]+)/i,
+ // Java/urllib/requests/wget/cURL
+ /(lavf)((\d+)[\d\.]+)/i // Lavf (FFMPEG)
+ ], [NAME, VERSION], [
+
+ /(htc_one_s)\/((\d+)[\d\.]+)/i // HTC One S
+ ], [[NAME, /_/g, ' '], VERSION], [
+
+ /(mplayer)(?:\s|\/)(?:(?:sherpya-){0,1}svn)(?:-|\s)(r\d+(?:-\d+[\w\.-]+){0,1})/i
+ // MPlayer SVN
+ ], [NAME, VERSION], [
+
+ /(mplayer)(?:\s|\/|[unkow-]+)((\d+)[\w\.-]+)/i // MPlayer
+ ], [NAME, VERSION], [
+
+ /(mplayer)/i, // MPlayer (no other info)
+ /(yourmuze)/i, // YourMuze
+ /(media player classic|nero showtime)/i // Media Player Classic/Nero ShowTime
+ ], [NAME], [
+
+ /(nero (?:home|scout))\/((\d+)[\w\.-]+)/i // Nero Home/Nero Scout
+ ], [NAME, VERSION], [
+
+ /(nokia\d+)\/((\d+)[\w\.-]+)/i // Nokia
+ ], [NAME, VERSION], [
+
+ /\s(songbird)\/((\d+)[\w\.-]+)/i // Songbird/Philips-Songbird
+ ], [NAME, VERSION], [
+
+ /(winamp)3 version ((\d+)[\w\.-]+)/i, // Winamp
+ /(winamp)\s((\d+)[\w\.-]+)/i,
+ /(winamp)mpeg\/((\d+)[\w\.-]+)/i
+ ], [NAME, VERSION], [
+
+ /(ocms-bot|tapinradio|tunein radio|unknown|winamp|inlight radio)/i // OCMS-bot/tap in radio/tunein/unknown/winamp (no other info)
+ // inlight radio
+ ], [NAME], [
+
+ /(quicktime|rma|radioapp|radioclientapplication|soundtap|totem|stagefright|streamium)\/((\d+)[\w\.-]+)/i
+ // QuickTime/RealMedia/RadioApp/RadioClientApplication/
+ // SoundTap/Totem/Stagefright/Streamium
+ ], [NAME, VERSION], [
+
+ /(smp)((\d+)[\d\.]+)/i // SMP
+ ], [NAME, VERSION], [
+
+ /(vlc) media player - version ((\d+)[\w\.]+)/i, // VLC Videolan
+ /(vlc)\/((\d+)[\w\.-]+)/i,
+ /(xbmc|gvfs|xine|xmms|irapp)\/((\d+)[\w\.-]+)/i, // XBMC/gvfs/Xine/XMMS/irapp
+ /(foobar2000)\/((\d+)[\d\.]+)/i, // Foobar2000
+ /(itunes)\/((\d+)[\d\.]+)/i // iTunes
+ ], [NAME, VERSION], [
+
+ /(wmplayer)\/((\d+)[\w\.-]+)/i, // Windows Media Player
+ /(windows-media-player)\/((\d+)[\w\.-]+)/i
+ ], [[NAME, /-/g, ' '], VERSION], [
+
+ /windows\/((\d+)[\w\.-]+) upnp\/[\d\.]+ dlnadoc\/[\d\.]+ (home media server)/i
+ // Windows Media Server
+ ], [VERSION, [NAME, 'Windows']], [
+
+ /(com\.riseupradioalarm)\/((\d+)[\d\.]*)/i // RiseUP Radio Alarm
+ ], [NAME, VERSION], [
+
+ /(rad.io)\s((\d+)[\d\.]+)/i, // Rad.io
+ /(radio.(?:de|at|fr))\s((\d+)[\d\.]+)/i
+ ], [[NAME, 'rad.io'], VERSION]
+
+ //////////////////////
+ // Media players END
+ ////////////////////*/
+
+ ],
+
+ cpu : [[
+
+ /(?:(amd|x(?:(?:86|64)[_-])?|wow|win)64)[;\)]/i // AMD64
+ ], [[ARCHITECTURE, 'amd64']], [
+
+ /(ia32(?=;))/i // IA32 (quicktime)
+ ], [[ARCHITECTURE, util.lowerize]], [
+
+ /((?:i[346]|x)86)[;\)]/i // IA32
+ ], [[ARCHITECTURE, 'ia32']], [
+
+ // PocketPC mistakenly identified as PowerPC
+ /windows\s(ce|mobile);\sppc;/i
+ ], [[ARCHITECTURE, 'arm']], [
+
+ /((?:ppc|powerpc)(?:64)?)(?:\smac|;|\))/i // PowerPC
+ ], [[ARCHITECTURE, /ower/, '', util.lowerize]], [
+
+ /(sun4\w)[;\)]/i // SPARC
+ ], [[ARCHITECTURE, 'sparc']], [
+
+ /((?:avr32|ia64(?=;))|68k(?=\))|arm(?:64|(?=v\d+;))|(?=atmel\s)avr|(?:irix|mips|sparc)(?:64)?(?=;)|pa-risc)/i
+ // IA64, 68K, ARM/64, AVR/32, IRIX/64, MIPS/64, SPARC/64, PA-RISC
+ ], [[ARCHITECTURE, util.lowerize]]
+ ],
+
+ device : [[
+
+ /\((ipad|playbook);[\w\s\);-]+(rim|apple)/i // iPad/PlayBook
+ ], [MODEL, VENDOR, [TYPE, TABLET]], [
+
+ /applecoremedia\/[\w\.]+ \((ipad)/ // iPad
+ ], [MODEL, [VENDOR, 'Apple'], [TYPE, TABLET]], [
+
+ /(apple\s{0,1}tv)/i // Apple TV
+ ], [[MODEL, 'Apple TV'], [VENDOR, 'Apple']], [
+
+ /(archos)\s(gamepad2?)/i, // Archos
+ /(hp).+(touchpad)/i, // HP TouchPad
+ /(hp).+(tablet)/i, // HP Tablet
+ /(kindle)\/([\w\.]+)/i, // Kindle
+ /\s(nook)[\w\s]+build\/(\w+)/i, // Nook
+ /(dell)\s(strea[kpr\s\d]*[\dko])/i // Dell Streak
+ ], [VENDOR, MODEL, [TYPE, TABLET]], [
+
+ /(kf[A-z]+)\sbuild\/[\w\.]+.*silk\//i // Kindle Fire HD
+ ], [MODEL, [VENDOR, 'Amazon'], [TYPE, TABLET]], [
+ /(sd|kf)[0349hijorstuw]+\sbuild\/[\w\.]+.*silk\//i // Fire Phone
+ ], [[MODEL, mapper.str, maps.device.amazon.model], [VENDOR, 'Amazon'], [TYPE, MOBILE]], [
+
+ /\((ip[honed|\s\w*]+);.+(apple)/i // iPod/iPhone
+ ], [MODEL, VENDOR, [TYPE, MOBILE]], [
+ /\((ip[honed|\s\w*]+);/i // iPod/iPhone
+ ], [MODEL, [VENDOR, 'Apple'], [TYPE, MOBILE]], [
+
+ /(blackberry)[\s-]?(\w+)/i, // BlackBerry
+ /(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus|dell|meizu|motorola|polytron)[\s_-]?([\w-]+)*/i,
+ // BenQ/Palm/Sony-Ericsson/Acer/Asus/Dell/Meizu/Motorola/Polytron
+ /(hp)\s([\w\s]+\w)/i, // HP iPAQ
+ /(asus)-?(\w+)/i // Asus
+ ], [VENDOR, MODEL, [TYPE, MOBILE]], [
+ /\(bb10;\s(\w+)/i // BlackBerry 10
+ ], [MODEL, [VENDOR, 'BlackBerry'], [TYPE, MOBILE]], [
+ // Asus Tablets
+ /android.+(transfo[prime\s]{4,10}\s\w+|eeepc|slider\s\w+|nexus 7|padfone)/i
+ ], [MODEL, [VENDOR, 'Asus'], [TYPE, TABLET]], [
+
+ /(sony)\s(tablet\s[ps])\sbuild\//i, // Sony
+ /(sony)?(?:sgp.+)\sbuild\//i
+ ], [[VENDOR, 'Sony'], [MODEL, 'Xperia Tablet'], [TYPE, TABLET]], [
+ /android.+\s([c-g]\d{4}|so[-l]\w+)\sbuild\//i
+ ], [MODEL, [VENDOR, 'Sony'], [TYPE, MOBILE]], [
+
+ /\s(ouya)\s/i, // Ouya
+ /(nintendo)\s([wids3u]+)/i // Nintendo
+ ], [VENDOR, MODEL, [TYPE, CONSOLE]], [
+
+ /android.+;\s(shield)\sbuild/i // Nvidia
+ ], [MODEL, [VENDOR, 'Nvidia'], [TYPE, CONSOLE]], [
+
+ /(playstation\s[34portablevi]+)/i // Playstation
+ ], [MODEL, [VENDOR, 'Sony'], [TYPE, CONSOLE]], [
+
+ /(sprint\s(\w+))/i // Sprint Phones
+ ], [[VENDOR, mapper.str, maps.device.sprint.vendor], [MODEL, mapper.str, maps.device.sprint.model], [TYPE, MOBILE]], [
+
+ /(lenovo)\s?(S(?:5000|6000)+(?:[-][\w+]))/i // Lenovo tablets
+ ], [VENDOR, MODEL, [TYPE, TABLET]], [
+
+ /(htc)[;_\s-]+([\w\s]+(?=\))|\w+)*/i, // HTC
+ /(zte)-(\w+)*/i, // ZTE
+ /(alcatel|geeksphone|lenovo|nexian|panasonic|(?=;\s)sony)[_\s-]?([\w-]+)*/i
+ // Alcatel/GeeksPhone/Lenovo/Nexian/Panasonic/Sony
+ ], [VENDOR, [MODEL, /_/g, ' '], [TYPE, MOBILE]], [
+
+ /(nexus\s9)/i // HTC Nexus 9
+ ], [MODEL, [VENDOR, 'HTC'], [TYPE, TABLET]], [
+
+ /d\/huawei([\w\s-]+)[;\)]/i,
+ /(nexus\s6p)/i // Huawei
+ ], [MODEL, [VENDOR, 'Huawei'], [TYPE, MOBILE]], [
+
+ /(microsoft);\s(lumia[\s\w]+)/i // Microsoft Lumia
+ ], [VENDOR, MODEL, [TYPE, MOBILE]], [
+
+ /[\s\(;](xbox(?:\sone)?)[\s\);]/i // Microsoft Xbox
+ ], [MODEL, [VENDOR, 'Microsoft'], [TYPE, CONSOLE]], [
+ /(kin\.[onetw]{3})/i // Microsoft Kin
+ ], [[MODEL, /\./g, ' '], [VENDOR, 'Microsoft'], [TYPE, MOBILE]], [
+
+ // Motorola
+ /\s(milestone|droid(?:[2-4x]|\s(?:bionic|x2|pro|razr))?(:?\s4g)?)[\w\s]+build\//i,
+ /mot[\s-]?(\w+)*/i,
+ /(XT\d{3,4}) build\//i,
+ /(nexus\s6)/i
+ ], [MODEL, [VENDOR, 'Motorola'], [TYPE, MOBILE]], [
+ /android.+\s(mz60\d|xoom[\s2]{0,2})\sbuild\//i
+ ], [MODEL, [VENDOR, 'Motorola'], [TYPE, TABLET]], [
+
+ /hbbtv\/\d+\.\d+\.\d+\s+\([\w\s]*;\s*(\w[^;]*);([^;]*)/i // HbbTV devices
+ ], [[VENDOR, util.trim], [MODEL, util.trim], [TYPE, SMARTTV]], [
+
+ /hbbtv.+maple;(\d+)/i
+ ], [[MODEL, /^/, 'SmartTV'], [VENDOR, 'Samsung'], [TYPE, SMARTTV]], [
+
+ /\(dtv[\);].+(aquos)/i // Sharp
+ ], [MODEL, [VENDOR, 'Sharp'], [TYPE, SMARTTV]], [
+
+ /android.+((sch-i[89]0\d|shw-m380s|gt-p\d{4}|gt-n\d+|sgh-t8[56]9|nexus 10))/i,
+ /((SM-T\w+))/i
+ ], [[VENDOR, 'Samsung'], MODEL, [TYPE, TABLET]], [ // Samsung
+ /smart-tv.+(samsung)/i
+ ], [VENDOR, [TYPE, SMARTTV], MODEL], [
+ /((s[cgp]h-\w+|gt-\w+|galaxy\snexus|sm-\w[\w\d]+))/i,
+ /(sam[sung]*)[\s-]*(\w+-?[\w-]*)*/i,
+ /sec-((sgh\w+))/i
+ ], [[VENDOR, 'Samsung'], MODEL, [TYPE, MOBILE]], [
+
+ /sie-(\w+)*/i // Siemens
+ ], [MODEL, [VENDOR, 'Siemens'], [TYPE, MOBILE]], [
+
+ /(maemo|nokia).*(n900|lumia\s\d+)/i, // Nokia
+ /(nokia)[\s_-]?([\w-]+)*/i
+ ], [[VENDOR, 'Nokia'], MODEL, [TYPE, MOBILE]], [
+
+ /android\s3\.[\s\w;-]{10}(a\d{3})/i // Acer
+ ], [MODEL, [VENDOR, 'Acer'], [TYPE, TABLET]], [
+
+ /android.+([vl]k\-?\d{3})\s+build/i // LG Tablet
+ ], [MODEL, [VENDOR, 'LG'], [TYPE, TABLET]], [
+ /android\s3\.[\s\w;-]{10}(lg?)-([06cv9]{3,4})/i // LG Tablet
+ ], [[VENDOR, 'LG'], MODEL, [TYPE, TABLET]], [
+ /(lg) netcast\.tv/i // LG SmartTV
+ ], [VENDOR, MODEL, [TYPE, SMARTTV]], [
+ /(nexus\s[45])/i, // LG
+ /lg[e;\s\/-]+(\w+)*/i,
+ /android.+lg(\-?[\d\w]+)\s+build/i
+ ], [MODEL, [VENDOR, 'LG'], [TYPE, MOBILE]], [
+
+ /android.+(ideatab[a-z0-9\-\s]+)/i // Lenovo
+ ], [MODEL, [VENDOR, 'Lenovo'], [TYPE, TABLET]], [
+
+ /linux;.+((jolla));/i // Jolla
+ ], [VENDOR, MODEL, [TYPE, MOBILE]], [
+
+ /((pebble))app\/[\d\.]+\s/i // Pebble
+ ], [VENDOR, MODEL, [TYPE, WEARABLE]], [
+
+ /android.+;\s(oppo)\s?([\w\s]+)\sbuild/i // OPPO
+ ], [VENDOR, MODEL, [TYPE, MOBILE]], [
+
+ /crkey/i // Google Chromecast
+ ], [[MODEL, 'Chromecast'], [VENDOR, 'Google']], [
+
+ /android.+;\s(glass)\s\d/i // Google Glass
+ ], [MODEL, [VENDOR, 'Google'], [TYPE, WEARABLE]], [
+
+ /android.+;\s(pixel c)\s/i // Google Pixel C
+ ], [MODEL, [VENDOR, 'Google'], [TYPE, TABLET]], [
+
+ /android.+;\s(pixel xl|pixel)\s/i // Google Pixel
+ ], [MODEL, [VENDOR, 'Google'], [TYPE, MOBILE]], [
+
+ /android.+(\w+)\s+build\/hm\1/i, // Xiaomi Hongmi 'numeric' models
+ /android.+(hm[\s\-_]*note?[\s_]*(?:\d\w)?)\s+build/i, // Xiaomi Hongmi
+ /android.+(mi[\s\-_]*(?:one|one[\s_]plus|note lte)?[\s_]*(?:\d\w)?)\s+build/i, // Xiaomi Mi
+ /android.+(redmi[\s\-_]*(?:note)?(?:[\s_]*[\w\s]+)?)\s+build/i // Redmi Phones
+ ], [[MODEL, /_/g, ' '], [VENDOR, 'Xiaomi'], [TYPE, MOBILE]], [
+ /android.+(mi[\s\-_]*(?:pad)?(?:[\s_]*[\w\s]+)?)\s+build/i // Mi Pad tablets
+ ],[[MODEL, /_/g, ' '], [VENDOR, 'Xiaomi'], [TYPE, TABLET]], [
+ /android.+;\s(m[1-5]\snote)\sbuild/i // Meizu Tablet
+ ], [MODEL, [VENDOR, 'Meizu'], [TYPE, TABLET]], [
+
+ /android.+a000(1)\s+build/i // OnePlus
+ ], [MODEL, [VENDOR, 'OnePlus'], [TYPE, MOBILE]], [
+
+ /android.+[;\/]\s*(RCT[\d\w]+)\s+build/i // RCA Tablets
+ ], [MODEL, [VENDOR, 'RCA'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(Venue[\d\s]*)\s+build/i // Dell Venue Tablets
+ ], [MODEL, [VENDOR, 'Dell'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(Q[T|M][\d\w]+)\s+build/i // Verizon Tablet
+ ], [MODEL, [VENDOR, 'Verizon'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s+(Barnes[&\s]+Noble\s+|BN[RT])(V?.*)\s+build/i // Barnes & Noble Tablet
+ ], [[VENDOR, 'Barnes & Noble'], MODEL, [TYPE, TABLET]], [
+
+ /android.+[;\/]\s+(TM\d{3}.*\b)\s+build/i // Barnes & Noble Tablet
+ ], [MODEL, [VENDOR, 'NuVision'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(zte)?.+(k\d{2})\s+build/i // ZTE K Series Tablet
+ ], [[VENDOR, 'ZTE'], MODEL, [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(gen\d{3})\s+build.*49h/i // Swiss GEN Mobile
+ ], [MODEL, [VENDOR, 'Swiss'], [TYPE, MOBILE]], [
+
+ /android.+[;\/]\s*(zur\d{3})\s+build/i // Swiss ZUR Tablet
+ ], [MODEL, [VENDOR, 'Swiss'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*((Zeki)?TB.*\b)\s+build/i // Zeki Tablets
+ ], [MODEL, [VENDOR, 'Zeki'], [TYPE, TABLET]], [
+
+ /(android).+[;\/]\s+([YR]\d{2}x?.*)\s+build/i,
+ /android.+[;\/]\s+(Dragon[\-\s]+Touch\s+|DT)(.+)\s+build/i // Dragon Touch Tablet
+ ], [[VENDOR, 'Dragon Touch'], MODEL, [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(NS-?.+)\s+build/i // Insignia Tablets
+ ], [MODEL, [VENDOR, 'Insignia'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*((NX|Next)-?.+)\s+build/i // NextBook Tablets
+ ], [MODEL, [VENDOR, 'NextBook'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(Xtreme\_?)?(V(1[045]|2[015]|30|40|60|7[05]|90))\s+build/i
+ ], [[VENDOR, 'Voice'], MODEL, [TYPE, MOBILE]], [ // Voice Xtreme Phones
+
+ /android.+[;\/]\s*(LVTEL\-?)?(V1[12])\s+build/i // LvTel Phones
+ ], [[VENDOR, 'LvTel'], MODEL, [TYPE, MOBILE]], [
+
+ /android.+[;\/]\s*(V(100MD|700NA|7011|917G).*\b)\s+build/i // Envizen Tablets
+ ], [MODEL, [VENDOR, 'Envizen'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(Le[\s\-]+Pan)[\s\-]+(.*\b)\s+build/i // Le Pan Tablets
+ ], [VENDOR, MODEL, [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(Trio[\s\-]*.*)\s+build/i // MachSpeed Tablets
+ ], [MODEL, [VENDOR, 'MachSpeed'], [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*(Trinity)[\-\s]*(T\d{3})\s+build/i // Trinity Tablets
+ ], [VENDOR, MODEL, [TYPE, TABLET]], [
+
+ /android.+[;\/]\s*TU_(1491)\s+build/i // Rotor Tablets
+ ], [MODEL, [VENDOR, 'Rotor'], [TYPE, TABLET]], [
+
+ /android.+(KS(.+))\s+build/i // Amazon Kindle Tablets
+ ], [MODEL, [VENDOR, 'Amazon'], [TYPE, TABLET]], [
+
+ /android.+(Gigaset)[\s\-]+(Q.+)\s+build/i // Gigaset Tablets
+ ], [VENDOR, MODEL, [TYPE, TABLET]], [
+
+ /\s(tablet|tab)[;\/]/i, // Unidentifiable Tablet
+ /\s(mobile)(?:[;\/]|\ssafari)/i // Unidentifiable Mobile
+ ], [[TYPE, util.lowerize], VENDOR, MODEL], [
+
+ /(android.+)[;\/].+build/i // Generic Android Device
+ ], [MODEL, [VENDOR, 'Generic']]
+
+
+ /*//////////////////////////
+ // TODO: move to string map
+ ////////////////////////////
+
+ /(C6603)/i // Sony Xperia Z C6603
+ ], [[MODEL, 'Xperia Z C6603'], [VENDOR, 'Sony'], [TYPE, MOBILE]], [
+ /(C6903)/i // Sony Xperia Z 1
+ ], [[MODEL, 'Xperia Z 1'], [VENDOR, 'Sony'], [TYPE, MOBILE]], [
+
+ /(SM-G900[F|H])/i // Samsung Galaxy S5
+ ], [[MODEL, 'Galaxy S5'], [VENDOR, 'Samsung'], [TYPE, MOBILE]], [
+ /(SM-G7102)/i // Samsung Galaxy Grand 2
+ ], [[MODEL, 'Galaxy Grand 2'], [VENDOR, 'Samsung'], [TYPE, MOBILE]], [
+ /(SM-G530H)/i // Samsung Galaxy Grand Prime
+ ], [[MODEL, 'Galaxy Grand Prime'], [VENDOR, 'Samsung'], [TYPE, MOBILE]], [
+ /(SM-G313HZ)/i // Samsung Galaxy V
+ ], [[MODEL, 'Galaxy V'], [VENDOR, 'Samsung'], [TYPE, MOBILE]], [
+ /(SM-T805)/i // Samsung Galaxy Tab S 10.5
+ ], [[MODEL, 'Galaxy Tab S 10.5'], [VENDOR, 'Samsung'], [TYPE, TABLET]], [
+ /(SM-G800F)/i // Samsung Galaxy S5 Mini
+ ], [[MODEL, 'Galaxy S5 Mini'], [VENDOR, 'Samsung'], [TYPE, MOBILE]], [
+ /(SM-T311)/i // Samsung Galaxy Tab 3 8.0
+ ], [[MODEL, 'Galaxy Tab 3 8.0'], [VENDOR, 'Samsung'], [TYPE, TABLET]], [
+
+ /(T3C)/i // Advan Vandroid T3C
+ ], [MODEL, [VENDOR, 'Advan'], [TYPE, TABLET]], [
+ /(ADVAN T1J\+)/i // Advan Vandroid T1J+
+ ], [[MODEL, 'Vandroid T1J+'], [VENDOR, 'Advan'], [TYPE, TABLET]], [
+ /(ADVAN S4A)/i // Advan Vandroid S4A
+ ], [[MODEL, 'Vandroid S4A'], [VENDOR, 'Advan'], [TYPE, MOBILE]], [
+
+ /(V972M)/i // ZTE V972M
+ ], [MODEL, [VENDOR, 'ZTE'], [TYPE, MOBILE]], [
+
+ /(i-mobile)\s(IQ\s[\d\.]+)/i // i-mobile IQ
+ ], [VENDOR, MODEL, [TYPE, MOBILE]], [
+ /(IQ6.3)/i // i-mobile IQ IQ 6.3
+ ], [[MODEL, 'IQ 6.3'], [VENDOR, 'i-mobile'], [TYPE, MOBILE]], [
+ /(i-mobile)\s(i-style\s[\d\.]+)/i // i-mobile i-STYLE
+ ], [VENDOR, MODEL, [TYPE, MOBILE]], [
+ /(i-STYLE2.1)/i // i-mobile i-STYLE 2.1
+ ], [[MODEL, 'i-STYLE 2.1'], [VENDOR, 'i-mobile'], [TYPE, MOBILE]], [
+
+ /(mobiistar touch LAI 512)/i // mobiistar touch LAI 512
+ ], [[MODEL, 'Touch LAI 512'], [VENDOR, 'mobiistar'], [TYPE, MOBILE]], [
+
+ /////////////
+ // END TODO
+ ///////////*/
+
+ ],
+
+ engine : [[
+
+ /windows.+\sedge\/([\w\.]+)/i // EdgeHTML
+ ], [VERSION, [NAME, 'EdgeHTML']], [
+
+ /(presto)\/([\w\.]+)/i, // Presto
+ /(webkit|trident|netfront|netsurf|amaya|lynx|w3m)\/([\w\.]+)/i, // WebKit/Trident/NetFront/NetSurf/Amaya/Lynx/w3m
+ /(khtml|tasman|links)[\/\s]\(?([\w\.]+)/i, // KHTML/Tasman/Links
+ /(icab)[\/\s]([23]\.[\d\.]+)/i // iCab
+ ], [NAME, VERSION], [
+
+ /rv\:([\w\.]+).*(gecko)/i // Gecko
+ ], [VERSION, NAME]
+ ],
+
+ os : [[
+
+ // Windows based
+ /microsoft\s(windows)\s(vista|xp)/i // Windows (iTunes)
+ ], [NAME, VERSION], [
+ /(windows)\snt\s6\.2;\s(arm)/i, // Windows RT
+ /(windows\sphone(?:\sos)*)[\s\/]?([\d\.\s]+\w)*/i, // Windows Phone
+ /(windows\smobile|windows)[\s\/]?([ntce\d\.\s]+\w)/i
+ ], [NAME, [VERSION, mapper.str, maps.os.windows.version]], [
+ /(win(?=3|9|n)|win\s9x\s)([nt\d\.]+)/i
+ ], [[NAME, 'Windows'], [VERSION, mapper.str, maps.os.windows.version]], [
+
+ // Mobile/Embedded OS
+ /\((bb)(10);/i // BlackBerry 10
+ ], [[NAME, 'BlackBerry'], VERSION], [
+ /(blackberry)\w*\/?([\w\.]+)*/i, // Blackberry
+ /(tizen)[\/\s]([\w\.]+)/i, // Tizen
+ /(android|webos|palm\sos|qnx|bada|rim\stablet\sos|meego|contiki)[\/\s-]?([\w\.]+)*/i,
+ // Android/WebOS/Palm/QNX/Bada/RIM/MeeGo/Contiki
+ /linux;.+(sailfish);/i // Sailfish OS
+ ], [NAME, VERSION], [
+ /(symbian\s?os|symbos|s60(?=;))[\/\s-]?([\w\.]+)*/i // Symbian
+ ], [[NAME, 'Symbian'], VERSION], [
+ /\((series40);/i // Series 40
+ ], [NAME], [
+ /mozilla.+\(mobile;.+gecko.+firefox/i // Firefox OS
+ ], [[NAME, 'Firefox OS'], VERSION], [
+
+ // Console
+ /(nintendo|playstation)\s([wids34portablevu]+)/i, // Nintendo/Playstation
+
+ // GNU/Linux based
+ /(mint)[\/\s\(]?(\w+)*/i, // Mint
+ /(mageia|vectorlinux)[;\s]/i, // Mageia/VectorLinux
+ /(joli|[kxln]?ubuntu|debian|[open]*suse|gentoo|(?=\s)arch|slackware|fedora|mandriva|centos|pclinuxos|redhat|zenwalk|linpus)[\/\s-]?(?!chrom)([\w\.-]+)*/i,
+ // Joli/Ubuntu/Debian/SUSE/Gentoo/Arch/Slackware
+ // Fedora/Mandriva/CentOS/PCLinuxOS/RedHat/Zenwalk/Linpus
+ /(hurd|linux)\s?([\w\.]+)*/i, // Hurd/Linux
+ /(gnu)\s?([\w\.]+)*/i // GNU
+ ], [NAME, VERSION], [
+
+ /(cros)\s[\w]+\s([\w\.]+\w)/i // Chromium OS
+ ], [[NAME, 'Chromium OS'], VERSION],[
+
+ // Solaris
+ /(sunos)\s?([\w\.]+\d)*/i // Solaris
+ ], [[NAME, 'Solaris'], VERSION], [
+
+ // BSD based
+ /\s([frentopc-]{0,4}bsd|dragonfly)\s?([\w\.]+)*/i // FreeBSD/NetBSD/OpenBSD/PC-BSD/DragonFly
+ ], [NAME, VERSION],[
+
+ /(haiku)\s(\w+)/i // Haiku
+ ], [NAME, VERSION],[
+
+ /cfnetwork\/.+darwin/i,
+ /ip[honead]+(?:.*os\s([\w]+)\slike\smac|;\sopera)/i // iOS
+ ], [[VERSION, /_/g, '.'], [NAME, 'iOS']], [
+
+ /(mac\sos\sx)\s?([\w\s\.]+\w)*/i,
+ /(macintosh|mac(?=_powerpc)\s)/i // Mac OS
+ ], [[NAME, 'Mac OS'], [VERSION, /_/g, '.']], [
+
+ // Other
+ /((?:open)?solaris)[\/\s-]?([\w\.]+)*/i, // Solaris
+ /(aix)\s((\d)(?=\.|\)|\s)[\w\.]*)*/i, // AIX
+ /(plan\s9|minix|beos|os\/2|amigaos|morphos|risc\sos|openvms)/i,
+ // Plan9/Minix/BeOS/OS2/AmigaOS/MorphOS/RISCOS/OpenVMS
+ /(unix)\s?([\w\.]+)*/i // UNIX
+ ], [NAME, VERSION]
+ ]
+ };
+
+
+ /////////////////
+ // Constructor
+ ////////////////
+ /*
+ var Browser = function (name, version) {
+ this[NAME] = name;
+ this[VERSION] = version;
+ };
+ var CPU = function (arch) {
+ this[ARCHITECTURE] = arch;
+ };
+ var Device = function (vendor, model, type) {
+ this[VENDOR] = vendor;
+ this[MODEL] = model;
+ this[TYPE] = type;
+ };
+ var Engine = Browser;
+ var OS = Browser;
+ */
+ var UAParser = function (uastring, extensions) {
+
+ if (typeof uastring === 'object') {
+ extensions = uastring;
+ uastring = undefined;
+ }
+
+ if (!(this instanceof UAParser)) {
+ return new UAParser(uastring, extensions).getResult();
+ }
+
+ var ua = uastring || ((window && window.navigator && window.navigator.userAgent) ? window.navigator.userAgent : EMPTY);
+ var rgxmap = extensions ? util.extend(regexes, extensions) : regexes;
+ //var browser = new Browser();
+ //var cpu = new CPU();
+ //var device = new Device();
+ //var engine = new Engine();
+ //var os = new OS();
+
+ this.getBrowser = function () {
+ var browser = { name: undefined, version: undefined };
+ mapper.rgx.call(browser, ua, rgxmap.browser);
+ browser.major = util.major(browser.version); // deprecated
+ return browser;
+ };
+ this.getCPU = function () {
+ var cpu = { architecture: undefined };
+ mapper.rgx.call(cpu, ua, rgxmap.cpu);
+ return cpu;
+ };
+ this.getDevice = function () {
+ var device = { vendor: undefined, model: undefined, type: undefined };
+ mapper.rgx.call(device, ua, rgxmap.device);
+ return device;
+ };
+ this.getEngine = function () {
+ var engine = { name: undefined, version: undefined };
+ mapper.rgx.call(engine, ua, rgxmap.engine);
+ return engine;
+ };
+ this.getOS = function () {
+ var os = { name: undefined, version: undefined };
+ mapper.rgx.call(os, ua, rgxmap.os);
+ return os;
+ };
+ this.getResult = function () {
+ return {
+ ua : this.getUA(),
+ browser : this.getBrowser(),
+ engine : this.getEngine(),
+ os : this.getOS(),
+ device : this.getDevice(),
+ cpu : this.getCPU()
+ };
+ };
+ this.getUA = function () {
+ return ua;
+ };
+ this.setUA = function (uastring) {
+ ua = uastring;
+ //browser = new Browser();
+ //cpu = new CPU();
+ //device = new Device();
+ //engine = new Engine();
+ //os = new OS();
+ return this;
+ };
+ return this;
+ };
+
+ UAParser.VERSION = LIBVERSION;
+ UAParser.BROWSER = {
+ NAME : NAME,
+ MAJOR : MAJOR, // deprecated
+ VERSION : VERSION
+ };
+ UAParser.CPU = {
+ ARCHITECTURE : ARCHITECTURE
+ };
+ UAParser.DEVICE = {
+ MODEL : MODEL,
+ VENDOR : VENDOR,
+ TYPE : TYPE,
+ CONSOLE : CONSOLE,
+ MOBILE : MOBILE,
+ SMARTTV : SMARTTV,
+ TABLET : TABLET,
+ WEARABLE: WEARABLE,
+ EMBEDDED: EMBEDDED
+ };
+ UAParser.ENGINE = {
+ NAME : NAME,
+ VERSION : VERSION
+ };
+ UAParser.OS = {
+ NAME : NAME,
+ VERSION : VERSION
+ };
+ //UAParser.Utils = util;
+
+ ///////////
+ // Export
+ //////////
+
+
+ // check js environment
+ if (typeof(exports) !== UNDEF_TYPE) {
+ // nodejs env
+ if (typeof module !== UNDEF_TYPE && module.exports) {
+ exports = module.exports = UAParser;
+ }
+ // TODO: test!!!!!!!!
+ /*
+ if (require && require.main === module && process) {
+ // cli
+ var jsonize = function (arr) {
+ var res = [];
+ for (var i in arr) {
+ res.push(new UAParser(arr[i]).getResult());
+ }
+ process.stdout.write(JSON.stringify(res, null, 2) + '\n');
+ };
+ if (process.stdin.isTTY) {
+ // via args
+ jsonize(process.argv.slice(2));
+ } else {
+ // via pipe
+ var str = '';
+ process.stdin.on('readable', function() {
+ var read = process.stdin.read();
+ if (read !== null) {
+ str += read;
+ }
+ });
+ process.stdin.on('end', function () {
+ jsonize(str.replace(/\n$/, '').split('\n'));
+ });
+ }
+ }
+ */
+ exports.UAParser = UAParser;
+ } else {
+ // requirejs env (optional)
+ if (typeof(define) === FUNC_TYPE && define.amd) {
+ define(function () {
+ return UAParser;
+ });
+ } else if (window) {
+ // browser env
+ window.UAParser = UAParser;
+ }
+ }
+
+ // jQuery/Zepto specific (optional)
+ // Note:
+ // In AMD env the global scope should be kept clean, but jQuery is an exception.
+ // jQuery always exports to global scope, unless jQuery.noConflict(true) is used,
+ // and we should catch that.
+ var $ = window && (window.jQuery || window.Zepto);
+ if (typeof $ !== UNDEF_TYPE) {
+ var parser = new UAParser();
+ $.ua = parser.getResult();
+ $.ua.get = function () {
+ return parser.getUA();
+ };
+ $.ua.set = function (uastring) {
+ parser.setUA(uastring);
+ var result = parser.getResult();
+ for (var prop in result) {
+ $.ua[prop] = result[prop];
+ }
+ };
+ }
+
+})(typeof window === 'object' ? window : this);
+
+},{}],22:[function(require,module,exports){
+(function (global){
+
+var rng;
+
+var crypto = global.crypto || global.msCrypto; // for IE 11
+if (crypto && crypto.getRandomValues) {
+ // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto
+ // Moderately fast, high quality
+ var _rnds8 = new Uint8Array(16);
+ rng = function whatwgRNG() {
+ crypto.getRandomValues(_rnds8);
+ return _rnds8;
+ };
+}
+
+if (!rng) {
+ // Math.random()-based (RNG)
+ //
+ // If all else fails, use Math.random(). It's fast, but is of unspecified
+ // quality.
+ var _rnds = new Array(16);
+ rng = function() {
+ for (var i = 0, r; i < 16; i++) {
+ if ((i & 0x03) === 0) r = Math.random() * 0x100000000;
+ _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;
+ }
+
+ return _rnds;
+ };
+}
+
+module.exports = rng;
+
+
+}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
+},{}],23:[function(require,module,exports){
+// uuid.js
+//
+// Copyright (c) 2010-2012 Robert Kieffer
+// MIT License - http://opensource.org/licenses/mit-license.php
+
+// Unique ID creation requires a high quality random # generator. We feature
+// detect to determine the best RNG source, normalizing to a function that
+// returns 128-bits of randomness, since that's what's usually required
+var _rng = require('./rng');
+
+// Maps for number <-> hex string conversion
+var _byteToHex = [];
+var _hexToByte = {};
+for (var i = 0; i < 256; i++) {
+ _byteToHex[i] = (i + 0x100).toString(16).substr(1);
+ _hexToByte[_byteToHex[i]] = i;
+}
+
+// **`parse()` - Parse a UUID into it's component bytes**
+function parse(s, buf, offset) {
+ var i = (buf && offset) || 0, ii = 0;
+
+ buf = buf || [];
+ s.toLowerCase().replace(/[0-9a-f]{2}/g, function(oct) {
+ if (ii < 16) { // Don't overflow!
+ buf[i + ii++] = _hexToByte[oct];
+ }
+ });
+
+ // Zero out remaining bytes if string was short
+ while (ii < 16) {
+ buf[i + ii++] = 0;
+ }
+
+ return buf;
+}
+
+// **`unparse()` - Convert UUID byte array (ala parse()) into a string**
+function unparse(buf, offset) {
+ var i = offset || 0, bth = _byteToHex;
+ return bth[buf[i++]] + bth[buf[i++]] +
+ bth[buf[i++]] + bth[buf[i++]] + '-' +
+ bth[buf[i++]] + bth[buf[i++]] + '-' +
+ bth[buf[i++]] + bth[buf[i++]] + '-' +
+ bth[buf[i++]] + bth[buf[i++]] + '-' +
+ bth[buf[i++]] + bth[buf[i++]] +
+ bth[buf[i++]] + bth[buf[i++]] +
+ bth[buf[i++]] + bth[buf[i++]];
+}
+
+// **`v1()` - Generate time-based UUID**
+//
+// Inspired by https://github.com/LiosK/UUID.js
+// and http://docs.python.org/library/uuid.html
+
+// random #'s we need to init node and clockseq
+var _seedBytes = _rng();
+
+// Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
+var _nodeId = [
+ _seedBytes[0] | 0x01,
+ _seedBytes[1], _seedBytes[2], _seedBytes[3], _seedBytes[4], _seedBytes[5]
+];
+
+// Per 4.2.2, randomize (14 bit) clockseq
+var _clockseq = (_seedBytes[6] << 8 | _seedBytes[7]) & 0x3fff;
+
+// Previous uuid creation time
+var _lastMSecs = 0, _lastNSecs = 0;
+
+// See https://github.com/broofa/node-uuid for API details
+function v1(options, buf, offset) {
+ var i = buf && offset || 0;
+ var b = buf || [];
+
+ options = options || {};
+
+ var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq;
+
+ // UUID timestamps are 100 nano-second units since the Gregorian epoch,
+ // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
+ // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
+ // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
+ var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime();
+
+ // Per 4.2.1.2, use count of uuid's generated during the current clock
+ // cycle to simulate higher resolution clock
+ var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1;
+
+ // Time since last uuid creation (in msecs)
+ var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000;
+
+ // Per 4.2.1.2, Bump clockseq on clock regression
+ if (dt < 0 && options.clockseq === undefined) {
+ clockseq = clockseq + 1 & 0x3fff;
+ }
+
+ // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
+ // time interval
+ if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
+ nsecs = 0;
+ }
+
+ // Per 4.2.1.2 Throw error if too many uuids are requested
+ if (nsecs >= 10000) {
+ throw new Error('uuid.v1(): Can\'t create more than 10M uuids/sec');
+ }
+
+ _lastMSecs = msecs;
+ _lastNSecs = nsecs;
+ _clockseq = clockseq;
+
+ // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
+ msecs += 12219292800000;
+
+ // `time_low`
+ var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
+ b[i++] = tl >>> 24 & 0xff;
+ b[i++] = tl >>> 16 & 0xff;
+ b[i++] = tl >>> 8 & 0xff;
+ b[i++] = tl & 0xff;
+
+ // `time_mid`
+ var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff;
+ b[i++] = tmh >>> 8 & 0xff;
+ b[i++] = tmh & 0xff;
+
+ // `time_high_and_version`
+ b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
+ b[i++] = tmh >>> 16 & 0xff;
+
+ // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
+ b[i++] = clockseq >>> 8 | 0x80;
+
+ // `clock_seq_low`
+ b[i++] = clockseq & 0xff;
+
+ // `node`
+ var node = options.node || _nodeId;
+ for (var n = 0; n < 6; n++) {
+ b[i + n] = node[n];
+ }
+
+ return buf ? buf : unparse(b);
+}
+
+// **`v4()` - Generate random UUID**
+
+// See https://github.com/broofa/node-uuid for API details
+function v4(options, buf, offset) {
+ // Deprecated - 'format' argument, as supported in v1.2
+ var i = buf && offset || 0;
+
+ if (typeof(options) == 'string') {
+ buf = options == 'binary' ? new Array(16) : null;
+ options = null;
+ }
+ options = options || {};
+
+ var rnds = options.random || (options.rng || _rng)();
+
+ // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
+ rnds[6] = (rnds[6] & 0x0f) | 0x40;
+ rnds[8] = (rnds[8] & 0x3f) | 0x80;
+
+ // Copy bytes to buffer, if provided
+ if (buf) {
+ for (var ii = 0; ii < 16; ii++) {
+ buf[i + ii] = rnds[ii];
+ }
+ }
+
+ return buf || unparse(rnds);
+}
+
+// Export public API
+var uuid = v4;
+uuid.v1 = v1;
+uuid.v4 = v4;
+uuid.parse = parse;
+uuid.unparse = unparse;
+
+module.exports = uuid;
+
+},{"./rng":22}],24:[function(require,module,exports){
+/*
+WildEmitter.js is a slim little event emitter by @henrikjoreteg largely based
+on @visionmedia's Emitter from UI Kit.
+
+Why? I wanted it standalone.
+
+I also wanted support for wildcard emitters like this:
+
+emitter.on('*', function (eventName, other, event, payloads) {
+
+});
+
+emitter.on('somenamespace*', function (eventName, payloads) {
+
+});
+
+Please note that callbacks triggered by wildcard registered events also get
+the event name as the first argument.
+*/
+
+module.exports = WildEmitter;
+
+function WildEmitter() { }
+
+WildEmitter.mixin = function (constructor) {
+ var prototype = constructor.prototype || constructor;
+
+ prototype.isWildEmitter= true;
+
+ // Listen on the given `event` with `fn`. Store a group name if present.
+ prototype.on = function (event, groupName, fn) {
+ this.callbacks = this.callbacks || {};
+ var hasGroup = (arguments.length === 3),
+ group = hasGroup ? arguments[1] : undefined,
+ func = hasGroup ? arguments[2] : arguments[1];
+ func._groupName = group;
+ (this.callbacks[event] = this.callbacks[event] || []).push(func);
+ return this;
+ };
+
+ // Adds an `event` listener that will be invoked a single
+ // time then automatically removed.
+ prototype.once = function (event, groupName, fn) {
+ var self = this,
+ hasGroup = (arguments.length === 3),
+ group = hasGroup ? arguments[1] : undefined,
+ func = hasGroup ? arguments[2] : arguments[1];
+ function on() {
+ self.off(event, on);
+ func.apply(this, arguments);
+ }
+ this.on(event, group, on);
+ return this;
+ };
+
+ // Unbinds an entire group
+ prototype.releaseGroup = function (groupName) {
+ this.callbacks = this.callbacks || {};
+ var item, i, len, handlers;
+ for (item in this.callbacks) {
+ handlers = this.callbacks[item];
+ for (i = 0, len = handlers.length; i < len; i++) {
+ if (handlers[i]._groupName === groupName) {
+ //console.log('removing');
+ // remove it and shorten the array we're looping through
+ handlers.splice(i, 1);
+ i--;
+ len--;
+ }
+ }
+ }
+ return this;
+ };
+
+ // Remove the given callback for `event` or all
+ // registered callbacks.
+ prototype.off = function (event, fn) {
+ this.callbacks = this.callbacks || {};
+ var callbacks = this.callbacks[event],
+ i;
+
+ if (!callbacks) return this;
+
+ // remove all handlers
+ if (arguments.length === 1) {
+ delete this.callbacks[event];
+ return this;
+ }
+
+ // remove specific handler
+ i = callbacks.indexOf(fn);
+ callbacks.splice(i, 1);
+ if (callbacks.length === 0) {
+ delete this.callbacks[event];
+ }
+ return this;
+ };
+
+ /// Emit `event` with the given args.
+ // also calls any `*` handlers
+ prototype.emit = function (event) {
+ this.callbacks = this.callbacks || {};
+ var args = [].slice.call(arguments, 1),
+ callbacks = this.callbacks[event],
+ specialCallbacks = this.getWildcardCallbacks(event),
+ i,
+ len,
+ item,
+ listeners;
+
+ if (callbacks) {
+ listeners = callbacks.slice();
+ for (i = 0, len = listeners.length; i < len; ++i) {
+ if (!listeners[i]) {
+ break;
+ }
+ listeners[i].apply(this, args);
+ }
+ }
+
+ if (specialCallbacks) {
+ len = specialCallbacks.length;
+ listeners = specialCallbacks.slice();
+ for (i = 0, len = listeners.length; i < len; ++i) {
+ if (!listeners[i]) {
+ break;
+ }
+ listeners[i].apply(this, [event].concat(args));
+ }
+ }
+
+ return this;
+ };
+
+ // Helper for for finding special wildcard event handlers that match the event
+ prototype.getWildcardCallbacks = function (eventName) {
+ this.callbacks = this.callbacks || {};
+ var item,
+ split,
+ result = [];
+
+ for (item in this.callbacks) {
+ split = item.split('*');
+ if (item === '*' || (split.length === 2 && eventName.slice(0, split[0].length) === split[0])) {
+ result = result.concat(this.callbacks[item]);
+ }
+ }
+ return result;
+ };
+
+};
+
+WildEmitter.mixin(WildEmitter);
+
+},{}]},{},[2])(2)
+});
\ No newline at end of file
diff --git a/bigbluebutton-client/resources/prod/lib/kurento-utils.min.js b/bigbluebutton-client/resources/prod/lib/kurento-utils.min.js
deleted file mode 100644
index 4e88a14cb524..000000000000
--- a/bigbluebutton-client/resources/prod/lib/kurento-utils.min.js
+++ /dev/null
@@ -1,56 +0,0 @@
-(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.kurentoUtils = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o0?e.slice(0,n):e}function getSimulcastInfo(e){var n=e.getVideoTracks();if(!n.length)return logger.warn("No video tracks available in the video stream"),"";var t=["a=x-google-flag:conference","a=ssrc-group:SIM 1 2 3","a=ssrc:1 cname:localVideo","a=ssrc:1 msid:"+e.id+" "+n[0].id,"a=ssrc:1 mslabel:"+e.id,"a=ssrc:1 label:"+n[0].id,"a=ssrc:2 cname:localVideo","a=ssrc:2 msid:"+e.id+" "+n[0].id,"a=ssrc:2 mslabel:"+e.id,"a=ssrc:2 label:"+n[0].id,"a=ssrc:3 cname:localVideo","a=ssrc:3 msid:"+e.id+" "+n[0].id,"a=ssrc:3 mslabel:"+e.id,"a=ssrc:3 label:"+n[0].id];return t.push(""),t.join("\n")}function WebRtcPeer(e,n,t){function r(){if(l){var e=p.getRemoteStreams()[0],n=e?URL.createObjectURL(e):"";l.pause(),l.src=n,l.load(),logger.info("Remote URL:",n)}}function i(e){return w&&("Chrome"===browser.name||"Chromium"===browser.name?(logger.info("Adding multicast info"),e=new RTCSessionDescription({type:e.type,sdp:removeFIDFromOffer(e.sdp)+getSimulcastInfo(u)})):logger.warn("Simulcast is only available in Chrome browser.")),e}function o(){"closed"===p.signalingState&&t('The peer connection object is in "closed" state. This is most likely due to an invocation of the dispose method before accepting in the dialogue'),u&&d&&c.showLocalVideo(),u&&p.addStream(u),f&&p.addStream(f);var n=parser.getBrowser();"sendonly"!==e||"Chrome"!==n.name&&"Chromium"!==n.name||39!==n.major||(e="sendrecv"),t()}function a(e){void 0===e&&(e=MEDIA_CONSTRAINTS),navigator.mediaDevices.getUserMedia(e).then(function(e){u=e,o()}).catch(t)}if(!(this instanceof WebRtcPeer))return new WebRtcPeer(e,n,t);WebRtcPeer.super_.call(this),n instanceof Function&&(t=n,n=void 0),n=n||{},t=(t||noop).bind(this);var s,c=this,d=n.localVideo,l=n.remoteVideo,u=n.videoStream,f=n.audioStream,g=n.mediaConstraints,p=(n.connectionConstraints,n.peerConnection),h=n.sendSource||"webcam",m=n.dataChannelConfig,v=n.dataChannels||!1,b=uuid.v4(),P=recursive({iceServers:freeice()},n.configuration),S=n.onicecandidate;S&&this.on("icecandidate",S);var R=n.oncandidategatheringdone;R&&this.on("candidategatheringdone",R);var w=n.simulcast,C=n.multistream,y=new sdpTranslator.Interop,D=[],W=!1;if(Object.defineProperties(this,{peerConnection:{get:function(){return p}},id:{value:n.id||b,writable:!1},remoteVideo:{get:function(){return l}},localVideo:{get:function(){return d}},dataChannel:{get:function(){return s}},currentFrame:{get:function(){if(l){if(l.readyStateUnifiedPlan",dumpSDP(e))),n(null,e.sdp,c.processAnswer.bind(c))}).catch(n)},this.getLocalSessionDescriptor=function(){return p.localDescription},this.getRemoteSessionDescriptor=function(){return p.remoteDescription},this.showLocalVideo=function(){d.src=URL.createObjectURL(u),d.muted=!0},this.send=function(e){s&&"open"===s.readyState?s.send(e):logger.warn("Trying to send data over a non-existing or closed data channel")},this.processAnswer=function(e,n){n=(n||noop).bind(this);var t=new RTCSessionDescription({type:"answer",sdp:e});if(C&&usePlanB){var i=y.toPlanB(t);logger.info("asnwer::planB",dumpSDP(i)),t=i}if(logger.info("SDP answer received, setting remote description"),"closed"===p.signalingState)return n("PeerConnection is closed");p.setRemoteDescription(t,function(){r(),n()},n)},this.processOffer=function(e,n){n=n.bind(this);var t=new RTCSessionDescription({type:"offer",sdp:e});if(C&&usePlanB){var o=y.toPlanB(t);logger.info("offer::planB",dumpSDP(o)),t=o}if(logger.info("SDP offer received, setting remote description"),"closed"===p.signalingState)return n("PeerConnection is closed");p.setRemoteDescription(t).then(function(){return r()}).then(function(){return p.createAnswer()}).then(function(e){return e=i(e),logger.info("Created SDP answer"),p.setLocalDescription(e)}).then(function(){var e=p.localDescription;C&&usePlanB&&(e=y.toUnifiedPlan(e),logger.info("answer::origPlanB->UnifiedPlan",dumpSDP(e))),logger.info("Local description set",e.sdp),n(null,e.sdp)}).catch(n)},"recvonly"===e||u||f?setTimeout(o,0):"webcam"===h?a(g):getScreenConstraints(h,function(e,n){if(e)return t(e);constraints=[g],constraints.unshift(n),a(recursive.apply(void 0,constraints))},b),this.on("_dispose",function(){d&&(d.pause(),d.src="",d.load(),d.muted=!1),l&&(l.pause(),l.src="",l.load()),c.removeAllListeners(),void 0!==window.cancelChooseDesktopMedia&&window.cancelChooseDesktopMedia(b)})}function createEnableDescriptor(e){var n="get"+e+"Tracks";return{enumerable:!0,get:function(){if(this.peerConnection){var e=this.peerConnection.getLocalStreams();if(e.length){for(var t,r=0;t=e[r];r++)for(var i,o=t[n](),a=0;i=o[a];a++)if(!i.enabled)return!1;return!0}}},set:function(e){function t(n){n.enabled=e}this.peerConnection.getLocalStreams().forEach(function(e){e[n]().forEach(t)})}}}function WebRtcPeerRecvonly(e,n){if(!(this instanceof WebRtcPeerRecvonly))return new WebRtcPeerRecvonly(e,n);WebRtcPeerRecvonly.super_.call(this,"recvonly",e,n)}function WebRtcPeerSendonly(e,n){if(!(this instanceof WebRtcPeerSendonly))return new WebRtcPeerSendonly(e,n);WebRtcPeerSendonly.super_.call(this,"sendonly",e,n)}function WebRtcPeerSendrecv(e,n){if(!(this instanceof WebRtcPeerSendrecv))return new WebRtcPeerSendrecv(e,n);WebRtcPeerSendrecv.super_.call(this,"sendrecv",e,n)}function harkUtils(e,n){return hark(e,n)}var freeice=require("freeice"),inherits=require("inherits"),UAParser=require("ua-parser-js"),uuid=require("uuid"),hark=require("hark"),EventEmitter=require("events").EventEmitter,recursive=require("merge").recursive.bind(void 0,!0),sdpTranslator=require("sdp-translator"),logger=window.Logger||console;try{require("kurento-browser-extensions")}catch(e){"undefined"==typeof getScreenConstraints&&(logger.warn("screen sharing is not available"),getScreenConstraints=function(e,n){n(new Error("This library is not enabled for screen sharing"))})}var MEDIA_CONSTRAINTS={audio:!0,video:{width:640,framerate:15}},ua=window&&window.navigator?window.navigator.userAgent:"",parser=new UAParser(ua),browser=parser.getBrowser(),usePlanB=!1;"Chrome"!==browser.name&&"Chromium"!==browser.name||(logger.info(browser.name+": using SDP PlanB"),usePlanB=!0);var dumpSDP=function(e){return void 0===e||null===e?"":"type: "+e.type+"\r\n"+e.sdp};inherits(WebRtcPeer,EventEmitter),Object.defineProperties(WebRtcPeer.prototype,{enabled:{enumerable:!0,get:function(){return this.audioEnabled&&this.videoEnabled},set:function(e){this.audioEnabled=this.videoEnabled=e}},audioEnabled:createEnableDescriptor("Audio"),videoEnabled:createEnableDescriptor("Video")}),WebRtcPeer.prototype.getLocalStream=function(e){if(this.peerConnection)return this.peerConnection.getLocalStreams()[e||0]},WebRtcPeer.prototype.getRemoteStream=function(e){if(this.peerConnection)return this.peerConnection.getRemoteStreams()[e||0]},WebRtcPeer.prototype.dispose=function(){logger.info("Disposing WebRtcPeer");var e=this.peerConnection,n=this.dataChannel;try{if(n){if("closed"===n.signalingState)return;n.close()}if(e){if("closed"===e.signalingState)return;e.getLocalStreams().forEach(streamStop),e.close()}}catch(e){logger.warn("Exception disposing webrtc peer "+e)}this.emit("_dispose")},inherits(WebRtcPeerRecvonly,WebRtcPeer),inherits(WebRtcPeerSendonly,WebRtcPeer),inherits(WebRtcPeerSendrecv,WebRtcPeer),exports.bufferizeCandidates=bufferizeCandidates,exports.WebRtcPeerRecvonly=WebRtcPeerRecvonly,exports.WebRtcPeerSendonly=WebRtcPeerSendonly,exports.WebRtcPeerSendrecv=WebRtcPeerSendrecv,exports.hark=harkUtils;
-},{"events":4,"freeice":5,"hark":8,"inherits":9,"kurento-browser-extensions":10,"merge":11,"sdp-translator":18,"ua-parser-js":21,"uuid":23}],2:[function(require,module,exports){
-window.addEventListener&&(module.exports=require("./index"));
-},{"./index":3}],3:[function(require,module,exports){
-var WebRtcPeer=require("./WebRtcPeer");exports.WebRtcPeer=WebRtcPeer;
-},{"./WebRtcPeer":1}],4:[function(require,module,exports){
-function EventEmitter(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function isFunction(e){return"function"==typeof e}function isNumber(e){return"number"==typeof e}function isObject(e){return"object"==typeof e&&null!==e}function isUndefined(e){return void 0===e}module.exports=EventEmitter,EventEmitter.EventEmitter=EventEmitter,EventEmitter.prototype._events=void 0,EventEmitter.prototype._maxListeners=void 0,EventEmitter.defaultMaxListeners=10,EventEmitter.prototype.setMaxListeners=function(e){if(!isNumber(e)||e<0||isNaN(e))throw TypeError("n must be a positive number");return this._maxListeners=e,this},EventEmitter.prototype.emit=function(e){var t,i,n,s,r,o;if(this._events||(this._events={}),"error"===e&&(!this._events.error||isObject(this._events.error)&&!this._events.error.length)){if((t=arguments[1])instanceof Error)throw t;var h=new Error('Uncaught, unspecified "error" event. ('+t+")");throw h.context=t,h}if(i=this._events[e],isUndefined(i))return!1;if(isFunction(i))switch(arguments.length){case 1:i.call(this);break;case 2:i.call(this,arguments[1]);break;case 3:i.call(this,arguments[1],arguments[2]);break;default:s=Array.prototype.slice.call(arguments,1),i.apply(this,s)}else if(isObject(i))for(s=Array.prototype.slice.call(arguments,1),o=i.slice(),n=o.length,r=0;r0&&this._events[e].length>i&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},EventEmitter.prototype.on=EventEmitter.prototype.addListener,EventEmitter.prototype.once=function(e,t){function i(){this.removeListener(e,i),n||(n=!0,t.apply(this,arguments))}if(!isFunction(t))throw TypeError("listener must be a function");var n=!1;return i.listener=t,this.on(e,i),this},EventEmitter.prototype.removeListener=function(e,t){var i,n,s,r;if(!isFunction(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(i=this._events[e],s=i.length,n=-1,i===t||isFunction(i.listener)&&i.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(isObject(i)){for(r=s;r-- >0;)if(i[r]===t||i[r].listener&&i[r].listener===t){n=r;break}if(n<0)return this;1===i.length?(i.length=0,delete this._events[e]):i.splice(n,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},EventEmitter.prototype.removeAllListeners=function(e){var t,i;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(i=this._events[e],isFunction(i))this.removeListener(e,i);else if(i)for(;i.length;)this.removeListener(e,i[i.length-1]);return delete this._events[e],this},EventEmitter.prototype.listeners=function(e){return this._events&&this._events[e]?isFunction(this._events[e])?[this._events[e]]:this._events[e].slice():[]},EventEmitter.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(isFunction(t))return 1;if(t)return t.length}return 0},EventEmitter.listenerCount=function(e,t){return e.listenerCount(t)};
-},{}],5:[function(require,module,exports){
-"use strict";var normalice=require("normalice"),freeice=module.exports=function(n){function t(n,t){for(var r,u=[],o=[].concat(e[n]);o.length&&u.lengthi&&t[n]<0&&(i=t[n]);return i}var WildEmitter=require("wildemitter"),audioContextType=window.AudioContext||window.webkitAudioContext,audioContext=null;module.exports=function(e,t){var i=new WildEmitter;if(!audioContextType)return i;var t=t||{},n=t.smoothing||.1,o=t.interval||50,a=t.threshold,r=t.play,s=t.history||10,u=!0;audioContext||(audioContext=new audioContextType);var p,g,d;d=audioContext.createAnalyser(),d.fftSize=512,d.smoothingTimeConstant=n,g=new Float32Array(d.fftSize),e.jquery&&(e=e[0]),e instanceof HTMLAudioElement||e instanceof HTMLVideoElement?(p=audioContext.createMediaElementSource(e),void 0===r&&(r=!0),a=a||-50):(p=audioContext.createMediaStreamSource(e),a=a||-50),p.connect(d),r&&d.connect(audioContext.destination),i.speaking=!1,i.setThreshold=function(e){a=e},i.setInterval=function(e){o=e},i.stop=function(){u=!1,i.emit("volume_change",-100,a),i.speaking&&(i.speaking=!1,i.emit("stopped_speaking"))},i.speakingHistory=[];for(var l=0;la&&!i.speaking){for(var n=i.speakingHistory.length-3;n=2&&(i.speaking=!0,i.emit("speaking"))}else if(ea)),f()}},o)};return f(),i};
-},{"wildemitter":24}],9:[function(require,module,exports){
-"function"==typeof Object.create?module.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:module.exports=function(t,e){t.super_=e;var o=function(){};o.prototype=e.prototype,t.prototype=new o,t.prototype.constructor=t};
-},{}],10:[function(require,module,exports){
-
-},{}],11:[function(require,module,exports){
-!function(e){function o(e,r){if("object"!==n(e))return r;for(var t in r)"object"===n(e[t])&&"object"===n(r[t])?e[t]=o(e[t],r[t]):e[t]=r[t];return e}function r(e,r,c){var u=c[0],f=c.length;(e||"object"!==n(u))&&(u={});for(var i=0;i1&&(n=t[1],t=t[0].split(":"),l.username=t[0],l.credential=(e||{}).credential||t[1]||""),l.url=r+n,l.urls=[l.url],l):e):e};
-},{}],13:[function(require,module,exports){
-var grammar=module.exports={v:[{name:"version",reg:/^(\d*)$/}],o:[{name:"origin",reg:/^(\S*) (\d*) (\d*) (\S*) IP(\d) (\S*)/,names:["username","sessionId","sessionVersion","netType","ipVer","address"],format:"%s %s %d %s IP%d %s"}],s:[{name:"name"}],i:[{name:"description"}],u:[{name:"uri"}],e:[{name:"email"}],p:[{name:"phone"}],z:[{name:"timezones"}],r:[{name:"repeats"}],t:[{name:"timing",reg:/^(\d*) (\d*)/,names:["start","stop"],format:"%d %d"}],c:[{name:"connection",reg:/^IN IP(\d) (\S*)/,names:["version","ip"],format:"IN IP%d %s"}],b:[{push:"bandwidth",reg:/^(TIAS|AS|CT|RR|RS):(\d*)/,names:["type","limit"],format:"%s:%s"}],m:[{reg:/^(\w*) (\d*) ([\w\/]*)(?: (.*))?/,names:["type","port","protocol","payloads"],format:"%s %d %s %s"}],a:[{push:"rtp",reg:/^rtpmap:(\d*) ([\w\-]*)(?:\s*\/(\d*)(?:\s*\/(\S*))?)?/,names:["payload","codec","rate","encoding"],format:function(e){return e.encoding?"rtpmap:%d %s/%s/%s":e.rate?"rtpmap:%d %s/%s":"rtpmap:%d %s"}},{push:"fmtp",reg:/^fmtp:(\d*) ([\S| ]*)/,names:["payload","config"],format:"fmtp:%d %s"},{name:"control",reg:/^control:(.*)/,format:"control:%s"},{name:"rtcp",reg:/^rtcp:(\d*)(?: (\S*) IP(\d) (\S*))?/,names:["port","netType","ipVer","address"],format:function(e){return null!=e.address?"rtcp:%d %s IP%d %s":"rtcp:%d"}},{push:"rtcpFbTrrInt",reg:/^rtcp-fb:(\*|\d*) trr-int (\d*)/,names:["payload","value"],format:"rtcp-fb:%d trr-int %d"},{push:"rtcpFb",reg:/^rtcp-fb:(\*|\d*) ([\w-_]*)(?: ([\w-_]*))?/,names:["payload","type","subtype"],format:function(e){return null!=e.subtype?"rtcp-fb:%s %s %s":"rtcp-fb:%s %s"}},{push:"ext",reg:/^extmap:([\w_\/]*) (\S*)(?: (\S*))?/,names:["value","uri","config"],format:function(e){return null!=e.config?"extmap:%s %s %s":"extmap:%s %s"}},{push:"crypto",reg:/^crypto:(\d*) ([\w_]*) (\S*)(?: (\S*))?/,names:["id","suite","config","sessionConfig"],format:function(e){return null!=e.sessionConfig?"crypto:%d %s %s %s":"crypto:%d %s %s"}},{name:"setup",reg:/^setup:(\w*)/,format:"setup:%s"},{name:"mid",reg:/^mid:([^\s]*)/,format:"mid:%s"},{name:"msid",reg:/^msid:(.*)/,format:"msid:%s"},{name:"ptime",reg:/^ptime:(\d*)/,format:"ptime:%d"},{name:"maxptime",reg:/^maxptime:(\d*)/,format:"maxptime:%d"},{name:"direction",reg:/^(sendrecv|recvonly|sendonly|inactive)/},{name:"icelite",reg:/^(ice-lite)/},{name:"iceUfrag",reg:/^ice-ufrag:(\S*)/,format:"ice-ufrag:%s"},{name:"icePwd",reg:/^ice-pwd:(\S*)/,format:"ice-pwd:%s"},{name:"fingerprint",reg:/^fingerprint:(\S*) (\S*)/,names:["type","hash"],format:"fingerprint:%s %s"},{push:"candidates",reg:/^candidate:(\S*) (\d*) (\S*) (\d*) (\S*) (\d*) typ (\S*)(?: raddr (\S*) rport (\d*))?(?: tcptype (\S*))?(?: generation (\d*))?/,names:["foundation","component","transport","priority","ip","port","type","raddr","rport","tcptype","generation"],format:function(e){var r="candidate:%s %d %s %d %s %d typ %s";return r+=null!=e.raddr?" raddr %s rport %d":"%v%v",r+=null!=e.tcptype?" tcptype %s":"%v",null!=e.generation&&(r+=" generation %d"),r}},{name:"endOfCandidates",reg:/^(end-of-candidates)/},{name:"remoteCandidates",reg:/^remote-candidates:(.*)/,format:"remote-candidates:%s"},{name:"iceOptions",reg:/^ice-options:(\S*)/,format:"ice-options:%s"},{push:"ssrcs",reg:/^ssrc:(\d*) ([\w_]*):(.*)/,names:["id","attribute","value"],format:"ssrc:%d %s:%s"},{push:"ssrcGroups",reg:/^ssrc-group:(\w*) (.*)/,names:["semantics","ssrcs"],format:"ssrc-group:%s %s"},{name:"msidSemantic",reg:/^msid-semantic:\s?(\w*) (\S*)/,names:["semantic","token"],format:"msid-semantic: %s %s"},{push:"groups",reg:/^group:(\w*) (.*)/,names:["type","mids"],format:"group:%s %s"},{name:"rtcpMux",reg:/^(rtcp-mux)/},{name:"rtcpRsize",reg:/^(rtcp-rsize)/},{push:"invalid",names:["value"]}]};Object.keys(grammar).forEach(function(e){grammar[e].forEach(function(e){e.reg||(e.reg=/(.*)/),e.format||(e.format="%s")})});
-},{}],14:[function(require,module,exports){
-var parser=require("./parser"),writer=require("./writer");exports.write=writer,exports.parse=parser.parse,exports.parseFmtpConfig=parser.parseFmtpConfig,exports.parsePayloads=parser.parsePayloads,exports.parseRemoteCandidates=parser.parseRemoteCandidates;
-},{"./parser":15,"./writer":16}],15:[function(require,module,exports){
-var toIntIfInt=function(t){return String(Number(t))===t?Number(t):t},attachProperties=function(t,r,e,n){if(n&&!e)r[n]=toIntIfInt(t[1]);else for(var a=0;a=a)return n;var u=e[r];switch(r+=1,n){case"%%":return"%";case"%s":return String(u);case"%d":return Number(u);case"%v":return""}})},makeLine=function(n,r,e){var a=r.format instanceof Function?r.format(r.push?e:e[r.name]):r.format,u=[n+"="+a];if(r.names)for(var m=0;m3||!i.media.every(function(e){return-1!==["video","audio","data"].indexOf(e.mid)}))return console.warn("This description does not look like Plan B."),e;var t=[];i.media.forEach(function(e){t.push(e.mid)});var o=!1;if(void 0!==i.groups&&Array.isArray(i.groups)&&(o=i.groups.every(function(e){return"BUNDLE"!==e.type||arrayEquals.apply(e.mids.sort(),[t.sort()])})),!o){var n=!1;if(i.media.forEach(function(e){"inactive"!==e.direction&&(n=!0)}),n)throw new Error("Cannot convert to Unified Plan because m-lines that are not bundled were found.")}var s;if("answer"===e.type)s="offer";else{if("offer"!==e.type)throw new Error("Type '"+e.type+"' not supported.");s="answer"}var a;void 0!==this.cache[s]&&(a=transform.parse(this.cache[s]));var d,c,p,u,f={audio:{},video:{}},m={},y=0,l=0,v={},h={},w={},g={};if(i.media.forEach(function(i){if(("string"!=typeof i.rtcpMux||"rtcp-mux"!==i.rtcpMux)&&"inactive"!==i.direction)throw new Error("Cannot convert to Unified Plan because m-lines without the rtcp-mux attribute were found.");if("application"===i.type)return void(m[i.mid]=i);var t=i.sources,o=i.ssrcGroups,n=i.port;if(void 0!==i.candidates&&(d=void 0!==d?d.concat(i.candidates):i.candidates),void 0!==c&&void 0!==i.iceUfrag&&c!=i.iceUfrag)throw new Error("Only BUNDLE supported, iceUfrag must be the same for all m-lines.\n\tLast iceUfrag: "+c+"\n\tNew iceUfrag: "+i.iceUfrag);if(void 0!==i.iceUfrag&&(c=i.iceUfrag),void 0!==p&&void 0!==i.icePwd&&p!=i.icePwd)throw new Error("Only BUNDLE supported, icePwd must be the same for all m-lines.\n\tLast icePwd: "+p+"\n\tNew icePwd: "+i.icePwd);if(void 0!==i.icePwd&&(p=i.icePwd),void 0!==u&&void 0!==i.fingerprint&&(u.type!=i.fingerprint.type||u.hash!=i.fingerprint.hash))throw new Error("Only BUNDLE supported, fingerprint must be the same for all m-lines.\n\tLast fingerprint: "+JSON.stringify(u)+"\n\tNew fingerprint: "+JSON.stringify(i.fingerprint));void 0!==i.fingerprint&&(u=i.fingerprint),h[i.type]=i.payloads,w[i.type]=i.rtcpFb,g[i.type]=i.rtp;var s={};void 0!==o&&Array.isArray(o)&&o.forEach(function(e){void 0!==e.ssrcs&&Array.isArray(e.ssrcs)&&e.ssrcs.forEach(function(r){void 0===s[r]&&(s[r]=[]),s[r].push(e)})});var E={};if("object"==typeof t)delete i.sources,delete i.ssrcGroups,delete i.candidates,delete i.iceUfrag,delete i.icePwd,delete i.fingerprint,delete i.port,delete i.mid,Object.keys(t).forEach(function(o){var h;if("offer"===e.type&&!t[o].msid)return void(f[i.type][o]=t[o]);void 0!==s[o]&&Array.isArray(s[o])&&s[o].some(function(e){return e.ssrcs.some(function(e){if("object"==typeof E[e])return h=E[e],!0})}),"object"==typeof h?(h.sources[o]=t[o],delete t[o].msid):(h=Object.create(i),E[o]=h,void 0!==t[o].msid&&(h.msid=t[o].msid,delete t[o].msid),h.sources={},h.sources[o]=t[o],h.ssrcGroups=s[o],void 0!==a&&void 0!==a.media&&Array.isArray(a.media)&&a.media.forEach(function(e){"object"==typeof e.sources&&Object.keys(e.sources).forEach(function(r){r===o&&(h.mid=e.mid)})}),void 0===h.mid&&(h.mid=[i.type,"-",o].join("")),h.candidates=d,h.iceUfrag=c,h.icePwd=p,h.fingerprint=u,h.port=n,m[h.mid]=h,v[l]=h.sources,r.cache.mlU2BMap[l]=y,void 0===r.cache.mlB2UMap[y]&&(r.cache.mlB2UMap[y]=l),l++)});else{var U=i;U.candidates=d,U.iceUfrag=c,U.icePwd=p,U.fingerprint=u,U.port=n,m[U.mid]=U,r.cache.mlU2BMap[l]=y,void 0===r.cache.mlB2UMap[y]&&(r.cache.mlB2UMap[y]=l)}y++}),i.media=[],t=[],"answer"===e.type)for(var E=0;E0&&null===(t=r.getFirstSendingIndexFromAnswer(e)))for(var o=0;ot){var n=i.media[t];Object.keys(f[e]).forEach(function(r){n.sources&&n.sources[r]&&console.warn("Replacing an existing SSRC."),n.sources||(n.sources={}),n.sources[r]=f[e][r]})}}}),void 0!==i.groups&&i.groups.some(function(e){if("BUNDLE"===e.type)return e.mids=t.join(" "),!0}),i.msidSemantic={semantic:"WMS",token:"*"};var b=transform.write(i);return this.cache[e.type]=b,new RTCSessionDescription({type:e.type,sdp:b})};
-},{"./array-equals":17,"./transform":20}],20:[function(require,module,exports){
-var transform=require("sdp-transform");exports.write=function(s,r){return void 0!==s&&void 0!==s.media&&Array.isArray(s.media)&&s.media.forEach(function(s){void 0!==s.sources&&0!==Object.keys(s.sources).length&&(s.ssrcs=[],Object.keys(s.sources).forEach(function(r){var o=s.sources[r];Object.keys(o).forEach(function(i){s.ssrcs.push({id:r,attribute:i,value:o[i]})})}),delete s.sources),void 0!==s.ssrcGroups&&Array.isArray(s.ssrcGroups)&&s.ssrcGroups.forEach(function(s){void 0!==s.ssrcs&&Array.isArray(s.ssrcs)&&(s.ssrcs=s.ssrcs.join(" "))})}),void 0!==s&&void 0!==s.groups&&Array.isArray(s.groups)&&s.groups.forEach(function(s){void 0!==s.mids&&Array.isArray(s.mids)&&(s.mids=s.mids.join(" "))}),transform.write(s,r)},exports.parse=function(s){var r=transform.parse(s);return void 0!==r&&void 0!==r.media&&Array.isArray(r.media)&&r.media.forEach(function(s){void 0!==s.ssrcs&&Array.isArray(s.ssrcs)&&(s.sources={},s.ssrcs.forEach(function(r){s.sources[r.id]||(s.sources[r.id]={}),s.sources[r.id][r.attribute]=r.value}),delete s.ssrcs),void 0!==s.ssrcGroups&&Array.isArray(s.ssrcGroups)&&s.ssrcGroups.forEach(function(s){"string"==typeof s.ssrcs&&(s.ssrcs=s.ssrcs.split(" "))})}),void 0!==r&&void 0!==r.groups&&Array.isArray(r.groups)&&r.groups.forEach(function(s){"string"==typeof s.mids&&(s.mids=s.mids.split(" "))}),r};
-},{"sdp-transform":14}],21:[function(require,module,exports){
-!function(i,e){"use strict";var s="model",o="name",r="type",n="vendor",a="version",t="mobile",w="tablet",d={extend:function(i,e){var s={};for(var o in i)e[o]&&e[o].length%2==0?s[o]=e[o].concat(i[o]):s[o]=i[o];return s},has:function(i,e){return"string"==typeof i&&-1!==e.toLowerCase().indexOf(i.toLowerCase())},lowerize:function(i){return i.toLowerCase()},major:function(i){return"string"==typeof i?i.replace(/[^\d\.]/g,"").split(".")[0]:void 0},trim:function(i){return i.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")}},l={rgx:function(){for(var i,e,s,o,r,n,a,t=0,w=arguments;t0?2==r.length?"function"==typeof r[1]?i[r[0]]=r[1].call(this,a):i[r[0]]=r[1]:3==r.length?"function"!=typeof r[1]||r[1].exec&&r[1].test?i[r[0]]=a?a.replace(r[1],r[2]):void 0:i[r[0]]=a?r[1].call(this,a,r[2]):void 0:4==r.length&&(i[r[0]]=a?r[3].call(this,a.replace(r[1],r[2])):void 0):i[r]=a||void 0;t+=2}return i},str:function(i,e){for(var s in e)if("object"==typeof e[s]&&e[s].length>0){for(var o=0;o>>((3&n)<<3)&255;return _rnds}}module.exports=rng;
-}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
-
-},{}],23:[function(require,module,exports){
-function parse(e,s,r){var t=s&&r||0,n=0;for(s=s||[],e.toLowerCase().replace(/[0-9a-f]{2}/g,function(e){n<16&&(s[t+n++]=_hexToByte[e])});n<16;)s[t+n++]=0;return s}function unparse(e,s){var r=s||0,t=_byteToHex;return t[e[r++]]+t[e[r++]]+t[e[r++]]+t[e[r++]]+"-"+t[e[r++]]+t[e[r++]]+"-"+t[e[r++]]+t[e[r++]]+"-"+t[e[r++]]+t[e[r++]]+"-"+t[e[r++]]+t[e[r++]]+t[e[r++]]+t[e[r++]]+t[e[r++]]+t[e[r++]]}function v1(e,s,r){var t=s&&r||0,n=s||[];e=e||{};var o=void 0!==e.clockseq?e.clockseq:_clockseq,a=void 0!==e.msecs?e.msecs:(new Date).getTime(),u=void 0!==e.nsecs?e.nsecs:_lastNSecs+1,c=a-_lastMSecs+(u-_lastNSecs)/1e4;if(c<0&&void 0===e.clockseq&&(o=o+1&16383),(c<0||a>_lastMSecs)&&void 0===e.nsecs&&(u=0),u>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");_lastMSecs=a,_lastNSecs=u,_clockseq=o,a+=122192928e5;var i=(1e4*(268435455&a)+u)%4294967296;n[t++]=i>>>24&255,n[t++]=i>>>16&255,n[t++]=i>>>8&255,n[t++]=255&i;var _=a/4294967296*1e4&268435455;n[t++]=_>>>8&255,n[t++]=255&_,n[t++]=_>>>24&15|16,n[t++]=_>>>16&255,n[t++]=o>>>8|128,n[t++]=255&o;for(var d=e.node||_nodeId,v=0;v<6;v++)n[t+v]=d[v];return s||unparse(n)}function v4(e,s,r){var t=s&&r||0;"string"==typeof e&&(s="binary"==e?new Array(16):null,e=null),e=e||{};var n=e.random||(e.rng||_rng)();if(n[6]=15&n[6]|64,n[8]=63&n[8]|128,s)for(var o=0;o<16;o++)s[t+o]=n[o];return s||unparse(n)}for(var _rng=require("./rng"),_byteToHex=[],_hexToByte={},i=0;i<256;i++)_byteToHex[i]=(i+256).toString(16).substr(1),_hexToByte[_byteToHex[i]]=i;var _seedBytes=_rng(),_nodeId=[1|_seedBytes[0],_seedBytes[1],_seedBytes[2],_seedBytes[3],_seedBytes[4],_seedBytes[5]],_clockseq=16383&(_seedBytes[6]<<8|_seedBytes[7]),_lastMSecs=0,_lastNSecs=0,uuid=v4;uuid.v1=v1,uuid.v4=v4,uuid.parse=parse,uuid.unparse=unparse,module.exports=uuid;
-},{"./rng":22}],24:[function(require,module,exports){
-function WildEmitter(){}module.exports=WildEmitter,WildEmitter.mixin=function(t){var l=t.prototype||t;l.isWildEmitter=!0,l.on=function(t,l,i){this.callbacks=this.callbacks||{};var s=3===arguments.length,c=s?arguments[1]:void 0,a=s?arguments[2]:arguments[1];return a._groupName=c,(this.callbacks[t]=this.callbacks[t]||[]).push(a),this},l.once=function(t,l,i){function s(){c.off(t,s),h.apply(this,arguments)}var c=this,a=3===arguments.length,e=a?arguments[1]:void 0,h=a?arguments[2]:arguments[1];return this.on(t,e,s),this},l.releaseGroup=function(t){this.callbacks=this.callbacks||{};var l,i,s,c;for(l in this.callbacks)for(c=this.callbacks[l],i=0,s=c.length;ig.maxReconnectInterval?g.maxReconnectInterval:e)}},h.onmessage=function(b){(g.debug||a.debugAll)&&console.debug("ReconnectingWebSocket","onmessage",g.url,b.data);var c=l("message");c.data=b.data,k.dispatchEvent(c)},h.onerror=function(b){(g.debug||a.debugAll)&&console.debug("ReconnectingWebSocket","onerror",g.url,b),k.dispatchEvent(l("error"))}},1==this.automaticOpen&&this.open(!1),this.send=function(b){if(h)return(g.debug||a.debugAll)&&console.debug("ReconnectingWebSocket","send",g.url,b),h.send(b);throw"INVALID_STATE_ERR : Pausing to reconnect websocket"},this.close=function(a,b){"undefined"==typeof a&&(a=1e3),i=!0,h&&h.close(a,b)},this.refresh=function(){h&&h.close()}}return a.prototype.onopen=function(){},a.prototype.onclose=function(){},a.prototype.onconnecting=function(){},a.prototype.onmessage=function(){},a.prototype.onerror=function(){},a.debugAll=!1,a.CONNECTING=WebSocket.CONNECTING,a.OPEN=WebSocket.OPEN,a.CLOSING=WebSocket.CLOSING,a.CLOSED=WebSocket.CLOSED,a});
diff --git a/bigbluebutton-client/src/org/bigbluebutton/core/PopUpUtil.as b/bigbluebutton-client/src/org/bigbluebutton/core/PopUpUtil.as
index fe9b20119b23..5b5e2dfb4374 100644
--- a/bigbluebutton-client/src/org/bigbluebutton/core/PopUpUtil.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/core/PopUpUtil.as
@@ -103,7 +103,7 @@ package org.bigbluebutton.core {
private static function addPopUpToStage(parent:DisplayObject, className:Class, modal:Boolean = false, center:Boolean = true):IFlexDisplayObject {
var popUp:IFlexDisplayObject = PopUpManager.createPopUp(parent, className, modal);
if (center) {
- PopUpManager.centerPopUp(popUp)
+ PopUpManager.centerPopUp(popUp);
}
popUpDict[getQualifiedClassName(className)] = popUp;
diff --git a/bigbluebutton-client/src/org/bigbluebutton/core/connection/rtmp/MessageReceiver.as b/bigbluebutton-client/src/org/bigbluebutton/core/connection/rtmp/MessageReceiver.as
deleted file mode 100755
index 17f2dcb3bdb9..000000000000
--- a/bigbluebutton-client/src/org/bigbluebutton/core/connection/rtmp/MessageReceiver.as
+++ /dev/null
@@ -1,9 +0,0 @@
-package org.bigbluebutton.core.connection.rtmp
-{
- public class MessageReceiver
- {
- public function MessageReceiver()
- {
- }
- }
-}
\ No newline at end of file
diff --git a/bigbluebutton-client/src/org/bigbluebutton/core/events/SetWebcamsOnlyForModeratorEvent.as b/bigbluebutton-client/src/org/bigbluebutton/core/events/SetWebcamsOnlyForModeratorEvent.as
new file mode 100644
index 000000000000..c42eeed1cd5d
--- /dev/null
+++ b/bigbluebutton-client/src/org/bigbluebutton/core/events/SetWebcamsOnlyForModeratorEvent.as
@@ -0,0 +1,32 @@
+/**
+ * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
+ *
+ * Copyright (c) 2018 BigBlueButton Inc. and by respective authors (see below).
+ *
+ * This program is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free Software
+ * Foundation; either version 2.1 of the License, or (at your option) any later
+ * version.
+ *
+ * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License along
+ * with BigBlueButton; if not, see .
+ *
+ */
+package org.bigbluebutton.core.events {
+ import flash.events.Event;
+
+ public class SetWebcamsOnlyForModeratorEvent extends Event {
+
+ public static const UPDATE_WEBCAMS_ONLY_FOR_MODERATOR:String = "UPDATE_WEBCAMS_ONLY_FOR_MODERATOR";
+
+ public var webcamsOnlyForModerator:Boolean;
+
+ public function SetWebcamsOnlyForModeratorEvent(type:String) {
+ super(type, true, false);
+ }
+ }
+}
diff --git a/bigbluebutton-client/src/org/bigbluebutton/core/model/Meeting2x.as b/bigbluebutton-client/src/org/bigbluebutton/core/model/Meeting2x.as
index 0cb4724be72e..8fff84c0e1f5 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/core/model/Meeting2x.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/core/model/Meeting2x.as
@@ -14,7 +14,6 @@ package org.bigbluebutton.core.model
private var _welcomeMessage:String;
private var _modOnlyMessage:String;
private var _allowStartStopRecording:Boolean;
- private var _webcamsOnlyForModerator:Boolean;
private var _metadata:Object = null;
public function Meeting2x(build: MeetingBuilder2x)
@@ -31,7 +30,6 @@ package org.bigbluebutton.core.model
_welcomeMessage = build.welcomeMessage;
_modOnlyMessage = build.modOnlyMessage;
_allowStartStopRecording = build.allowStartStopRecording;
- _webcamsOnlyForModerator = build.webcamsOnlyForModerator;
_metadata = build.metadata;
}
@@ -71,10 +69,6 @@ package org.bigbluebutton.core.model
return _allowStartStopRecording;
}
- public function get webcamsOnlyForModerator() : Boolean {
- return _webcamsOnlyForModerator;
- }
-
public function get metadata():Object {
return _metadata;
}
diff --git a/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder.as b/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder.as
index 77badd9bfab6..eb2b40aac512 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder.as
@@ -14,7 +14,6 @@ package org.bigbluebutton.core.model
internal var welcomeMessage:String;
internal var modOnlyMessage:String;
internal var allowStartStopRecording: Boolean;
- internal var webcamsOnlyForModerator: Boolean;
internal var metadata: Object;
internal var muteOnStart:Boolean;
@@ -58,11 +57,6 @@ package org.bigbluebutton.core.model
return this;
}
- public function withWebcamsOnlyForModerator(value: Boolean):MeetingBuilder {
- webcamsOnlyForModerator = value;
- return this;
- }
-
public function withDefaultLayout(value: String):MeetingBuilder {
defaultLayout = value;
return this;
diff --git a/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder2x.as b/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder2x.as
index e2a1b44b97af..45019366201c 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder2x.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/core/model/MeetingBuilder2x.as
@@ -14,7 +14,6 @@ package org.bigbluebutton.core.model
internal var welcomeMessage:String;
internal var modOnlyMessage:String;
internal var allowStartStopRecording: Boolean;
- internal var webcamsOnlyForModerator: Boolean;
internal var metadata: Object;
public function MeetingBuilder2x(id: String, name: String)
@@ -58,11 +57,6 @@ package org.bigbluebutton.core.model
return this;
}
- public function withWebcamsOnlyForModerator(value: Boolean):MeetingBuilder2x {
- webcamsOnlyForModerator = value;
- return this;
- }
-
public function withDefaultLayout(value: String):MeetingBuilder2x {
defaultLayout = value;
return this;
diff --git a/bigbluebutton-client/src/org/bigbluebutton/core/model/int/MeetingInt.as b/bigbluebutton-client/src/org/bigbluebutton/core/model/int/MeetingInt.as
index e75d90a72e6b..250461aa6dd2 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/core/model/int/MeetingInt.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/core/model/int/MeetingInt.as
@@ -1,6 +1,6 @@
package org.bigbluebutton.core.model.int
{
- class MeetingInt
+ internal class MeetingInt
{
var name:String;
var internalId:String;
@@ -14,7 +14,6 @@ package org.bigbluebutton.core.model.int
var welcomeMessage:String;
var modOnlyMessage:String;
var allowStartStopRecording:Boolean;
- var webcamsOnlyForModerator:Boolean;
var metadata:Object = null;
function MeetingInt()
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/events/BBBEvent.as b/bigbluebutton-client/src/org/bigbluebutton/main/events/BBBEvent.as
index 29f73b6639b0..13d252a0b76d 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/events/BBBEvent.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/events/BBBEvent.as
@@ -48,6 +48,7 @@ package org.bigbluebutton.main.events {
public static const CAM_SETTINGS_CLOSED:String = "CAM_SETTINGS_CLOSED";
public static const JOIN_VOICE_FOCUS_HEAD:String = "JOIN_VOICE_FOCUS_HEAD";
public static const CHANGE_RECORDING_STATUS:String = "CHANGE_RECORDING_STATUS";
+ public static const CHANGE_WEBCAMS_ONLY_FOR_MODERATOR:String = "CHANGE_WEBCAMS_ONLY_FOR_MODERATOR";
public static const ACCEPT_ALL_WAITING_GUESTS:String = "BBB_ACCEPT_ALL_WAITING_GUESTS";
public static const DENY_ALL_WAITING_GUESTS:String = "BBB_DENY_ALL_WAITING_GUESTS";
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/model/options/LayoutOptions.as b/bigbluebutton-client/src/org/bigbluebutton/main/model/options/LayoutOptions.as
index 858976ec3dda..4393f8fa313e 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/model/options/LayoutOptions.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/model/options/LayoutOptions.as
@@ -54,6 +54,9 @@ package org.bigbluebutton.main.model.options {
[Bindable]
public var showNetworkMonitor:Boolean = false;
+ [Bindable]
+ public var askForFeedbackOnLogout:Boolean = false;
+
public var defaultLayout:String = "Default";
public function LayoutOptions() {
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/EnterApiResponse.as b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/EnterApiResponse.as
index 11dd4cb0d02b..1c2c386c6664 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/EnterApiResponse.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/EnterApiResponse.as
@@ -28,7 +28,6 @@ package org.bigbluebutton.main.model.users
public var record: Boolean;
public var allowStartStopRecording: Boolean;
- public var webcamsOnlyForModerator: Boolean;
public var metadata: Object = new Object();
public var modOnlyMessage: String;
public var muteOnStart:Boolean = false;
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/JoinService.as b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/JoinService.as
index a6ee28cf1b55..5c952e1975ed 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/JoinService.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/JoinService.as
@@ -1,198 +1,197 @@
-/**
- * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
- *
- * Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
- *
- * This program is free software; you can redistribute it and/or modify it under the
- * terms of the GNU Lesser General Public License as published by the Free Software
- * Foundation; either version 3.0 of the License, or (at your option) any later
- * version.
- *
- * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License along
- * with BigBlueButton; if not, see .
- *
- */
-package org.bigbluebutton.main.model.users
-{
- import com.asfusion.mate.events.Dispatcher;
-
- import flash.events.Event;
- import flash.events.HTTPStatusEvent;
- import flash.events.IOErrorEvent;
- import flash.net.URLLoader;
- import flash.net.URLRequest;
- import flash.net.URLRequestMethod;
- import flash.net.URLVariables;
-
- import org.as3commons.logging.api.ILogger;
- import org.as3commons.logging.api.getClassLogger;
- import org.bigbluebutton.core.UsersUtil;
- import org.bigbluebutton.main.events.MeetingNotFoundEvent;
- import org.bigbluebutton.main.model.users.events.ConnectionFailedEvent;
+/**
+ * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
+ *
+ * Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
+ *
+ * This program is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free Software
+ * Foundation; either version 3.0 of the License, or (at your option) any later
+ * version.
+ *
+ * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License along
+ * with BigBlueButton; if not, see .
+ *
+ */
+package org.bigbluebutton.main.model.users
+{
+ import com.asfusion.mate.events.Dispatcher;
+
+ import flash.events.Event;
+ import flash.events.HTTPStatusEvent;
+ import flash.events.IOErrorEvent;
+ import flash.net.URLLoader;
+ import flash.net.URLRequest;
+ import flash.net.URLRequestMethod;
+ import flash.net.URLVariables;
+
+ import org.as3commons.logging.api.ILogger;
+ import org.as3commons.logging.api.getClassLogger;
+ import org.bigbluebutton.core.UsersUtil;
+ import org.bigbluebutton.main.events.MeetingNotFoundEvent;
+ import org.bigbluebutton.main.model.users.events.ConnectionFailedEvent;
import org.bigbluebutton.util.QueryStringParameters;
-
- public class JoinService
- {
- private static const LOGGER:ILogger = getClassLogger(JoinService);
-
- private var request:URLRequest = new URLRequest();
- private var reqVars:URLVariables = new URLVariables();
-
- private var urlLoader:URLLoader;
- private var _resultListener:Function;
-
- public function JoinService() {
- urlLoader = new URLLoader();
- }
-
- public function load(url:String):void {
- var p:QueryStringParameters = new QueryStringParameters();
- p.collectParameters();
- var sessionToken:String = p.getParameter("sessionToken");
-
- reqVars.sessionToken = sessionToken;
-
- var date:Date = new Date();
- request = new URLRequest(url);
- request.method = URLRequestMethod.GET;
- request.data = reqVars;
-
- urlLoader.addEventListener(Event.COMPLETE, handleComplete);
- urlLoader.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
- urlLoader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
- urlLoader.load(request);
- }
-
- public function addJoinResultListener(listener:Function):void {
- _resultListener = listener;
- }
-
- private function httpStatusHandler(event:HTTPStatusEvent):void {
- LOGGER.debug("httpStatusHandler: {0}", [event]);
- }
-
- private function ioErrorHandler(event:IOErrorEvent):void {
- var logData:Object = UsersUtil.initLogData();
- logData.tags = ["initialization"];
- logData.message = "IOError calling ENTER api.";
- LOGGER.error(JSON.stringify(logData));
-
- var e:ConnectionFailedEvent = new ConnectionFailedEvent(ConnectionFailedEvent.USER_LOGGED_OUT);
- var dispatcher:Dispatcher = new Dispatcher();
- dispatcher.dispatchEvent(e);
- }
-
- private function processLogoutUrl(confInfo:Object):String {
- var logoutUrl:String = confInfo.logoutUrl;
- var rules:Object = {
- "%%FULLNAME%%": confInfo.username,
- "%%CONFNAME%%": confInfo.conferenceName,
- "%%DIALNUM%%": confInfo.dialnumber,
- "%%CONFNUM%%": confInfo.voicebridge
- }
-
- for (var attr:String in rules) {
- logoutUrl = logoutUrl.replace(new RegExp(attr, "g"), rules[attr]);
- }
-
- return logoutUrl;
- }
-
- private function extractMetadata(metadata:Object):Object {
- var response:Object = new Object();
- if (metadata) {
- var data:Array = metadata as Array;
- for each (var item:Object in data) {
- for (var id:String in item) {
- var value:String = item[id] as String;
- response[id] = value;
- }
- }
- }
- return response;
- }
-
- private function handleComplete(e:Event):void {
- var result:Object = JSON.parse(e.target.data);
-
- var logData:Object = UsersUtil.initLogData();
- logData.tags = ["initialization"];
-
-
- var returncode:String = result.response.returncode;
- if (returncode == 'FAILED') {
- logData.message = "Calling ENTER api failed.";
- LOGGER.info(JSON.stringify(logData));
-
- var dispatcher:Dispatcher = new Dispatcher();
- dispatcher.dispatchEvent(new MeetingNotFoundEvent(result.response.logoutURL));
- } else if (returncode == 'SUCCESS') {
- logData.message = "Calling ENTER api succeeded.";
- LOGGER.info(JSON.stringify(logData));
-
- var apiResponse:EnterApiResponse = new EnterApiResponse();
- apiResponse.meetingName = result.response.confname;
- apiResponse.extMeetingId = result.response.externMeetingID;
- apiResponse.intMeetingId = result.response.meetingID;
- apiResponse.isBreakout = result.response.isBreakout;
-
- apiResponse.username = result.response.fullname;
- apiResponse.extUserId = result.response.externUserID;
- apiResponse.intUserId = result.response.internalUserID;
- apiResponse.role = result.response.role;
- apiResponse.guest = result.response.guest;
- apiResponse.authed = result.response.authed;
- apiResponse.authToken = result.response.authToken;
-
- apiResponse.record = (result.response.record.toUpperCase() == "TRUE");
- apiResponse.allowStartStopRecording = result.response.allowStartStopRecording;
- apiResponse.webcamsOnlyForModerator = result.response.webcamsOnlyForModerator;
-
- apiResponse.bannerColor = result.response.bannerColor;
- apiResponse.bannerText = result.response.bannerText;
-
- apiResponse.dialnumber = result.response.dialnumber;
- apiResponse.voiceConf = result.response.voicebridge;
-
- apiResponse.welcome = result.response.welcome;
- apiResponse.logoutUrl = processLogoutUrl(result.response);
- apiResponse.logoutTimer = result.response.logoutTimer;
- apiResponse.defaultLayout = result.response.defaultLayout;
- apiResponse.avatarURL = result.response.avatarURL;
-
- apiResponse.customdata = new Object();
-
- if (result.response.customdata) {
- var cdata:Array = result.response.customdata as Array;
- for each (var item:Object in cdata) {
- for (var id:String in item) {
- var value:String = item[id] as String;
- apiResponse.customdata[id] = value;
- }
- }
- }
-
- apiResponse.metadata = extractMetadata(result.response.metadata);
-
- if (result.response.hasOwnProperty("modOnlyMessage")) {
- apiResponse.modOnlyMessage = result.response.modOnlyMessage;
- }
-
- apiResponse.customLogo = result.response.customLogoURL;
- apiResponse.customCopyright = result.response.customCopyright;
- apiResponse.muteOnStart = result.response.muteOnStart as Boolean;
-
- if (_resultListener != null) _resultListener(true, apiResponse);
- }
-
- }
-
- public function get loader():URLLoader{
- return this.urlLoader;
- }
- }
+
+ public class JoinService
+ {
+ private static const LOGGER:ILogger = getClassLogger(JoinService);
+
+ private var request:URLRequest = new URLRequest();
+ private var reqVars:URLVariables = new URLVariables();
+
+ private var urlLoader:URLLoader;
+ private var _resultListener:Function;
+
+ public function JoinService() {
+ urlLoader = new URLLoader();
+ }
+
+ public function load(url:String):void {
+ var p:QueryStringParameters = new QueryStringParameters();
+ p.collectParameters();
+ var sessionToken:String = p.getParameter("sessionToken");
+
+ reqVars.sessionToken = sessionToken;
+
+ var date:Date = new Date();
+ request = new URLRequest(url);
+ request.method = URLRequestMethod.GET;
+ request.data = reqVars;
+
+ urlLoader.addEventListener(Event.COMPLETE, handleComplete);
+ urlLoader.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
+ urlLoader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
+ urlLoader.load(request);
+ }
+
+ public function addJoinResultListener(listener:Function):void {
+ _resultListener = listener;
+ }
+
+ private function httpStatusHandler(event:HTTPStatusEvent):void {
+ LOGGER.debug("httpStatusHandler: {0}", [event]);
+ }
+
+ private function ioErrorHandler(event:IOErrorEvent):void {
+ var logData:Object = UsersUtil.initLogData();
+ logData.tags = ["initialization"];
+ logData.message = "IOError calling ENTER api.";
+ LOGGER.error(JSON.stringify(logData));
+
+ var e:ConnectionFailedEvent = new ConnectionFailedEvent(ConnectionFailedEvent.USER_LOGGED_OUT);
+ var dispatcher:Dispatcher = new Dispatcher();
+ dispatcher.dispatchEvent(e);
+ }
+
+ private function processLogoutUrl(confInfo:Object):String {
+ var logoutUrl:String = confInfo.logoutUrl;
+ var rules:Object = {
+ "%%FULLNAME%%": confInfo.username,
+ "%%CONFNAME%%": confInfo.conferenceName,
+ "%%DIALNUM%%": confInfo.dialnumber,
+ "%%CONFNUM%%": confInfo.voicebridge
+ }
+
+ for (var attr:String in rules) {
+ logoutUrl = logoutUrl.replace(new RegExp(attr, "g"), rules[attr]);
+ }
+
+ return logoutUrl;
+ }
+
+ private function extractMetadata(metadata:Object):Object {
+ var response:Object = new Object();
+ if (metadata) {
+ var data:Array = metadata as Array;
+ for each (var item:Object in data) {
+ for (var id:String in item) {
+ var value:String = item[id] as String;
+ response[id] = value;
+ }
+ }
+ }
+ return response;
+ }
+
+ private function handleComplete(e:Event):void {
+ var result:Object = JSON.parse(e.target.data);
+
+ var logData:Object = UsersUtil.initLogData();
+ logData.tags = ["initialization"];
+
+
+ var returncode:String = result.response.returncode;
+ if (returncode == 'FAILED') {
+ logData.message = "Calling ENTER api failed.";
+ LOGGER.info(JSON.stringify(logData));
+
+ var dispatcher:Dispatcher = new Dispatcher();
+ dispatcher.dispatchEvent(new MeetingNotFoundEvent(result.response.logoutURL));
+ } else if (returncode == 'SUCCESS') {
+ logData.message = "Calling ENTER api succeeded.";
+ LOGGER.info(JSON.stringify(logData));
+
+ var apiResponse:EnterApiResponse = new EnterApiResponse();
+ apiResponse.meetingName = result.response.confname;
+ apiResponse.extMeetingId = result.response.externMeetingID;
+ apiResponse.intMeetingId = result.response.meetingID;
+ apiResponse.isBreakout = result.response.isBreakout;
+
+ apiResponse.username = result.response.fullname;
+ apiResponse.extUserId = result.response.externUserID;
+ apiResponse.intUserId = result.response.internalUserID;
+ apiResponse.role = result.response.role;
+ apiResponse.guest = result.response.guest;
+ apiResponse.authed = result.response.authed;
+ apiResponse.authToken = result.response.authToken;
+
+ apiResponse.record = (result.response.record.toUpperCase() == "TRUE");
+ apiResponse.allowStartStopRecording = result.response.allowStartStopRecording;
+
+ apiResponse.bannerColor = result.response.bannerColor;
+ apiResponse.bannerText = result.response.bannerText;
+
+ apiResponse.dialnumber = result.response.dialnumber;
+ apiResponse.voiceConf = result.response.voicebridge;
+
+ apiResponse.welcome = result.response.welcome;
+ apiResponse.logoutUrl = processLogoutUrl(result.response);
+ apiResponse.logoutTimer = result.response.logoutTimer;
+ apiResponse.defaultLayout = result.response.defaultLayout;
+ apiResponse.avatarURL = result.response.avatarURL;
+
+ apiResponse.customdata = new Object();
+
+ if (result.response.customdata) {
+ var cdata:Array = result.response.customdata as Array;
+ for each (var item:Object in cdata) {
+ for (var id:String in item) {
+ var value:String = item[id] as String;
+ apiResponse.customdata[id] = value;
+ }
+ }
+ }
+
+ apiResponse.metadata = extractMetadata(result.response.metadata);
+
+ if (result.response.hasOwnProperty("modOnlyMessage")) {
+ apiResponse.modOnlyMessage = result.response.modOnlyMessage;
+ }
+
+ apiResponse.customLogo = result.response.customLogoURL;
+ apiResponse.customCopyright = result.response.customCopyright;
+ apiResponse.muteOnStart = result.response.muteOnStart as Boolean;
+
+ if (_resultListener != null) _resultListener(true, apiResponse);
+ }
+
+ }
+
+ public function get loader():URLLoader{
+ return this.urlLoader;
+ }
+ }
}
\ No newline at end of file
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/UserService.as b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/UserService.as
index 2a5ce9b26831..6b5b4e4e6221 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/UserService.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/UserService.as
@@ -1,341 +1,344 @@
-/**
-* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
-*
-* Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
-*
-* This program is free software; you can redistribute it and/or modify it under the
-* terms of the GNU Lesser General Public License as published by the Free Software
-* Foundation; either version 3.0 of the License, or (at your option) any later
-* version.
-*
-* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
-* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public License along
-* with BigBlueButton; if not, see .
-*
-*/
-package org.bigbluebutton.main.model.users
-{
- import com.asfusion.mate.events.Dispatcher;
-
- import flash.external.ExternalInterface;
- import flash.net.NetConnection;
-
- import org.as3commons.logging.api.ILogger;
- import org.as3commons.logging.api.getClassLogger;
- import org.bigbluebutton.core.BBB;
- import org.bigbluebutton.core.Options;
- import org.bigbluebutton.core.UsersUtil;
- import org.bigbluebutton.core.events.LockControlEvent;
- import org.bigbluebutton.core.events.TokenValidEvent;
- import org.bigbluebutton.core.events.TokenValidReconnectEvent;
- import org.bigbluebutton.core.events.VoiceConfEvent;
- import org.bigbluebutton.core.managers.ConnectionManager;
- import org.bigbluebutton.core.model.LiveMeeting;
- import org.bigbluebutton.main.events.BBBEvent;
- import org.bigbluebutton.main.events.BreakoutRoomEvent;
- import org.bigbluebutton.main.events.LogoutEvent;
- import org.bigbluebutton.main.events.ResponseModeratorEvent;
- import org.bigbluebutton.main.events.SuccessfulLoginEvent;
- import org.bigbluebutton.main.events.UserServicesEvent;
- import org.bigbluebutton.main.model.options.ApplicationOptions;
- import org.bigbluebutton.main.model.users.events.BroadcastStartedEvent;
- import org.bigbluebutton.main.model.users.events.BroadcastStoppedEvent;
- import org.bigbluebutton.main.model.users.events.ChangeRoleEvent;
- import org.bigbluebutton.main.model.users.events.ConferenceCreatedEvent;
- import org.bigbluebutton.main.model.users.events.EmojiStatusEvent;
- import org.bigbluebutton.main.model.users.events.KickUserEvent;
- import org.bigbluebutton.main.model.users.events.RoleChangeEvent;
- import org.bigbluebutton.main.model.users.events.UsersConnectionEvent;
- import org.bigbluebutton.modules.users.events.MeetingMutedEvent;
- import org.bigbluebutton.modules.users.services.MessageReceiver;
+/**
+* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
+*
+* Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
+*
+* This program is free software; you can redistribute it and/or modify it under the
+* terms of the GNU Lesser General Public License as published by the Free Software
+* Foundation; either version 3.0 of the License, or (at your option) any later
+* version.
+*
+* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
+* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public License along
+* with BigBlueButton; if not, see .
+*
+*/
+package org.bigbluebutton.main.model.users
+{
+ import com.asfusion.mate.events.Dispatcher;
+
+ import flash.external.ExternalInterface;
+ import flash.net.NetConnection;
+
+ import org.as3commons.logging.api.ILogger;
+ import org.as3commons.logging.api.getClassLogger;
+ import org.bigbluebutton.core.BBB;
+ import org.bigbluebutton.core.Options;
+ import org.bigbluebutton.core.UsersUtil;
+ import org.bigbluebutton.core.events.LockControlEvent;
+ import org.bigbluebutton.core.events.SetWebcamsOnlyForModeratorEvent;
+ import org.bigbluebutton.core.events.TokenValidEvent;
+ import org.bigbluebutton.core.events.TokenValidReconnectEvent;
+ import org.bigbluebutton.core.events.VoiceConfEvent;
+ import org.bigbluebutton.core.managers.ConnectionManager;
+ import org.bigbluebutton.core.model.LiveMeeting;
+ import org.bigbluebutton.main.events.BBBEvent;
+ import org.bigbluebutton.main.events.BreakoutRoomEvent;
+ import org.bigbluebutton.main.events.LogoutEvent;
+ import org.bigbluebutton.main.events.ResponseModeratorEvent;
+ import org.bigbluebutton.main.events.SuccessfulLoginEvent;
+ import org.bigbluebutton.main.events.UserServicesEvent;
+ import org.bigbluebutton.main.model.options.ApplicationOptions;
+ import org.bigbluebutton.main.model.users.events.BroadcastStartedEvent;
+ import org.bigbluebutton.main.model.users.events.BroadcastStoppedEvent;
+ import org.bigbluebutton.main.model.users.events.ChangeRoleEvent;
+ import org.bigbluebutton.main.model.users.events.ConferenceCreatedEvent;
+ import org.bigbluebutton.main.model.users.events.EmojiStatusEvent;
+ import org.bigbluebutton.main.model.users.events.KickUserEvent;
+ import org.bigbluebutton.main.model.users.events.RoleChangeEvent;
+ import org.bigbluebutton.main.model.users.events.UsersConnectionEvent;
+ import org.bigbluebutton.modules.users.events.MeetingMutedEvent;
+ import org.bigbluebutton.modules.users.services.MessageReceiver;
import org.bigbluebutton.modules.users.services.MessageSender;
-
- public class UserService {
- private static const LOGGER:ILogger = getClassLogger(UserService);
-
- private var joinService:JoinService;
- private var applicationURI:String;
- private var hostURI:String;
- private var connection:NetConnection;
- private var dispatcher:Dispatcher;
- private var reconnecting:Boolean = false;
-
- private var _connectionManager:ConnectionManager;
- private var msgReceiver:MessageReceiver = new MessageReceiver();
- private var sender:MessageSender = new MessageSender();
-
- public function UserService() {
- dispatcher = new Dispatcher();
- msgReceiver.onAllowedToJoin = function():void {
- onAllowedToJoin();
- }
- }
-
- private function onAllowedToJoin():void {
- sender.queryForParticipants();
- sender.queryForRecordingStatus();
- sender.queryForGuestPolicy();
- sender.queryForGuestsWaiting();
- sender.getLockSettings();
- sender.getRoomMuteState();
-
- if (!LiveMeeting.inst().meeting.isBreakout) {
- sender.queryForBreakoutRooms(LiveMeeting.inst().meeting.internalId);
- }
-
- var loadCommand:SuccessfulLoginEvent = new SuccessfulLoginEvent(SuccessfulLoginEvent.USER_LOGGED_IN);
- dispatcher.dispatchEvent(loadCommand);
- }
-
- public function startService(e:UserServicesEvent):void {
- joinService = new JoinService();
- joinService.addJoinResultListener(joinListener);
- var applicationOptions : ApplicationOptions = Options.getOptions(ApplicationOptions) as ApplicationOptions;
- joinService.load(applicationOptions.host);
- }
-
- private function joinListener(success:Boolean, result: EnterApiResponse):void {
- if (success) {
-
- LiveMeeting.inst().me.id = result.intUserId
- LiveMeeting.inst().me.name = result.username;
- LiveMeeting.inst().me.externalId = result.extUserId;
- LiveMeeting.inst().me.authToken = result.authToken;
- LiveMeeting.inst().me.layout = result.defaultLayout;
- LiveMeeting.inst().me.logoutURL = result.logoutUrl;
- LiveMeeting.inst().me.role = result.role;
- LiveMeeting.inst().me.welcome = result.welcome;
- LiveMeeting.inst().me.avatarURL = result.avatarURL;
- LiveMeeting.inst().me.dialNumber = result.dialnumber;
-
- LiveMeeting.inst().me.guest = result.guest;
- LiveMeeting.inst().me.authed = result.authed;
- LiveMeeting.inst().me.customData = result.customdata;
-
- LiveMeeting.inst().meeting.name = result.meetingName;
- LiveMeeting.inst().meeting.internalId = result.intMeetingId;
- LiveMeeting.inst().meeting.externalId = result.extMeetingId;
- LiveMeeting.inst().meeting.isBreakout = result.isBreakout;
- LiveMeeting.inst().meeting.defaultAvatarUrl = result.avatarURL;
- LiveMeeting.inst().meeting.voiceConf = result.voiceConf;
- LiveMeeting.inst().meeting.dialNumber = result.dialnumber;
- LiveMeeting.inst().meeting.recorded = result.record;
- LiveMeeting.inst().meeting.defaultLayout = result.defaultLayout;
- LiveMeeting.inst().meeting.welcomeMessage = result.welcome;
- LiveMeeting.inst().meeting.modOnlyMessage = result.modOnlyMessage;
- LiveMeeting.inst().meeting.allowStartStopRecording = result.allowStartStopRecording;
- LiveMeeting.inst().meeting.webcamsOnlyForModerator = result.webcamsOnlyForModerator;
- LiveMeeting.inst().meeting.metadata = result.metadata;
-
- LiveMeeting.inst().meeting.logoutTimer = result.logoutTimer;
-
- LiveMeeting.inst().meeting.bannerColor = result.bannerColor;
- LiveMeeting.inst().meeting.bannerText = result.bannerText;
-
- LiveMeeting.inst().meeting.muteOnStart = result.muteOnStart;
- LiveMeeting.inst().meetingStatus.isMeetingMuted = result.muteOnStart;
- LiveMeeting.inst().meeting.customLogo = result.customLogo;
- LiveMeeting.inst().meeting.customCopyright = result.customCopyright;
-
- // assign the meeting name to the document title
- ExternalInterface.call("setTitle", result.meetingName);
-
- var e:ConferenceCreatedEvent = new ConferenceCreatedEvent(ConferenceCreatedEvent.CONFERENCE_CREATED_EVENT);
- dispatcher.dispatchEvent(e);
-
- // Send event to trigger meeting muted initialization of meeting (ralam dec 21, 2017)
- dispatcher.dispatchEvent(new MeetingMutedEvent());
- connect();
- }
- }
-
-
-
- private function connect():void{
- _connectionManager = BBB.initConnectionManager();
- _connectionManager.connect();
- }
-
- public function tokenValidEventHandler(event: TokenValidEvent): void {
- sender.joinMeeting();
- }
-
- public function tokenValidReconnectEventHandler(event: TokenValidReconnectEvent): void {
- sender.joinMeetingAfterReconnect();
- }
-
- public function logoutEndMeeting():void{
- if (this.isModerator()) {
- var myUserId: String = UsersUtil.getMyUserID();
- sender.logoutEndMeeting(myUserId);
- }
- }
-
- public function logoutUser():void {
- disconnect(true);
- }
-
- public function disconnect(onUserAction:Boolean):void {
- if (_connectionManager) {
- _connectionManager.disconnect(onUserAction);
- }
- }
-
- public function activityResponse():void {
- sender.activityResponse();
- }
-
- private function queryForRecordingStatus():void {
- sender.queryForRecordingStatus();
- }
-
- public function changeRecordingStatus(e:BBBEvent):void {
- if (this.isModerator() && !e.payload.remote) {
- var myUserId:String = UsersUtil.getMyUserID();
- sender.changeRecordingStatus(myUserId, e.payload.recording);
- }
- }
-
- public function userLoggedIn(e:UsersConnectionEvent):void {
- LOGGER.debug("In userLoggedIn - reconnecting and allowed to join");
- if (reconnecting && ! LiveMeeting.inst().me.waitingForApproval) {
- LOGGER.debug("userLoggedIn - reconnecting and allowed to join");
- onAllowedToJoin();
- reconnecting = false;
- } else {
- onAllowedToJoin();
-
- }
- }
-
- public function denyGuest():void {
- dispatcher.dispatchEvent(new LogoutEvent(LogoutEvent.MODERATOR_DENIED_ME));
- }
-
- public function setGuestPolicy(event:BBBEvent):void {
- sender.setGuestPolicy(event.payload['guestPolicy']);
- }
-
- public function guestDisconnect():void {
- _connectionManager.guestDisconnect();
- }
-
- public function isModerator():Boolean {
- return UsersUtil.amIModerator();
- }
-
- public function addStream(e:BroadcastStartedEvent):void {
- sender.addStream(e.userid, e.stream);
- }
-
- public function removeStream(e:BroadcastStoppedEvent):void {
- sender.removeStream(e.userid, e.stream);
- }
-
- public function emojiStatus(e:EmojiStatusEvent):void {
- // If the userId is not set in the event then the event has been dispatched for the current user
- sender.emojiStatus(e.userId != "" ? e.userId : UsersUtil.getMyUserID(), e.status);
- }
-
- public function createBreakoutRooms(e:BreakoutRoomEvent):void{
- sender.createBreakoutRooms(LiveMeeting.inst().meeting.internalId, e.rooms, e.durationInMinutes, e.record);
- }
-
- public function handleApproveGuestAccess(e: ResponseModeratorEvent):void {
- sender.approveGuestAccess(e.userIds, e.allow);
- }
-
- public function requestBreakoutJoinUrl(e:BreakoutRoomEvent):void{
- sender.requestBreakoutJoinUrl(LiveMeeting.inst().meeting.internalId, e.breakoutMeetingId, e.userId);
- }
-
- public function listenInOnBreakout(e:BreakoutRoomEvent):void {
- if (e.listen) {
- sender.listenInOnBreakout(LiveMeeting.inst().meeting.internalId,
- e.breakoutMeetingId, LiveMeeting.inst().me.id);
- } else {
- sender.listenInOnBreakout(e.breakoutMeetingId, LiveMeeting.inst().meeting.internalId, LiveMeeting.inst().me.id);
- }
- LiveMeeting.inst().breakoutRooms.setBreakoutRoomInListen(e.listen, e.breakoutMeetingId);
- }
-
- public function endAllBreakoutRooms(e:BreakoutRoomEvent):void {
- sender.endAllBreakoutRooms(LiveMeeting.inst().meeting.internalId);
- }
-
- public function kickUser(e:KickUserEvent):void{
- if (this.isModerator()) sender.kickUser(e.userid);
- }
-
- public function changeRole(e:ChangeRoleEvent):void {
- if (this.isModerator()) sender.changeRole(e.userid, e.role);
- }
-
- public function onReconnecting(e:BBBEvent):void {
- if (e.payload.type == "BIGBLUEBUTTON_CONNECTION") {
- LOGGER.debug("onReconnecting");
- reconnecting = true;
- }
- }
-
- /**
- * Assign a new presenter
- * @param e
- *
- */
- public function assignPresenter(e:RoleChangeEvent):void{
- var assignTo:String = e.userid;
- var name:String = e.username;
- sender.assignPresenter(assignTo, name, UsersUtil.getMyUserID());
- }
-
- public function muteUnmuteUser(command:VoiceConfEvent):void {
- sender.muteUnmuteUser(command.userid, command.mute);
- }
-
- public function muteAllUsers(command:VoiceConfEvent):void {
- sender.muteAllUsers(true);
- }
-
- public function unmuteAllUsers(command:VoiceConfEvent):void{
- sender.muteAllUsers(false);
- }
-
- public function muteAllUsersExceptPresenter(command:VoiceConfEvent):void {
- sender.muteAllUsersExceptPresenter(true);
- }
-
- public function ejectUser(command:VoiceConfEvent):void {
- if (this.isModerator()) sender.ejectUserFromVoice(command.userid);
- }
-
- //Lock events
- public function lockAllUsers(command:LockControlEvent):void {
- sender.setAllUsersLock(true);
- }
-
- public function unlockAllUsers(command:LockControlEvent):void {
- sender.setAllUsersLock(false);
- }
-
- public function lockAlmostAllUsers(command:LockControlEvent):void {
- var pres:Array = LiveMeeting.inst().users.getPresenters();
- sender.setAllUsersLock(true, pres);
- }
-
- public function lockUser(command:LockControlEvent):void {
- sender.setUserLock(command.internalUserID, true);
- }
-
- public function unlockUser(command:LockControlEvent):void {
- sender.setUserLock(command.internalUserID, false);
- }
-
- public function saveLockSettings(command:LockControlEvent):void {
- sender.saveLockSettings(command.payload);
- }
- }
-}
+
+ public class UserService {
+ private static const LOGGER:ILogger = getClassLogger(UserService);
+
+ private var joinService:JoinService;
+ private var applicationURI:String;
+ private var hostURI:String;
+ private var connection:NetConnection;
+ private var dispatcher:Dispatcher;
+ private var reconnecting:Boolean = false;
+
+ private var _connectionManager:ConnectionManager;
+ private var msgReceiver:MessageReceiver = new MessageReceiver();
+ private var sender:MessageSender = new MessageSender();
+
+ public function UserService() {
+ dispatcher = new Dispatcher();
+ msgReceiver.onAllowedToJoin = function():void {
+ onAllowedToJoin();
+ }
+ }
+
+ private function onAllowedToJoin():void {
+ sender.queryForWebcamsOnlyForModerator();
+ sender.queryForParticipants();
+ sender.queryForRecordingStatus();
+ sender.queryForGuestPolicy();
+ sender.queryForGuestsWaiting();
+ sender.getLockSettings();
+ sender.getRoomMuteState();
+
+ if (!LiveMeeting.inst().meeting.isBreakout) {
+ sender.queryForBreakoutRooms(LiveMeeting.inst().meeting.internalId);
+ }
+
+ var loadCommand:SuccessfulLoginEvent = new SuccessfulLoginEvent(SuccessfulLoginEvent.USER_LOGGED_IN);
+ dispatcher.dispatchEvent(loadCommand);
+ }
+
+ public function startService(e:UserServicesEvent):void {
+ joinService = new JoinService();
+ joinService.addJoinResultListener(joinListener);
+ var applicationOptions : ApplicationOptions = Options.getOptions(ApplicationOptions) as ApplicationOptions;
+ joinService.load(applicationOptions.host);
+ }
+
+ private function joinListener(success:Boolean, result: EnterApiResponse):void {
+ if (success) {
+
+ LiveMeeting.inst().me.id = result.intUserId
+ LiveMeeting.inst().me.name = result.username;
+ LiveMeeting.inst().me.externalId = result.extUserId;
+ LiveMeeting.inst().me.authToken = result.authToken;
+ LiveMeeting.inst().me.layout = result.defaultLayout;
+ LiveMeeting.inst().me.logoutURL = result.logoutUrl;
+ LiveMeeting.inst().me.role = result.role;
+ LiveMeeting.inst().me.welcome = result.welcome;
+ LiveMeeting.inst().me.avatarURL = result.avatarURL;
+ LiveMeeting.inst().me.dialNumber = result.dialnumber;
+
+ LiveMeeting.inst().me.guest = result.guest;
+ LiveMeeting.inst().me.authed = result.authed;
+ LiveMeeting.inst().me.customData = result.customdata;
+
+ LiveMeeting.inst().meeting.name = result.meetingName;
+ LiveMeeting.inst().meeting.internalId = result.intMeetingId;
+ LiveMeeting.inst().meeting.externalId = result.extMeetingId;
+ LiveMeeting.inst().meeting.isBreakout = result.isBreakout;
+ LiveMeeting.inst().meeting.defaultAvatarUrl = result.avatarURL;
+ LiveMeeting.inst().meeting.voiceConf = result.voiceConf;
+ LiveMeeting.inst().meeting.dialNumber = result.dialnumber;
+ LiveMeeting.inst().meeting.recorded = result.record;
+ LiveMeeting.inst().meeting.defaultLayout = result.defaultLayout;
+ LiveMeeting.inst().meeting.welcomeMessage = result.welcome;
+ LiveMeeting.inst().meeting.modOnlyMessage = result.modOnlyMessage;
+ LiveMeeting.inst().meeting.allowStartStopRecording = result.allowStartStopRecording;
+ LiveMeeting.inst().meeting.metadata = result.metadata;
+ LiveMeeting.inst().meeting.logoutTimer = result.logoutTimer;
+
+ LiveMeeting.inst().meeting.bannerColor = result.bannerColor;
+ LiveMeeting.inst().meeting.bannerText = result.bannerText;
+
+ LiveMeeting.inst().meeting.muteOnStart = result.muteOnStart;
+ LiveMeeting.inst().meetingStatus.isMeetingMuted = result.muteOnStart;
+ LiveMeeting.inst().meeting.customLogo = result.customLogo;
+ LiveMeeting.inst().meeting.customCopyright = result.customCopyright;
+
+ // assign the meeting name to the document title
+ ExternalInterface.call("setTitle", result.meetingName);
+
+ var e:ConferenceCreatedEvent = new ConferenceCreatedEvent(ConferenceCreatedEvent.CONFERENCE_CREATED_EVENT);
+ dispatcher.dispatchEvent(e);
+
+ // Send event to trigger meeting muted initialization of meeting (ralam dec 21, 2017)
+ dispatcher.dispatchEvent(new MeetingMutedEvent());
+ connect();
+ }
+ }
+
+
+
+ private function connect():void{
+ _connectionManager = BBB.initConnectionManager();
+ _connectionManager.connect();
+ }
+
+ public function tokenValidEventHandler(event: TokenValidEvent): void {
+ sender.joinMeeting();
+ }
+
+ public function tokenValidReconnectEventHandler(event: TokenValidReconnectEvent): void {
+ sender.joinMeetingAfterReconnect();
+ }
+
+ public function logoutEndMeeting():void{
+ if (this.isModerator()) {
+ var myUserId: String = UsersUtil.getMyUserID();
+ sender.logoutEndMeeting(myUserId);
+ }
+ }
+
+ public function logoutUser():void {
+ disconnect(true);
+ }
+
+ public function disconnect(onUserAction:Boolean):void {
+ if (_connectionManager) {
+ _connectionManager.disconnect(onUserAction);
+ }
+ }
+
+ public function activityResponse():void {
+ sender.activityResponse();
+ }
+
+ private function queryForRecordingStatus():void {
+ sender.queryForRecordingStatus();
+ }
+
+ public function changeRecordingStatus(e:BBBEvent):void {
+ if (this.isModerator() && !e.payload.remote) {
+ sender.changeRecordingStatus(UsersUtil.getMyUserID(), e.payload.recording);
+ }
+ }
+
+ public function userLoggedIn(e:UsersConnectionEvent):void {
+ LOGGER.debug("In userLoggedIn - reconnecting and allowed to join");
+ if (reconnecting && ! LiveMeeting.inst().me.waitingForApproval) {
+ LOGGER.debug("userLoggedIn - reconnecting and allowed to join");
+ onAllowedToJoin();
+ reconnecting = false;
+ } else {
+ onAllowedToJoin();
+
+ }
+ }
+
+ public function denyGuest():void {
+ dispatcher.dispatchEvent(new LogoutEvent(LogoutEvent.MODERATOR_DENIED_ME));
+ }
+
+ public function setGuestPolicy(event:BBBEvent):void {
+ sender.setGuestPolicy(event.payload['guestPolicy']);
+ }
+
+ public function guestDisconnect():void {
+ _connectionManager.guestDisconnect();
+ }
+
+ public function isModerator():Boolean {
+ return UsersUtil.amIModerator();
+ }
+
+ public function addStream(e:BroadcastStartedEvent):void {
+ sender.addStream(e.userid, e.stream);
+ }
+
+ public function removeStream(e:BroadcastStoppedEvent):void {
+ sender.removeStream(e.userid, e.stream);
+ }
+
+ public function emojiStatus(e:EmojiStatusEvent):void {
+ // If the userId is not set in the event then the event has been dispatched for the current user
+ sender.emojiStatus(e.userId != "" ? e.userId : UsersUtil.getMyUserID(), e.status);
+ }
+
+ public function createBreakoutRooms(e:BreakoutRoomEvent):void{
+ sender.createBreakoutRooms(LiveMeeting.inst().meeting.internalId, e.rooms, e.durationInMinutes, e.record);
+ }
+
+ public function handleApproveGuestAccess(e: ResponseModeratorEvent):void {
+ sender.approveGuestAccess(e.userIds, e.allow);
+ }
+
+ public function requestBreakoutJoinUrl(e:BreakoutRoomEvent):void{
+ sender.requestBreakoutJoinUrl(LiveMeeting.inst().meeting.internalId, e.breakoutMeetingId, e.userId);
+ }
+
+ public function listenInOnBreakout(e:BreakoutRoomEvent):void {
+ if (e.listen) {
+ sender.listenInOnBreakout(LiveMeeting.inst().meeting.internalId,
+ e.breakoutMeetingId, LiveMeeting.inst().me.id);
+ } else {
+ sender.listenInOnBreakout(e.breakoutMeetingId, LiveMeeting.inst().meeting.internalId, LiveMeeting.inst().me.id);
+ }
+ LiveMeeting.inst().breakoutRooms.setBreakoutRoomInListen(e.listen, e.breakoutMeetingId);
+ }
+
+ public function endAllBreakoutRooms(e:BreakoutRoomEvent):void {
+ sender.endAllBreakoutRooms(LiveMeeting.inst().meeting.internalId);
+ }
+
+ public function kickUser(e:KickUserEvent):void{
+ if (this.isModerator()) sender.kickUser(e.userid);
+ }
+
+ public function changeRole(e:ChangeRoleEvent):void {
+ if (this.isModerator()) sender.changeRole(e.userid, e.role);
+ }
+
+ public function onReconnecting(e:BBBEvent):void {
+ if (e.payload.type == "BIGBLUEBUTTON_CONNECTION") {
+ LOGGER.debug("onReconnecting");
+ reconnecting = true;
+ }
+ }
+
+ /**
+ * Assign a new presenter
+ * @param e
+ *
+ */
+ public function assignPresenter(e:RoleChangeEvent):void{
+ var assignTo:String = e.userid;
+ var name:String = e.username;
+ sender.assignPresenter(assignTo, name, UsersUtil.getMyUserID());
+ }
+
+ public function muteUnmuteUser(command:VoiceConfEvent):void {
+ sender.muteUnmuteUser(command.userid, command.mute);
+ }
+
+ public function muteAllUsers(command:VoiceConfEvent):void {
+ sender.muteAllUsers(true);
+ }
+
+ public function unmuteAllUsers(command:VoiceConfEvent):void{
+ sender.muteAllUsers(false);
+ }
+
+ public function muteAllUsersExceptPresenter(command:VoiceConfEvent):void {
+ sender.muteAllUsersExceptPresenter(true);
+ }
+
+ public function ejectUser(command:VoiceConfEvent):void {
+ if (this.isModerator()) sender.ejectUserFromVoice(command.userid);
+ }
+
+ //Lock events
+ public function lockAllUsers(command:LockControlEvent):void {
+ sender.setAllUsersLock(true);
+ }
+
+ public function unlockAllUsers(command:LockControlEvent):void {
+ sender.setAllUsersLock(false);
+ }
+
+ public function lockAlmostAllUsers(command:LockControlEvent):void {
+ var pres:Array = LiveMeeting.inst().users.getPresenters();
+ sender.setAllUsersLock(true, pres);
+ }
+
+ public function lockUser(command:LockControlEvent):void {
+ sender.setUserLock(command.internalUserID, true);
+ }
+
+ public function unlockUser(command:LockControlEvent):void {
+ sender.setUserLock(command.internalUserID, false);
+ }
+
+ public function saveLockSettings(command:LockControlEvent):void {
+ sender.saveLockSettings(command.payload);
+ }
+
+ public function updateWebcamsOnlyForModerator(command:SetWebcamsOnlyForModeratorEvent):void {
+ sender.updateWebcamsOnlyForModerator(command.webcamsOnlyForModerator, UsersUtil.getMyUserID());
+ }
+ }
+}
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/AudioSelectionWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/AudioSelectionWindow.mxml
index ff59f04db347..10dd3b7e7d4b 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/AudioSelectionWindow.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/AudioSelectionWindow.mxml
@@ -132,7 +132,6 @@ with BigBlueButton; if not, see .
styleName="titleWindowStyle"
maxWidth="{this.width - 40}" />
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/LockSettings.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/LockSettings.mxml
index e143e6ca3c68..8e1f4b55258c 100644
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/LockSettings.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/LockSettings.mxml
@@ -24,17 +24,20 @@ with BigBlueButton; if not, see .
implements="org.bigbluebutton.common.IKeyboardClose"
show="this.setFocus()"
xmlns:common="org.bigbluebutton.common.*"
- minWidth="340" showCloseButton="false"
+ minWidth="400" showCloseButton="false"
keyDown="handleKeyDown(event)">
.
var lockSettings:LockSettingsVO = new LockSettingsVO(chkDisableWebcam.selected, chkDisableMicrophone.selected, chkDisablePrivateChat.selected, chkDisablePublicChat.selected, chkDisableLayout.selected, chkLockOnJoin.selected, lockOnJoinConfigurable);
event.payload = lockSettings.toMap();
dispatchEvent(event);
-
+
+ if (LiveMeeting.inst().meeting.webcamsOnlyForModerator != chkwebcamsOnlyForModerator.selected) {
+ var wEvent:SetWebcamsOnlyForModeratorEvent = new SetWebcamsOnlyForModeratorEvent(SetWebcamsOnlyForModeratorEvent.UPDATE_WEBCAMS_ONLY_FOR_MODERATOR);
+ wEvent.webcamsOnlyForModerator = chkwebcamsOnlyForModerator.selected;
+ dispatchEvent(wEvent);
+ }
+
PopUpUtil.removePopUp(this);
}
private function onCancelClicked():void {
PopUpUtil.removePopUp(this);
}
+
+ protected function chkDisableWebcam_changeHandler(event:Event):void
+ {
+ if (chkDisableWebcam.selected) {
+ chkwebcamsOnlyForModerator.selected = false;
+ }
+ }
+
+ protected function chkwebcamsOnlyForModerator_changeHandler(event:Event):void
+ {
+ if (chkwebcamsOnlyForModerator.selected) {
+ chkDisableWebcam.selected = false;
+ }
+ }
+
]]>
@@ -71,76 +95,81 @@ with BigBlueButton; if not, see .
+ minWidth="300" />
+
+
+
+
+
-
-
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
-
+
-
-
+
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
+
-
-
+
-
-
+
-
+
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/LoggedOutWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/LoggedOutWindow.mxml
index 87fd94f40be9..ebd84a45ffc8 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/LoggedOutWindow.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/LoggedOutWindow.mxml
@@ -20,24 +20,40 @@ with BigBlueButton; if not, see .
-->
-
+
.
}
private function callSignOut():void {
+ if (currentState == "feedback" && starRating.rating > 0) {
+ var logData:Object = new Object();
+ logData.username = UsersUtil.getMyUsername();
+ logData.userId = UsersUtil.getMyUserID();
+ logData.meetingId = UsersUtil.getInternalMeetingID();
+ logData.rating = starRating.rating;
+ logData.comment = feedbackMsg.text;
+ LOGGER.info(JSON.stringify(logData));
+ }
var d:Dispatcher = new Dispatcher();
d.dispatchEvent(new LogoutEvent(LogoutEvent.SIGN_OUT));
}
@@ -64,6 +89,11 @@ with BigBlueButton; if not, see .
logData.reason = reason;
LOGGER.info(JSON.stringify(logData));
+ var layoutOptions:LayoutOptions = Options.getOptions(LayoutOptions) as LayoutOptions;
+ if (layoutOptions.askForFeedbackOnLogout) {
+ currentState = "feedback";
+ }
+
switch (reason) {
case ConnectionFailedEvent.APP_SHUTDOWN:
message = ResourceUtil.getInstance().getString('bbb.logout.appshutdown');
@@ -112,10 +142,56 @@ with BigBlueButton; if not, see .
message += "\n" + ResourceUtil.getInstance().getString('bbb.logout.breakoutRoomClose');
}
}
+
+ protected function resizeHandler(event:ResizeEvent):void {
+ PopUpManager.centerPopUp(this);
+ }
]]>
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/LogoutWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/LogoutWindow.mxml
index 8a86e4a2de30..e0086ceef3be 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/LogoutWindow.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/LogoutWindow.mxml
@@ -25,7 +25,6 @@ with BigBlueButton; if not, see .
implements="org.bigbluebutton.common.IKeyboardClose"
verticalScrollPolicy="off"
horizontalScrollPolicy="off"
- horizontalAlign="center"
showCloseButton="false"
creationComplete="onCreationComplete()"
minWidth="350"
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
index 9744dbd0a7d4..76c88b08d44b 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/MainApplicationShell.mxml
@@ -114,6 +114,9 @@ with BigBlueButton; if not, see .
import org.bigbluebutton.core.events.RoundTripLatencyReceivedEvent;
import org.bigbluebutton.core.events.SwitchedLayoutEvent;
import org.bigbluebutton.core.model.LiveMeeting;
+ import org.bigbluebutton.core.model.Meeting;
+ import org.bigbluebutton.core.model.MeetingBuilder;
+ import org.bigbluebutton.core.model.MeetingBuilder2x;
import org.bigbluebutton.core.vo.LockSettingsVO;
import org.bigbluebutton.main.events.AppVersionEvent;
import org.bigbluebutton.main.events.BBBEvent;
@@ -171,7 +174,7 @@ with BigBlueButton; if not, see .
[Bindable] private var showToolbarOpt:Boolean = true;
[Bindable] private var _showToolbar:Boolean = true;
- private const DEFAULT_TOOLBAR_HEIGHT:Number = 50;
+ public static const DEFAULT_TOOLBAR_HEIGHT:Number = 50;
[Bindable] private var toolbarHeight:Number = DEFAULT_TOOLBAR_HEIGHT;
[Bindable] private var showFooterOpt:Boolean = true;
[Bindable] private var _showFooter:Boolean = true;
@@ -623,7 +626,10 @@ with BigBlueButton; if not, see .
private function updateToolbarHeight():void {
if (toolbarHeight != 0) {
- toolbarHeight = Math.max(DEFAULT_TOOLBAR_HEIGHT, toolbar.logo.height + toolbar.quickLinks.includeInLayout ? toolbar.quickLinks.height : 0);
+ toolbarHeight = DEFAULT_TOOLBAR_HEIGHT;
+ if (toolbar.quickLinks.includeInLayout) {
+ toolbarHeight += toolbar.quickLinks.height;
+ }
if (UsersUtil.isBreakout()) {
toolbarHeight += toolbar.breakoutRibbon.height;
}
@@ -677,6 +683,7 @@ with BigBlueButton; if not, see .
var ls:LockSettings = LockSettings(popUp);
ls.disableCam = lsv.getDisableCam();
ls.disableMic = lsv.getDisableMic();
+ ls.webcamsOnlyForModerator = LiveMeeting.inst().meeting.webcamsOnlyForModerator;
ls.disablePrivChat = lsv.getDisablePrivateChat();
ls.disablePubChat = lsv.getDisablePublicChat();
ls.lockedLayout = lsv.getLockedLayout();
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/MainToolbar.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/MainToolbar.mxml
index 7a9a5a56da73..5ba8cf37f70a 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/MainToolbar.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/MainToolbar.mxml
@@ -145,7 +145,7 @@ with BigBlueButton; if not, see .
if (!Accessibility.active) {
quickLinks.removeAllChildren();
} else {
- quickLinks.includeInLayout = true;
+ quickLinks.visible = quickLinks.includeInLayout = true;
}
}
@@ -172,14 +172,14 @@ with BigBlueButton; if not, see .
break;
}
}
-
+
public function displayToolbar():void{
if (toolbarOptions.showToolbar) {
showToolbar = true;
} else {
showToolbar = false;
}
-
+
if (toolbarOptions.showHelpButton) {
showHelpBtn = true;
} else {
@@ -212,24 +212,19 @@ with BigBlueButton; if not, see .
logo.source = LiveMeeting.inst().meeting.customLogo;
}
- if (UsersUtil.isBreakout()) {
- breakoutRibbon.visible = breakoutRibbon.includeInLayout = true;
- var sequence:String = StringUtils.substringAfterLast(UsersUtil.getMeetingName(), " ");
- sequence = StringUtils.substringBefore(sequence, ")");
- breakoutLabel.text = ResourceUtil.getInstance().getString("bbb.users.breakout.youareinroom", [sequence]);
- }
+ initBreakoutRibbon();
if (LiveMeeting.inst().meeting.logoutTimer > 0 ) {
idleLogoutButton.startTimer(LiveMeeting.inst().meeting.logoutTimer);
} else {
rightBox.removeChild(idleLogoutButton);
}
-
+
initBanner();
logFlashPlayerCapabilities();
}
-
+
private function initBanner() : void {
if (!StringUtils.isEmpty(LiveMeeting.inst().meeting.bannerText)) {
banner.visible = banner.includeInLayout = true;
@@ -237,6 +232,15 @@ with BigBlueButton; if not, see .
bannerLabel.text = LiveMeeting.inst().meeting.bannerText;
}
}
+
+ private function initBreakoutRibbon() : void {
+ if (UsersUtil.isBreakout()) {
+ breakoutRibbon.visible = breakoutRibbon.includeInLayout = true;
+ var sequence:String = StringUtils.substringAfterLast(UsersUtil.getMeetingName(), " ");
+ sequence = StringUtils.substringBefore(sequence, ")");
+ breakoutLabel.text = ResourceUtil.getInstance().getString("bbb.users.breakout.youareinroom", [sequence]);
+ }
+ }
private function refreshModeratorButtonsVisibility(e:*):void {
showRecordButton = LiveMeeting.inst().meeting.recorded && UsersUtil.amIModerator();
@@ -376,9 +380,9 @@ with BigBlueButton; if not, see .
else if (event.module == "Microphone"){
addedPhoneMicrophone.addChild(event.button as UIComponent);
}
- else if (event.module == "MuteMicrophone"){
- addedMuteMicrophone.addChild(event.button as UIComponent);
- }
+ else if (event.module == "MuteMicrophone"){
+ addedMuteMicrophone.addChild(event.button as UIComponent);
+ }
else if (event.module == "Webcam"){
addedBtnsWebcam.addChild(event.button as UIComponent);
}
@@ -436,6 +440,8 @@ with BigBlueButton; if not, see .
}
btnLogout.styleName = "logoutButtonStyle" + styleNameExt;
+
+ initBreakoutRibbon();
}
private function openSettings(e:Event = null):void{
@@ -531,13 +537,13 @@ with BigBlueButton; if not, see .
tabIndices="{[recordBtn, webRTCAudioStatus, shortcutKeysBtn, helpBtn, btnLogout]}"/>
-
+
@@ -554,11 +560,11 @@ with BigBlueButton; if not, see .
-
+
-
+
@@ -587,7 +593,7 @@ with BigBlueButton; if not, see .
-
+
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/StarRating.as b/bigbluebutton-client/src/org/bigbluebutton/main/views/StarRating.as
new file mode 100644
index 000000000000..eb55174fb4f5
--- /dev/null
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/StarRating.as
@@ -0,0 +1,85 @@
+/**
+ * BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
+ *
+ * Copyright (c) 2018 BigBlueButton Inc. and by respective authors (see below).
+ *
+ * This program is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free Software
+ * Foundation; either version 3.0 of the License, or (at your option) any later
+ * version.
+ *
+ * BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License along
+ * with BigBlueButton; if not, see .
+ *
+ */
+package org.bigbluebutton.main.views {
+ import flash.events.MouseEvent;
+
+ import mx.containers.HBox;
+ import mx.containers.VBox;
+ import mx.controls.Image;
+ import mx.core.UIComponent;
+
+ import org.as3commons.lang.StringUtils;
+
+ public class StarRating extends HBox {
+
+ [Bindable]
+ public var rating:int = 0;
+
+ private function setRating(value:int):void {
+ rating = value;
+ }
+
+ override protected function createChildren():void {
+ super.createChildren();
+
+ for (var i:int = 1; i <= 5; i++) {
+ addStar(i);
+ }
+ }
+
+ private function addStar(index:int):void {
+ var starBox:VBox = new VBox();
+ starBox.id = "starBox" + index;
+ starBox.styleName = "starBoxStyle";
+ starBox.width = 50;
+ starBox.addEventListener(MouseEvent.MOUSE_OVER, starBoxMouseOverHandler);
+ starBox.addEventListener(MouseEvent.MOUSE_OUT, starBoxMouseOutHandler);
+ starBox.addEventListener(MouseEvent.CLICK, starBoxClickHandler);
+ var starImage:Image = new Image();
+ starImage.source = getStyle('emptyStar');
+ starBox.addChild(starImage);
+ this.addChild(starBox);
+ }
+
+ private function starBoxMouseOverHandler(event:MouseEvent):void {
+ fillStars(getCurrentBoxIndex(event.currentTarget as UIComponent));
+ }
+
+ private function starBoxMouseOutHandler(event:MouseEvent):void {
+ fillStars(rating);
+ }
+
+ private function fillStars(max:int):void {
+ for (var i:int = 1; i <= max; i++) {
+ Image(VBox(getChildAt(i - 1)).getChildAt(0)).source = getStyle('filledStar');
+ }
+ for (var j:int = max + 1; j <= numChildren; j++) {
+ Image(VBox(getChildAt(j - 1)).getChildAt(0)).source = getStyle('emptyStar');
+ }
+ }
+
+ private function starBoxClickHandler(event:MouseEvent):void {
+ setRating(getCurrentBoxIndex(event.currentTarget as UIComponent));
+ }
+
+ private function getCurrentBoxIndex(component:UIComponent):int {
+ return parseInt(StringUtils.remove(component.id, "starBox"));
+ }
+ }
+}
diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/views/WebRTCEchoTest.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/views/WebRTCEchoTest.mxml
index e0d4a8849221..982e0d5ed375 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/main/views/WebRTCEchoTest.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/main/views/WebRTCEchoTest.mxml
@@ -41,7 +41,9 @@ with BigBlueButton; if not, see .
.
import org.bigbluebutton.modules.phone.events.WebRTCJoinedVoiceConferenceEvent;
import org.bigbluebutton.modules.phone.models.Constants;
import org.bigbluebutton.modules.phone.models.PhoneModel;
+ import org.bigbluebutton.util.browser.BrowserCheck;
import org.bigbluebutton.util.i18n.ResourceUtil;
private static const LOGGER:ILogger = getClassLogger(WebRTCEchoTest);
@@ -169,9 +172,17 @@ with BigBlueButton; if not, see .
}
private function webRTCEchoTestStarted():void {
- setCurrentState("started");
- stopTimers();
+ var timeOut : Number = 50;
+ if ( BrowserCheck.isFirefox() ) {
+ timeOut = 1000;
+ }
+ setTimeout(setStartedState, timeOut);
}
+
+ private function setStartedState():void {
+ setCurrentState("started");
+ stopTimers();
+ }
private function handleWebRTCEchoTestEndedEvent(e:WebRTCEchoTestEvent):void {
webRTCEchoTestEnded();
diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatMessageRenderer.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatMessageRenderer.mxml
index 67b8def7b048..4bd8a6d6bc7e 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatMessageRenderer.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/modules/chat/views/ChatMessageRenderer.mxml
@@ -33,6 +33,8 @@ with BigBlueButton; if not, see .
import org.as3commons.logging.api.ILogger;
import org.as3commons.logging.api.getClassLogger;
+ import org.bigbluebutton.common.Role;
+ import org.bigbluebutton.core.UsersUtil;
private static const LOGGER:ILogger = getClassLogger(ChatMessageRenderer);
@@ -40,9 +42,9 @@ with BigBlueButton; if not, see .
LOGGER.debug("Clicked on link[{0}] from chat", [e.text]);
if (ExternalInterface.available) {
ExternalInterface.call("chatLinkClicked", e.text);
- }
+ }
}
-
+
//private function dataChangeHandler(e:Event = null):void{
override public function set data(value:Object):void {
//if (data == null) {
@@ -63,6 +65,13 @@ with BigBlueButton; if not, see .
//remove the header if not needed to save space
hbHeader.includeInLayout = hbHeader.visible = lblName.visible || lblTime.visible;
+ if (data.hasOwnProperty("senderId") && UsersUtil.getUser(data.senderId) && UsersUtil.getUser(data.senderId).role == Role.MODERATOR) {
+ hbHeader.styleName = "chatMessageHeaderModerator";
+ if (lblName.visible) {
+ moderatorIcon.visible = true;
+ }
+ }
+
// If you remove this some of the chat messages will fail to render
validateNow();
}
@@ -76,10 +85,13 @@ with BigBlueButton; if not, see .
]]>
-