Merge branch 'master' into merge-master-with-new-polling-feature-branch

Conflicts:
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/BigBlueButtonApplication.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/ParticipantUpdatingRoomListener.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/Room.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/RoomsManager.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/messaging/MessagingConstants.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/participants/ParticipantsApplication.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/participants/ParticipantsEventSender.java
	bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/participants/ParticipantsService.java
	bigbluebutton-apps/src/main/webapp/WEB-INF/bbb-apps.xml
	bigbluebutton-client/src/org/bigbluebutton/main/model/users/UserService.as
	bigbluebutton-client/src/org/bigbluebutton/main/model/users/UsersSOService.as
	bigbluebutton-client/src/org/bigbluebutton/modules/present/ui/views/SlideView.mxml
This commit is contained in:
Richard Alam 2014-01-30 16:50:09 +00:00
commit c9f7996128
199 changed files with 5145 additions and 1947 deletions

View File

@ -31,7 +31,7 @@ Author: Marcos Calderon <mcmarkos86@gmail.com>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Join Demo Meeting using Mozilla Persona</title>
<script src="https://browserid.org/include.js" type="text/javascript"></script>
<script src="https://login.persona.org/include.js" type="text/javascript"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
@ -109,7 +109,7 @@ function loggedIn(res){
String data = URLEncoder.encode("assertion", "UTF-8") + "=" + URLEncoder.encode(request.getParameter("assertion"), "UTF-8");
data += "&" + URLEncoder.encode("audience", "UTF-8") + "=" + URLEncoder.encode(BigBlueButtonURL.replace("/bigbluebutton/",""),"UTF-8");
URL urlBrowserID = new URL("https://browserid.org/verify");
URL urlBrowserID = new URL("https://verifier.login.persona.org/verify");
URLConnection conn = urlBrowserID.openConnection();

View File

@ -357,7 +357,7 @@ class ToolController {
' http://www.imsglobal.org/xsd/imsbasiclti_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imsbasiclti_v1p0.xsd' +
' http://www.imsglobal.org/xsd/imslticm_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticm_v1p0.xsd' +
' http://www.imsglobal.org/xsd/imslticp_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticp_v1p0.xsd">' +
' <blti:title>ePortfolio</blti:title>' +
' <blti:title>BigBlueButton</blti:title>' +
' <blti:description>Single Sign On into BigBlueButton</blti:description>' +
' <blti:launch_url>' + ltiService.retrieveBasicLtiEndpoint() + '</blti:launch_url>' +
' <blti:icon>' + ltiService.retrieveIconEndpoint() + '</blti:icon>' +

View File

@ -18,10 +18,12 @@
*/
package org.bigbluebutton.conference;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import org.red5.server.api.Red5;
import org.bigbluebutton.conference.meeting.messaging.red5.ConnectionInvokerService;
import org.bigbluebutton.conference.meeting.messaging.red5.ConnectionInvokerService; import org.bigbluebutton.conference.service.lock.LockSettings;
import org.bigbluebutton.conference.service.participants.ParticipantsApplication;
import org.bigbluebutton.conference.service.recorder.RecorderApplication;
import org.bigbluebutton.core.api.IBigBlueButtonInGW;
@ -138,21 +140,43 @@ public class BigBlueButtonApplication extends MultiThreadedApplicationAdapter {
String externalUserID = ((String) params[5]).toString();
String internalUserID = ((String) params[6]).toString();
Boolean locked = false;
if(params.length >= 7 && ((Boolean) params[7])) {
locked = true;
}
Boolean muted = false;
if(params.length >= 8 && ((Boolean) params[8])) {
muted = true;
}
Map<String, Boolean> lsMap = null;
if(params.length >= 9) {
try{
lsMap = (Map<String, Boolean> ) params[9];
}catch(Exception e){
lsMap = new HashMap<String, Boolean>();
}
}
if (record == true) {
recorderApplication.createRecordSession(room);
}
BigBlueButtonSession bbbSession = new BigBlueButtonSession(room, internalUserID, username, role,
voiceBridge, record, externalUserID);
voiceBridge, record, externalUserID, muted);
connection.setAttribute(Constants.SESSION, bbbSession);
connection.setAttribute("INTERNAL_USER_ID", internalUserID);
String debugInfo = "internalUserID=" + internalUserID + ",username=" + username + ",role=" + role + "," +
",voiceConf=" + voiceBridge + ",room=" + room + ",externalUserid=" + externalUserID;
log.debug("User [{}] connected to room [{}]", debugInfo, room);
// bbbGW.createMeeting2(room, record, voiceBridge);
participantsApplication.createRoom(room, locked, new LockSettings(lsMap));
connInvokerService.addConnection(bbbSession.getInternalUserID(), connection);

View File

@ -27,10 +27,11 @@ public class BigBlueButtonSession {
private final String voiceBridge;
private final Boolean record;
private final String externalUserID;
private final Boolean startAsMuted;
public BigBlueButtonSession(String room, String internalUserID, String username,
String role, String voiceBridge, Boolean record,
String externalUserID){
String externalUserID, Boolean startAsMuted){
this.internalUserID = internalUserID;
this.username = username;
this.role = role;
@ -38,6 +39,7 @@ public class BigBlueButtonSession {
this.voiceBridge = voiceBridge;
this.record = record;
this.externalUserID = externalUserID;
this.startAsMuted = startAsMuted;
}
public String getUsername() {
@ -67,4 +69,8 @@ public class BigBlueButtonSession {
public String getExternUserID() {
return externalUserID;
}
public Boolean getStartAsMuted() {
return startAsMuted;
}
}

View File

@ -20,12 +20,16 @@
package org.bigbluebutton.conference;
import java.util.ArrayList;
import java.util.Map;
public interface IRoomListener {
public String getName();
public void lockSettingsChange(Map<String, Boolean> lockSettings);
public void participantStatusChange(User p, String status, Object value);
public void participantJoined(User participant);
public void participantLeft(User participant);
public void assignPresenter(ArrayList<String> presenter);
public void endAndKickAll();
public void recordingStatusChange(User p, Boolean recording);
}

View File

@ -21,6 +21,8 @@ package org.bigbluebutton.conference;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.red5.server.api.so.ISharedObject;
public class RoomListener implements IRoomListener{
@ -64,5 +66,20 @@ public class RoomListener implements IRoomListener{
public void endAndKickAll() {
// no-op
}
@Override
public void lockSettingsChange(Map<String, Boolean> lockSettings) {
List list = new ArrayList();
list.add(lockSettings);
so.sendMessage("lockSettingsChange", list);
}
@SuppressWarnings("unchecked")
public void recordingStatusChange(User p, Boolean recording){
List list = new ArrayList();
list.add(p.getInternalUserID());
list.add(recording);
so.sendMessage("recordingStatusChange", list);
}
}

View File

@ -39,13 +39,14 @@ public class User implements Serializable {
private final Map<String, Object> status;
private Map<String, Object> unmodifiableStatus;
public User(String internalUserID, String name, String role, String externalUserID, Map<String, Object> status) {
public User(String internalUserID, String name, String role, String externalUserID, Map<String, Object> status, Boolean locked) {
this.internalUserID = internalUserID;
this.name = name;
this.role = role;
this.externalUserID = externalUserID;
this.status = new ConcurrentHashMap<String, Object>(status);
unmodifiableStatus = Collections.unmodifiableMap(status);
setStatus("locked", locked);
}
public boolean isModerator() {
@ -116,4 +117,8 @@ public class User implements Serializable {
m.put("status", new HashMap<String, Object>(unmodifiableStatus));
return m;
}
public Boolean isLocked() {
return ((Boolean) getStatus().get("locked") );
}
}

View File

@ -0,0 +1,153 @@
/**
* 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 <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.conference.service.lock;
import java.util.ArrayList;
import java.util.Map;
import org.bigbluebutton.conference.BigBlueButtonSession;
import org.bigbluebutton.conference.Constants;
import org.bigbluebutton.conference.service.participants.ParticipantsApplication;
import org.red5.logging.Red5LoggerFactory;
import org.red5.server.api.Red5;
import org.slf4j.Logger;
public class LockService {
private static Logger log = Red5LoggerFactory.getLogger( LockService.class, "bigbluebutton" );
private ParticipantsApplication application;
private final static Boolean lockModerators = true;
/**
* Internal function used to get the session
* */
private BigBlueButtonSession getBbbSession() {
return (BigBlueButtonSession) Red5.getConnectionLocal().getAttribute(Constants.SESSION);
}
/**
* Internal function used to set participants application (from xml)
* */
public void setParticipantsApplication(ParticipantsApplication a) {
log.debug("Setting Participants Applications");
application = a;
}
/**
* Called from client to get lock settings for this room.
* */
public Map<String, Boolean> getLockSettings(){
String roomID = getBbbSession().getRoom();
// RoomsManager rm = application.getRoomsManager();
// Room room = rm.getRoom(roomID);
// return room.getLockSettings().toMap();
return null;
}
/**
* Called from client to get lock settings for this room.
*
* If room don't have any lock settings, it applies the defaultSettings
* sent from client (came from config.xml).
*
* Returns the new lock settings for the room.
* */
public void setLockSettings(Map<String, Boolean> newSettings){
// String roomID = getBbbSession().getRoom();
// RoomsManager rm = application.getRoomsManager();
// Room room = rm.getRoom(roomID);
// room.setLockSettings(new LockSettings(newSettings));
//Send notification to clients
}
/**
* Method called from client on connect to know if the room is locked or not
* */
public boolean isRoomLocked(){
// String roomID = getBbbSession().getRoom();
// RoomsManager rm = application.getRoomsManager();
// Room room = rm.getRoom(roomID);
// return room.isLocked();
return false;
}
/**
* This method locks (or unlocks), based on lock parameter
* all users but the users listed in array dontLockTheseUsers
* */
public void setAllUsersLock(Boolean lock, ArrayList<String> dontLockTheseUsers){
log.debug("setAllUsersLock ({}, {})", new Object[] { lock, dontLockTheseUsers });
/*
String roomID = getBbbSession().getRoom();
RoomsManager rm = application.getRoomsManager();
Room room = rm.getRoom(roomID);
room.setLocked(lock);
Map<String, User> roomUserMap = application.getParticipants(roomID);
Collection<User> allUsers = roomUserMap.values();
for(User user : allUsers) {
if(lock && user.isModerator() && !room.getLockSettings().getAllowModeratorLocking()){
log.debug("setAllUsersLock::Will not set lock for user " + user.getInternalUserID()+" because it's a moderator and allowModeratorLocking is false");
continue;
}
//Don't lock users listed in dontLockTheseUsers array
if(lock && dontLockTheseUsers.contains(user.getInternalUserID())){
log.debug("setAllUsersLock::Will not lock user " + user.getInternalUserID());
continue;
}
log.debug("setAllUsersLock::Will lock user " + user.getInternalUserID());
application.setParticipantStatus(roomID, user.getInternalUserID(), "locked", lock);
}
*/
}
/**
* This method locks or unlocks a specific user
* */
public void setUserLock(Boolean lock, String internalUserID){
log.debug("setUserLock ({}, {}, {})", new Object[] { lock, internalUserID });
/*
String roomID = getBbbSession().getRoom();
Map<String, User> roomUserMap = application.getParticipants(roomID);
User user = null;
if((user = roomUserMap.get(internalUserID)) != null) {
RoomsManager rm = application.getRoomsManager();
Room room = rm.getRoom(roomID);
if(lock && user.isModerator() && !room.getLockSettings().getAllowModeratorLocking()){
log.debug("setUserLock::Will not set lock for user " + user.getInternalUserID()+" because it's a moderator and allowModeratorLocking is false");
return;
}
application.setParticipantStatus(roomID, user.getInternalUserID(), "locked", lock);
}
*/
}
}

View File

@ -0,0 +1,114 @@
/**
* 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 <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.conference.service.lock;
import java.util.HashMap;
import java.util.Map;
public class LockSettings {
private Boolean allowModeratorLocking;
private Boolean disableCam;
private Boolean disableMic;
private Boolean disablePrivateChat;
private Boolean disablePublicChat;
/**
* Read a map object received from client
* */
public LockSettings(Map<String, Boolean> lsMap) {
if(lsMap.containsKey("allowModeratorLocking"))
allowModeratorLocking = lsMap.get("allowModeratorLocking");
else
allowModeratorLocking = true;
if(lsMap.containsKey("disableCam"))
disableCam = lsMap.get("disableCam");
else
disableCam = true;
if(lsMap.containsKey("disableMic"))
disableMic = lsMap.get("disableMic");
else
disableMic = true;
if(lsMap.containsKey("disablePrivateChat"))
disablePrivateChat = lsMap.get("disablePrivateChat");
else
disablePrivateChat = true;
if(lsMap.containsKey("disablePublicChat"))
disablePublicChat = lsMap.get("disablePublicChat");
else
disablePublicChat = true;
}
/**
* Create a map object to be sent to client
* */
public Map<String, Boolean> toMap() {
HashMap<String, Boolean> lsMap = new HashMap<String, Boolean>();
lsMap.put("allowModeratorLocking", allowModeratorLocking);
lsMap.put("disableCam", disableCam);
lsMap.put("disableMic", disableMic);
lsMap.put("disablePrivateChat", disablePrivateChat);
lsMap.put("disablePublicChat", disablePublicChat);
return lsMap;
}
public Boolean getDisableMic() {
return disableMic;
}
public void setDisableMic(Boolean disableMic) {
this.disableMic = disableMic;
}
public Boolean getDisableCam() {
return disableCam;
}
public void setDisableCam(Boolean disableCam) {
this.disableCam = disableCam;
}
public Boolean getDisablePublicChat() {
return disablePublicChat;
}
public void setDisablePublicChat(Boolean disablePublicChat) {
this.disablePublicChat = disablePublicChat;
}
public Boolean getDisablePrivateChat() {
return disablePrivateChat;
}
public void setDisablePrivateChat(Boolean disablePrivateChat) {
this.disablePrivateChat = disablePrivateChat;
}
public Boolean getAllowModeratorLocking() {
return allowModeratorLocking;
}
public void setAllowModeratorLocking(Boolean allowModeratorLocking) {
this.allowModeratorLocking = allowModeratorLocking;
}
}

View File

@ -38,7 +38,7 @@ public class MessagingConstants {
public static final String MEETING_ENDED_EVENT = "MeetingEndedEvent";
public static final String USER_JOINED_EVENT = "UserJoinedEvent";
public static final String USER_LEFT_EVENT = "UserLeftEvent";
public static final String USER_STATUS_CHANGE_EVENT = "UserStatusChangeEvent";
public static final String SEND_POLLS_EVENT = "SendPollsEvent";
public static final String USER_STATUS_CHANGE_EVENT = "UserStatusChangeEvent";
public static final String SEND_POLLS_EVENT = "SendPollsEvent";
public static final String RECORD_STATUS_EVENT = "RecordStatusEvent";
}

View File

@ -21,17 +21,45 @@ package org.bigbluebutton.conference.service.participants;
import org.slf4j.Logger;
import org.red5.logging.Red5LoggerFactory;
import java.util.Map; import org.bigbluebutton.core.api.IBigBlueButtonInGW;
import org.bigbluebutton.conference.service.lock.LockSettings;
public class ParticipantsApplication {
private static Logger log = Red5LoggerFactory.getLogger( ParticipantsApplication.class, "bigbluebutton" );
private IBigBlueButtonInGW bbbInGW;
public boolean createRoom(String name, Boolean locked, LockSettings lockSettings) {
// if(!roomsManager.hasRoom(name)){
// log.info("Creating room " + name);
// roomsManager.addRoom(new Room(name, locked, lockSettings));
// return true;
// }
return false;
}
public boolean destroyRoom(String name) {
// if (roomsManager.hasRoom(name)) {
// log.info("Destroying room " + name);
// roomsManager.removeRoom(name);
// } else {
// log.warn("Destroying non-existing room " + name);
// }
return true;
}
public void destroyAllRooms() {
// roomsManager.destroyAllRooms();
}
public boolean hasRoom(String name) {
// return roomsManager.hasRoom(name);
return false;
}
public void setParticipantStatus(String room, String userid, String status, Object value) {
bbbInGW.setUserStatus(room, userid, status, value);
}
public boolean participantLeft(String roomName, String userid) {
log.debug("Participant " + userid + " leaving room " + roomName);
bbbInGW.userLeft(userid, userid);
@ -40,9 +68,36 @@ public class ParticipantsApplication {
}
public boolean participantJoin(String roomName, String userid, String username, String role, String externUserID, Map status) {
bbbInGW.userJoin(roomName, userid, username, role, externUserID);
return true;
/*
log.debug("participant joining room " + roomName);
if (roomsManager.hasRoom(roomName)) {
Room room = roomsManager.getRoom(roomName);
Boolean userLocked = false;
LockSettings ls = room.getLockSettings();
if(room.isLocked()) {
//If room is locked and it's not a moderator, user join as locked
if(!"MODERATOR".equals(role))
userLocked = true;
else {
//If it's a moderator, check for lockSettings
if(ls.getAllowModeratorLocking()) {
userLocked = true;
}
}
}
User p = new User(userid, username, role, externUserID, status, userLocked);
room.addParticipant(p);
log.debug("participant joined room " + roomName);
return true;
*/
}
public void assignPresenter(String room, String newPresenterID, String newPresenterName, String assignedBy){
@ -56,5 +111,13 @@ public class ParticipantsApplication {
public void setBigBlueButtonInGW(IBigBlueButtonInGW inGW) {
bbbInGW = inGW;
}
public void setRecordingStatus(String room, String userid, Boolean recording) {
// roomsManager.changeRecordingStatus(room, userid, recording);
}
public Boolean getRecordingStatus(String roomName) {
// return roomsManager.getRecordingStatus(roomName);
return true;
}
}

View File

@ -60,4 +60,16 @@ public class ParticipantsService {
private BigBlueButtonSession getBbbSession() {
return (BigBlueButtonSession) Red5.getConnectionLocal().getAttribute(Constants.SESSION);
}
public void setRecordingStatus(String userid, Boolean recording) {
String roomName = Red5.getConnectionLocal().getScope().getName();
log.debug("Setting recording status " + roomName + " " + userid + " " + recording);
application.setRecordingStatus(roomName, userid, recording);
}
public Boolean getRecordingStatus() {
String roomName = Red5.getConnectionLocal().getScope().getName();
log.info("Client is requesting the recording status in [" + roomName + "].");
return application.getRecordingStatus(roomName);
}
}

View File

@ -19,6 +19,8 @@
package org.bigbluebutton.conference.service.recorder.participants;
import java.util.ArrayList;
import java.util.Map;
import org.bigbluebutton.conference.IRoomListener;
import org.bigbluebutton.conference.User;
import org.bigbluebutton.conference.service.recorder.RecorderApplication;
@ -98,4 +100,19 @@ public class ParticipantsEventRecorder implements IRoomListener {
return this.name;
}
@Override
public void lockSettingsChange(Map<String, Boolean> lockSettings) {
}
@Override
public void recordingStatusChange(User p, Boolean recording) {
RecordStatusRecordEvent ev = new RecordStatusRecordEvent();
ev.setTimestamp(System.currentTimeMillis());
ev.setUserId(p.getInternalUserID());
ev.setMeetingId(session);
ev.setRecordingStatus(recording.toString());
recorder.record(session, ev);
}
}

View File

@ -0,0 +1,35 @@
/**
* 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 <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.conference.service.recorder.participants;
public class RecordStatusRecordEvent extends AbstractParticipantRecordEvent {
public RecordStatusRecordEvent() {
super();
setEvent("RecordStatusEvent");
}
public void setUserId(String userId) {
eventMap.put("userId", userId);
}
public void setRecordingStatus(String status) {
eventMap.put("status", status);
}
}

View File

@ -113,6 +113,7 @@ public class VoiceHandler extends ApplicationAdapter implements IApplication{
String voiceBridge = getBbbSession().getVoiceBridge();
String meetingid = getBbbSession().getRoom();
Boolean record = getBbbSession().getRecord();
Boolean muted = getBbbSession().getStartAsMuted();
if (!connection.getScope().hasAttribute(VOICE_BRIDGE)) {
connection.getScope().setAttribute(VOICE_BRIDGE, getBbbSession().getVoiceBridge());
@ -120,7 +121,7 @@ public class VoiceHandler extends ApplicationAdapter implements IApplication{
log.debug("Setting up voiceBridge " + voiceBridge);
clientManager.addSharedObject(connection.getScope().getName(), voiceBridge, so);
conferenceService.createConference(voiceBridge, meetingid, record);
conferenceService.createConference(voiceBridge, meetingid, record, muted);
return true;
}

View File

@ -17,12 +17,19 @@
*
*/
package org.bigbluebutton.conference.service.voice;
import org.slf4j.Logger; import org.red5.server.api.Red5; import org.bigbluebutton.conference.BigBlueButtonSession; import org.bigbluebutton.conference.Constants; import org.red5.logging.Red5LoggerFactory;
import org.bigbluebutton.webconference.voice.ConferenceService; import java.util.ArrayList; import java.util.HashMap;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.bigbluebutton.webconference.voice.Participant;
import org.bigbluebutton.conference.BigBlueButtonSession;
import org.bigbluebutton.conference.Constants;
import org.bigbluebutton.webconference.voice.ConferenceService;
import org.bigbluebutton.webconference.voice.Participant;
import org.red5.logging.Red5LoggerFactory;
import org.red5.server.api.Red5;
import org.slf4j.Logger;
public class VoiceService {
private static Logger log = Red5LoggerFactory.getLogger( VoiceService.class, "bigbluebutton" );
@ -59,7 +66,6 @@ public class VoiceService {
pmap.put("name", p.getName());
pmap.put("muted", p.isMuted());
pmap.put("talking", p.isTalking());
pmap.put("locked", p.isMuteLocked());
log.debug("[" + p.getId() + "," + p.getName() + "," + p.isMuted() + "," + p.isTalking() + "]");
result.put(p.getId(), pmap);
}
@ -67,11 +73,17 @@ public class VoiceService {
return result;
}
public void muteAllUsers(boolean mute, List<Integer> dontMuteThese) {
String conference = getBbbSession().getVoiceBridge();
log.debug("Mute all users in room[" + conference + "], dontLockThese list size = " + dontMuteThese.size());
conferenceService.muteAllBut(conference, mute, dontMuteThese);
}
public void muteAllUsers(boolean mute) {
String conference = getBbbSession().getVoiceBridge();
log.debug("Mute all users in room[" + conference + "]");
conferenceService.mute(conference, mute);
}
}
public boolean isRoomMuted(){
String conference = getBbbSession().getVoiceBridge();
@ -83,12 +95,6 @@ public class VoiceService {
log.debug("MuteUnmute request for user [" + userid + "] in room[" + conference + "]");
conferenceService.mute(userid, conference, mute);
}
public void lockMuteUser(Integer userid, Boolean lock) {
String conference = getBbbSession().getVoiceBridge();
log.debug("Lock request for user [" + userid + "] in room[" + conference + "]");
conferenceService.lock(userid, conference, lock);
}
public void kickUSer(Integer userid) {
String conference = getBbbSession().getVoiceBridge();

View File

@ -22,10 +22,10 @@ import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import org.bigbluebutton.webconference.voice.events.ConferenceEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantJoinedEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantLeftEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantLockedEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantMutedEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantTalkingEvent;
import org.red5.logging.Red5LoggerFactory;
@ -55,7 +55,7 @@ public class ClientManager implements ClientNotifier {
if (soi != null) voiceRooms.remove(soi.getVoiceRoom());
}
private void joined(String room, Integer participant, String name, Boolean muted, Boolean talking, Boolean locked){
private void joined(String room, Integer participant, String name, Boolean muted, Boolean talking){
log.debug("Participant " + name + "joining room " + room);
RoomInfo soi = voiceRooms.get(room);
if (soi != null) {
@ -65,7 +65,7 @@ public class ClientManager implements ClientNotifier {
list.add(name);
list.add(muted);
list.add(talking);
list.add(locked);
log.debug("Sending join to client " + name);
soi.getSharedObject().sendMessage("userJoin", list);
}
@ -92,17 +92,6 @@ public class ClientManager implements ClientNotifier {
}
}
private void locked(String room, Integer participant, Boolean locked){
log.debug("Participant " + participant + " is locked = " + locked);
RoomInfo soi = voiceRooms.get(room);
if (soi != null) {
List<Object> list = new ArrayList<Object>();
list.add(participant);
list.add(locked);
soi.getSharedObject().sendMessage("userLockedMute", list);
}
}
private void talking(String room, Integer participant, Boolean talking){
log.debug("Participant " + participant + " is talking = " + talking);
RoomInfo soi = voiceRooms.get(room);
@ -117,7 +106,7 @@ public class ClientManager implements ClientNotifier {
public void handleConferenceEvent(ConferenceEvent event) {
if (event instanceof ParticipantJoinedEvent) {
ParticipantJoinedEvent pje = (ParticipantJoinedEvent) event;
joined(pje.getRoom(), pje.getParticipantId(), pje.getCallerIdName(), pje.getMuted(), pje.getSpeaking(), pje.isLocked());
joined(pje.getRoom(), pje.getParticipantId(), pje.getCallerIdName(), pje.getMuted(), pje.getSpeaking());
} else if (event instanceof ParticipantLeftEvent) {
left(event.getRoom(), event.getParticipantId());
} else if (event instanceof ParticipantMutedEvent) {
@ -126,9 +115,6 @@ public class ClientManager implements ClientNotifier {
} else if (event instanceof ParticipantTalkingEvent) {
ParticipantTalkingEvent pte = (ParticipantTalkingEvent) event;
talking(pte.getRoom(), pte.getParticipantId(), pte.isTalking());
} else if (event instanceof ParticipantLockedEvent) {
ParticipantLockedEvent ple = (ParticipantLockedEvent) event;
locked(ple.getRoom(), ple.getParticipantId(), ple.isLocked());
}
}
}

View File

@ -19,10 +19,11 @@
package org.bigbluebutton.webconference.voice;
import java.util.ArrayList;
import java.util.List;
import org.bigbluebutton.webconference.red5.voice.ClientManager;
import org.bigbluebutton.webconference.voice.events.ConferenceEvent;
import org.bigbluebutton.webconference.voice.events.ConferenceEventListener;
import org.bigbluebutton.webconference.voice.events.ParticipantLockedEvent;
import org.bigbluebutton.webconference.voice.internal.RoomManager;
import org.red5.logging.Red5LoggerFactory;
import org.slf4j.Logger;
@ -53,9 +54,9 @@ public class ConferenceService implements ConferenceEventListener {
}
}
public void createConference(String room, String meetingid, boolean record) {
public void createConference(String room, String meetingid, boolean record, boolean muted) {
if (roomMgr.hasRoom(room)) return;
roomMgr.createRoom(room, record, meetingid);
roomMgr.createRoom(room, record, meetingid, muted);
confProvider.populateRoom(room);
}
@ -65,13 +66,6 @@ public class ConferenceService implements ConferenceEventListener {
roomMgr.destroyRoom(room);
}
public void lock(Integer participant, String room, Boolean lock) {
if (roomMgr.hasParticipant(room, participant)) {
ParticipantLockedEvent ple = new ParticipantLockedEvent(participant, room, lock);
handleConferenceEvent(ple);
}
}
public void recordSession(String room, String meetingid){
confProvider.record(room, meetingid);
}
@ -85,29 +79,34 @@ public class ConferenceService implements ConferenceEventListener {
muteParticipant(participant, room, mute);
}
public void mute(String room, Boolean mute) {
public void muteAllBut(String room, Boolean mute, List<Integer> dontMuteThese) {
if (roomMgr.hasRoom(room)) {
roomMgr.mute(room, mute);
ArrayList<Participant> p = getParticipants(room);
for (Participant o : p) {
if (! roomMgr.isParticipantMuteLocked(o.getId(), room)) {
muteParticipant(o.getId(), room, mute);
}
if(dontMuteThese == null || !dontMuteThese.contains(o.getId()))
muteParticipant(o.getId(), room, mute);
}
}
}
public void mute(String room, Boolean mute) {
this.muteAllBut(room, mute, null);
}
public boolean isRoomMuted(String room){
if (roomMgr.hasRoom(room)) {
return roomMgr.isRoomMuted(room);
}
return false;
}
private void muteParticipant(Integer participant, String room, Boolean mute) {
confProvider.mute(room, participant, mute);
}
public void eject(Integer participant, String room) {
if (roomMgr.hasParticipant(room, participant))
ejectParticipant(room, participant);

View File

@ -23,6 +23,5 @@ public interface Participant {
public boolean isTalking();
public int getId();
public String getName();
public boolean isMuteLocked();
public String getUserID();
}

View File

@ -76,7 +76,6 @@ public class VoiceEventRecorder {
evt.setCallerNumber(pje.getCallerIdName());
evt.setMuted(pje.getMuted());
evt.setTalking(pje.getSpeaking());
evt.setLocked(pje.isLocked());
recorder.record(room, evt);
}

View File

@ -24,7 +24,6 @@ public class ParticipantJoinedEvent extends ConferenceEvent {
private final String callerIdName;
private final Boolean muted;
private final Boolean speaking;
private final Boolean locked = false;
public ParticipantJoinedEvent(Integer participantId, String room,
String callerIdNum, String callerIdName,
@ -51,8 +50,4 @@ public class ParticipantJoinedEvent extends ConferenceEvent {
public Boolean getSpeaking() {
return speaking;
}
public Boolean isLocked() {
return locked;
}
}

View File

@ -33,7 +33,6 @@ class ParticipantImp implements Participant {
private final String name;
private boolean muted = false;
private boolean talking = false;
private boolean locked = false;
private final String userID;
@ -76,14 +75,6 @@ class ParticipantImp implements Participant {
return id;
}
public boolean isMuteLocked() {
return locked;
}
public void setLock(boolean lock) {
locked = lock;
}
public String getName() {
return name;
}

View File

@ -24,26 +24,27 @@ import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import net.jcip.annotations.ThreadSafe;
import org.bigbluebutton.webconference.voice.Participant;
import org.bigbluebutton.webconference.voice.Room;
import net.jcip.annotations.ThreadSafe;
@ThreadSafe
public class RoomImp implements Room {
private final String name;
private final ConcurrentMap<Integer, Participant> participants;
private boolean muted = false;
private boolean muted;
private boolean record = false;
private String meetingid;
private boolean recording = false;
public RoomImp(String name, boolean record, String meetingid) {
public RoomImp(String name, boolean record, String meetingid, Boolean muted) {
this.name = name;
this.record = record;
this.meetingid = meetingid;
this.muted = muted;
participants = new ConcurrentHashMap<Integer, Participant>();
}

View File

@ -20,19 +20,20 @@ package org.bigbluebutton.webconference.voice.internal;
import java.util.ArrayList;
import java.util.concurrent.ConcurrentHashMap;
import net.jcip.annotations.ThreadSafe;
import org.bigbluebutton.webconference.voice.ConferenceService;
import org.bigbluebutton.webconference.voice.Participant;
import org.bigbluebutton.webconference.voice.VoiceEventRecorder;
import org.bigbluebutton.webconference.voice.events.ConferenceEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantJoinedEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantLeftEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantLockedEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantMutedEvent;
import org.bigbluebutton.webconference.voice.events.ParticipantTalkingEvent;
import org.bigbluebutton.webconference.voice.events.StartRecordingEvent;
import org.red5.logging.Red5LoggerFactory;
import org.slf4j.Logger;
import net.jcip.annotations.ThreadSafe;
@ThreadSafe
public class RoomManager {
@ -55,9 +56,9 @@ public class RoomManager {
return -1;
}
public void createRoom(String name, boolean record, String meetingid) {
public void createRoom(String name, boolean record, String meetingid, Boolean muted) {
log.debug("Creating room: " + name);
RoomImp r = new RoomImp(name, record, meetingid);
RoomImp r = new RoomImp(name, record, meetingid, muted);
rooms.putIfAbsent(name, r);
}
@ -96,24 +97,6 @@ public class RoomManager {
}
return rm.getParticipants();
}
public boolean isParticipantMuteLocked(Integer participant, String room) {
RoomImp rm = rooms.get(room);
if (rm != null) {
Participant p = rm.getParticipant(participant);
return p.isMuteLocked();
}
return false;
}
private void lockParticipant(String room, Integer participant, Boolean lock) {
RoomImp rm = rooms.get(room);
if (rm != null) {
ParticipantImp p = (ParticipantImp) rm.getParticipant(participant);
if (p != null)
p.setLock(lock);
}
}
/**
* Process the event from the voice conferencing server.
@ -135,8 +118,6 @@ public class RoomManager {
handleParticipantMutedEvent(event, rm);
} else if (event instanceof ParticipantTalkingEvent) {
handleParticipantTalkingEvent(event, rm);
} else if (event instanceof ParticipantLockedEvent) {
handleParticipantLockedEvent(event, rm);
} else if (event instanceof StartRecordingEvent) {
// do nothing but let it through.
// later on we need to dispatch an event to the client that the voice recording has started.
@ -210,11 +191,6 @@ public class RoomManager {
if (p != null) p.setTalking(pte.isTalking());
}
private void handleParticipantLockedEvent(ConferenceEvent event, RoomImp rm) {
ParticipantLockedEvent ple = (ParticipantLockedEvent) event;
lockParticipant(ple.getRoom(), ple.getParticipantId(), ple.isLocked());
}
public void setVoiceEventRecorder(VoiceEventRecorder recorder) {
this.recorder = recorder;
}

View File

@ -48,5 +48,5 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<beans:bean id="voice.service" class="org.bigbluebutton.conference.service.voice.VoiceService">
<beans:property name="conferenceService" ref="conferenceService"/>
</beans:bean>
</beans:beans>

View File

@ -608,3 +608,33 @@ MDIWindow { /*None of the following properties are overridden by the MDIWindow c
{
icon: Embed('assets/images/play-blue.png');
}
.lockSettingsDefaultLabelStyle {
fontFamily: Arial;
fontSize: 14;
fontWeight: bold;
}
.lockSettingsWindowStyle {
borderColor: #000000;
borderAlpha: 1;
borderThicknessLeft: 10;
borderThicknessTop: 0;
borderThicknessBottom: 10;
borderThicknessRight: 10;
roundedBottomCorners: true;
cornerRadius: 5;
headerHeight: 20;
backgroundAlpha: 1;
headerColors: #000000, #000000;
footerColors: #000000, #000000;
backgroundColor: #000000;
dropShadowEnabled: true;
titleStyleName: "micSettingsWindowTitleStyle";
}
.lockSettingsWindowTitleStyle {
fontFamily: Arial;
fontSize: 20;
fontWeight: bold;
}

View File

@ -47,7 +47,7 @@ Panel {
color: #e1e2e5;
}
Button, .logoutButtonStyle, .chatSendButtonStyle, .helpLinkButtonStyle, .cameraDisplaySettingsWindowChangeResolutionCombo, .languageSelectorStyle {
Button, .logoutButtonStyle, .chatSendButtonStyle, .helpLinkButtonStyle, .cameraDisplaySettingsWindowChangeResolutionCombo, .languageSelectorStyle, .testJavaLinkButtonStyle, .recordButtonStyleNormal, .recordButtonStyleStart, .recordButtonStyleStop {
textIndent: 0;
paddingLeft: 10;
paddingRight: 10;
@ -90,6 +90,27 @@ Button, .logoutButtonStyle, .chatSendButtonStyle, .helpLinkButtonStyle, .cameraD
fontWeight: bold;
}
.testJavaLinkButtonStyle {
paddingLeft: 4;
paddingRight: 4;
paddingTop: 2;
paddingBottom: 2;
fontSize: 14;
rollOverColor: #cccccc;
selectionColor: #cccccc;
color: #e3e3e3;
textRollOverColor: #504f46;
textSelectedColor: #504f46;
fontWeight: bold;
textDecoration: none;
}
.javaVersionRequiredLabelStyle {
fontSize: 12;
color: #000000;
fontFamily: Arial;
}
.logoutButtonStyle {
paddingLeft: 0;
paddingRight: 0;
@ -676,10 +697,52 @@ MDIWindow { /*None of the following properties are overridden by the MDIWindow c
}
Alert {
borderColor: #DFDFDF;
backgroundColor: #EFEFEF;
borderColor: #DFDFDF;
backgroundColor: #EFEFEF;
borderAlpha: 1;
shadowDistance: 1;
dropShadowColor: #FFFFFF;
color: #000000;
}
.lockSettingsDefaultLabelStyle {
fontFamily: Arial;
fontSize: 14;
fontWeight: bold;
}
.lockSettingsWindowStyle {
borderColor: #b9babc;
borderAlpha: 1;
shadowDistance: 1;
dropShadowColor: #FFFFFF;
color: #000000;
}
borderThicknessLeft: 10;
borderThicknessTop: 0;
borderThicknessBottom: 10;
borderThicknessRight: 10;
roundedBottomCorners: true;
cornerRadius: 5;
headerHeight: 20;
backgroundAlpha: 1;
headerColors: #b9babc, #b9babc;
footerColors: #b9babc, #b9babc;
backgroundColor: #EFEFEF;
dropShadowEnabled: true;
titleStyleName: "micSettingsWindowTitleStyle";
}
.lockSettingsWindowTitleStyle {
fontFamily: Arial;
fontSize: 20;
fontWeight: bold;
}
.recordButtonStyleNormal {
icon: Embed('assets/images/control-record.png');
}
.recordButtonStyleStart {
icon: Embed('assets/images/control-record-start.png');
}
.recordButtonStyleStop {
icon: Embed('assets/images/control-record-stop.png');
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -22,7 +22,7 @@ Any other questions about this icon set please
contact mjames@gmail.com
==================================================
Diagona Icons
Diagona Icons / Fugue Icons
Copyright (C) 2007 Yusuke Kamiyamane. All rights reserved.
The icons are licensed under a Creative Commons Attribution

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

View File

@ -3,14 +3,14 @@
<project name="BigBlueButton Client" basedir="." default="clean-build-all" >
<property environment="env" />
<property name="STATIC_RSL" value="true" />
<property name="DEBUG" value="true" />
<property name="DEBUG" value="true" />
<property name="BUILD_ENV" value="DEV" />
<property name="FLEX_HOME" value="${env.FLEX_HOME}" />
<property name="LOCALE_DIR" value="${FLEX_HOME}/frameworks/locale"/>
<property name="BASE_DIR" value="${basedir}" />
<property name="themeFile" value="BBBDefault.css"/>
<property name="blackTheme" value="BBBBlack.css"/>
<property name="LOCALE" value="en_US" />
<property name="RESOURCES_DIR" value="${BASE_DIR}/resources" />
<property name="PROD_RESOURCES_DIR" value="${RESOURCES_DIR}/prod" />
<property name="SRC_DIR" value="${BASE_DIR}/src" />
@ -135,6 +135,10 @@
</if>
</sequential>
</target>
<target name="localize">
<compileLocale locale="${LOCALE}" />
</target>
<macrodef name="compileLocale" description="Compiles the Resource package for the given locale">
<attribute name="locale" default="en_US"/>

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.title = İşçi masasını göstər
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Pəncərə paylaşması
bbb.desktopView.fitToWindow = Pəncərə boyda et
bbb.desktopView.actualSize = Aktual ölçüyə gətir

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Спиране на споделянето
bbb.desktopPublish.minimizeBtn.toolTip = Минимизиране
bbb.desktopPublish.minimizeBtn.accessibilityName = Минимизиране на прозореца Публикуване на споделен екран
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Максимизиране на прозореца Публикуване на споделен екран
bbb.desktopPublish.closeBtn.accessibilityName = Спрете споделянето и затворете прозорец Публикуване на споделен екран
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Споделяне на екрана
bbb.desktopView.fitToWindow = Вмести в прозореца
bbb.desktopView.actualSize = Покажи в реален размер

View File

@ -181,7 +181,10 @@ bbb.presentation.ok = ঠিক আছে
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
# bbb.desktopView.title = Desktop Sharing
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Aturar la compartició i tancar aquesta fi
bbb.desktopPublish.minimizeBtn.toolTip = Minimitzar aquesta finestra.
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimitzar la finestra d'iniciar el compartir escriptori
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximitzar la finestra d'iniciar el compartir escriptori
bbb.desktopPublish.closeBtn.accessibilityName = Cancel i Tancar la Finestra de Compartir Escriptori
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Compartició de pantalla
bbb.desktopView.fitToWindow = Ajustar a la finestra
bbb.desktopView.actualSize = Mostrar la mida actual

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Ukončit sdílení a zavřít toto okno.
bbb.desktopPublish.minimizeBtn.toolTip = Minimalizovat toto okno.
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Sdílení plochy
bbb.desktopView.fitToWindow = Přizpůsobit oknu
bbb.desktopView.actualSize = Zobrazit aktuální velikost

View File

@ -0,0 +1,497 @@
bbb.mainshell.locale.version = 0.8
bbb.mainshell.statusProgress.connecting = Cysylltu â'r gweinydd
bbb.mainshell.statusProgress.loading = Llwytho {0} modiwl
bbb.mainshell.statusProgress.cannotConnectServer = Mae'n ddrwg gennym, ni allwn cysylltu â'r gweinydd.
bbb.mainshell.copyrightLabel2 = (c) 2013 BigBlueButton Inc. [build {0}] - Am fwy o wybodaeth ymwelwch <a href\='http\://www.bigbluebutton.org/' target\='_blank'><u>http\://www.bigbluebutton.org</u></a>
bbb.mainshell.logBtn.toolTip = Agor ffenestr cofnodi
bbb.mainshell.resetLayoutBtn.toolTip = Ailosod Gosodiad
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
bbb.micSettings.speakers.header = Gwirio'r Uchelseinydd
bbb.micSettings.microphone.header = Gwirio'r Meicroffon
bbb.micSettings.playSound = Gwirio'r uchelseinydd
bbb.micSettings.playSound.toolTip = Chwarae cerddoriaeth i brofi eich uchelseinydd
bbb.micSettings.hearFromHeadset = Dylech glywed sain yn eich clustffonau, nid drwy uchelseinyddion eich cyfrifiadur.
bbb.micSettings.speakIntoMic = Gwirio neu newid eich meicroffon (argymhellir 'headset').
bbb.micSettings.changeMic = Gwirio neu newid eich meicroffon.
bbb.micSettings.changeMic.toolTip = Agorwch flwch deialog gosodiadau meicroffon Flash Player
bbb.micSettings.join = Ymuno â'r Sain
bbb.micSettings.cancel = Diddymu
bbb.micSettings.cancel.toolTip = Canslo ymuno â'r gynhadledd sain
bbb.micSettings.access.helpButton = Agor fideos tiwtorial mewn tudalen newydd.
bbb.micSettings.access.title = Gosodiadau sain. Bydd y ffocws yn parhau ar y ffenestr gosodiadau sain tra bydd ar agor.
bbb.mainToolbar.helpBtn = Cymorth
bbb.mainToolbar.logoutBtn = Allgofnodi
bbb.mainToolbar.logoutBtn.toolTip = Allgofnodi
bbb.mainToolbar.langSelector = Dewis iaith
bbb.mainToolbar.settingsBtn = Gosodiadau
bbb.mainToolbar.settingsBtn.toolTip = Agor Gosodiadau
bbb.mainToolbar.shortcutBtn = Cymorth Llwybrau Byr
bbb.mainToolbar.shortcutBtn.toolTip = Agor ffenestr Cymorth Llwybrau Byr
bbb.window.minimizeBtn.toolTip = Lleihau
bbb.window.maximizeRestoreBtn.toolTip = Ehangu
bbb.window.closeBtn.toolTip = Cau
bbb.videoDock.titleBar = Bar Teitl y Ffenestr Gwegamera
bbb.presentation.titleBar = Bar Teitl y Ffenestr Cyflwyniad
bbb.chat.titleBar = Bar Teitl y Ffenestr Sgwrsio
bbb.users.title = Defnyddwyr{0} {1}
bbb.users.titleBar = Bar Teitl y Ffenestr Defnyddwyr
bbb.users.quickLink.label = Ffenestr Defnyddwyr
bbb.users.minimizeBtn.accessibilityName = Lleihau Ffenestr Defnyddwyr
bbb.users.maximizeRestoreBtn.accessibilityName = Ehangu Ffenestr Defnyddwyr
bbb.users.settings.buttonTooltip = Gosodiadau
bbb.users.settings.audioSettings = Gosodiadau Sain
bbb.users.settings.webcamSettings = Gosodiadau Gewgamera
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.lowerAllHands = Gostwng Pop Llaw
bbb.users.raiseHandBtn.toolTip = Codi Llaw
bbb.users.pushToTalk.toolTip = Siarad
bbb.users.pushToMute.toolTip = Pylu eich hun
bbb.users.muteMeBtnTxt.talk = Datpylu
bbb.users.muteMeBtnTxt.mute = Pylu
bbb.users.muteMeBtnTxt.muted = Pylwyd
bbb.users.muteMeBtnTxt.unmuted = Datpylwyd
bbb.users.usersGrid.accessibilityName = Rhestr Defnyddwyr. Defnyddiwch y bysellau saeth i lywio.
bbb.users.usersGrid.nameItemRenderer = Enw
bbb.users.usersGrid.nameItemRenderer.youIdentifier = chi
bbb.users.usersGrid.statusItemRenderer = Statws
bbb.users.usersGrid.statusItemRenderer.changePresenter = Newid cyflwynydd
bbb.users.usersGrid.statusItemRenderer.presenter = Cyflwynydd
bbb.users.usersGrid.statusItemRenderer.moderator = Cymedrolwr
bbb.users.usersGrid.statusItemRenderer.lowerHand = Gostwng Llaw
bbb.users.usersGrid.statusItemRenderer.handRaised = Codwyd Llaw
bbb.users.usersGrid.statusItemRenderer.viewer = Gwyliwr
bbb.users.usersGrid.mediaItemRenderer = Cyfrwng
bbb.users.usersGrid.mediaItemRenderer.talking = Siarad
bbb.users.usersGrid.mediaItemRenderer.webcam = Rhannu Gwegamera
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Gweld Gwegamera
bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Datpylu {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Pylu {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Cloi meic {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Datgloi meic {0}
bbb.users.usersGrid.mediaItemRenderer.kickUser = Cicio {0}
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.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 = Agor blwch deialog Llwytho i Fyny Cyflwyniad.
bbb.presentation.backBtn.toolTip = Sleid Blaenorol
bbb.presentation.btnSlideNum.toolTip = Dewiswch slide
bbb.presentation.forwardBtn.toolTip = Sleid nesaf
bbb.presentation.maxUploadFileExceededAlert = Gwall\: Mae'r ffeil yn fwy na'r hyn a ganiateir.
bbb.presentation.uploadcomplete = Llwythwyd i fyny. Arhoswch tra trosir y ddogfen.
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 = Gwall\: Methwyd trosi'r dogfen.
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.
bbb.presentation.error.convert.nbpage = Gwall\: Methwyd darganfod nifer o dudalennau yn a dogfen a lwythwyd i fyny.
bbb.presentation.error.convert.maxnbpagereach = Gwall\: Mae'r ddogfen a lwythwyd i fyny a gormodd o dudalennau.
bbb.presentation.converted = Sleid {0} o {1} wedi eu trosi
bbb.presentation.ok = Iawn
bbb.presentation.slider = Lefel chwyddo'r cyflwyniad
bbb.presentation.slideloader.starttext = Dechrau testun y slied
bbb.presentation.slideloader.endtext = Diwedd testun y slied
bbb.presentation.uploadwindow.presentationfile = Ffeil Cyflwyniad
bbb.presentation.uploadwindow.pdf = PDF
bbb.presentation.uploadwindow.word = WORD
bbb.presentation.uploadwindow.excel = EXCEL
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
bbb.presentation.uploadwindow.image = DELWEDD
bbb.presentation.minimizeBtn.accessibilityName = Lleihau Ffenestr Cyflwyniad
bbb.presentation.maximizeRestoreBtn.accessibilityName = Ehangu Ffenestr Cyflwyniad
bbb.presentation.closeBtn.accessibilityName = Cau Ffenestr Cyflwyniad
bbb.fileupload.title = Ychwanegu Ffeiliau i'ch Cyflwyniad
bbb.fileupload.fileLbl = Dewiswch Ffeil i'w Lwytho i Fyny\:
bbb.fileupload.selectBtn.label = Dewis Ffeil
bbb.fileupload.selectBtn.toolTip = Agor blwch deialog i ddewis ffeil
bbb.fileupload.uploadBtn = Llwytho i fyny
bbb.fileupload.uploadBtn.toolTip = Llwytho i fyny'r ffeil a ddewiswyd
bbb.fileupload.presentationNamesLbl = Cyflwyniadau wedi'u llwytho\:
bbb.fileupload.deleteBtn.toolTip = Dileu'r Cyflwyniad
bbb.fileupload.showBtn = Dangos
bbb.fileupload.showBtn.toolTip = Dangos y Cyflwyniad
bbb.fileupload.okCancelBtn = Cau
bbb.fileupload.okCancelBtn.toolTip = Cau'r blwch deialog Llwytho i Fyny Ffeil
bbb.fileupload.genThumbText = Cynhyrchu mân-luniau.
bbb.fileupload.progBarLbl = Ar y gweill\:
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 = Anfon
bbb.chat.sendBtn.toolTip = Anfon Neges
bbb.chat.sendBtn.accessibilityName = Anfon neges sgwrsio
bbb.chat.publicChatUsername = Cyhoeddus
bbb.chat.optionsTabName = Dewisiadau
bbb.chat.privateChatSelect = Dewiswch defnyddiwr i sgwrsio gyda'n breifat
bbb.chat.private.userLeft = <b><i>Gadawodd y defnyddiwr.</i></b>
bbb.chat.usersList.toolTip = Dewiswch gyfranogwr i agor sgwrs breifat
bbb.chat.chatOptions = Dewisiadau sgwrsio
bbb.chat.fontSize = Maint Testun Neges Sgwrsio
bbb.chat.cmbFontSize.toolTip = Dweis maint testun neges sgwrsio
bbb.chat.messageList = Blwch Neges
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.publishVideo.changeCameraBtn.labelText = Newid Gwegamera
bbb.publishVideo.changeCameraBtn.toolTip = Agor blwch deialog newid gwegamera
bbb.publishVideo.cmbResolution.tooltip = Dewiswch gydraniad gwegamera
bbb.publishVideo.startPublishBtn.labelText = Dechrau Rhannu
bbb.publishVideo.startPublishBtn.toolTip = Dechrau rannu eich gwegamera
bbb.videodock.title = Gewgamerau
bbb.videodock.quickLink.label = Ffenestr Gewgamera
bbb.video.minimizeBtn.accessibilityName = Lleihau Ffenestr Gwegamera
bbb.video.maximizeRestoreBtn.accessibilityName = Ehangu Ffenestr Gewgamera
bbb.video.controls.muteButton.toolTip = Pylu neu datpylu {0}
bbb.video.controls.switchPresenter.toolTip = Gwneud {0} y cyflwynydd
bbb.video.controls.ejectUserBtn.toolTip = Diarddel {0} o'r cyfarfod
bbb.video.controls.privateChatBtn.toolTip = Sgwrsio gyda {0}
bbb.video.publish.hint.noCamera = Dim gwegamera ar gael
bbb.video.publish.hint.cantOpenCamera = Methu agor eich gwegamera
bbb.video.publish.hint.waitingApproval = Aros am gymeradwyaeth
bbb.video.publish.hint.videoPreview = Rhagolwg Gwegamera
bbb.video.publish.hint.openingCamera = Agor gwegamera...
bbb.video.publish.hint.cameraDenied = Gwrthodir mynediad i'r wegamera
bbb.video.publish.hint.cameraIsBeingUsed = Defnyddir y wegamera gan raglen arall
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.desktopPublish.title = Rhannu Bwrdd Gwaith\: Rhagolwg Cyflwynydd
bbb.desktopPublish.fullscreen.tooltip = Rhannu fy holl fwrdd gwaith.
bbb.desktopPublish.fullscreen.label = Llenwi'r Sgrin
bbb.desktopPublish.region.tooltip = Rhannu rhan o'm fwrdd gwaith.
bbb.desktopPublish.region.label = Rhanbarth
bbb.desktopPublish.stop.tooltip = Cau rhannu bwrdd gwaith
bbb.desktopPublish.stop.label = Cau
bbb.desktopPublish.maximizeRestoreBtn.toolTip = Ni allwch ehangu'r ffenestr hon.
bbb.desktopPublish.closeBtn.toolTip = Terfynu'r Rhannu a Chau
bbb.desktopPublish.minimizeBtn.toolTip = Lleihau
bbb.desktopPublish.minimizeBtn.accessibilityName = Lleihau'r Ffenestr Cyhoeddi Rhannu Bwrdd Gwaith
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Ehangu'r Ffenestr Cyhoeddi Rhannu Bwrdd Gwaith
bbb.desktopPublish.javaRequiredLabel = Angen Java 7u45 (neu'n ddiweddarach) i redeg.
bbb.desktopPublish.javaTestLinkLabel = Gwirio Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Gwirio Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Gwirio Java
bbb.desktopView.title = Rhannu Bwrdd Gwaith
bbb.desktopView.fitToWindow = Addasu i'r Ffenestr
bbb.desktopView.actualSize = Dangos faint gwirioneddol
bbb.desktopView.minimizeBtn.accessibilityName = Lleihau'r Ffenestr Gweld Rhannu Bwrdd Gwaith
bbb.desktopView.maximizeRestoreBtn.accessibilityName = Ehangu'r Ffenestr Gweld Rhannu Bwrdd Gwaith
bbb.desktopView.closeBtn.accessibilityName = Cau'r Ffenestr Gweld Rhannu Bwrdd Gwaith
bbb.toolbar.phone.toolTip.start = Ymuno â'r Sain
bbb.toolbar.phone.toolTip.stop = Gadael y Sain.
bbb.toolbar.deskshare.toolTip.start = Rhannu Fy Mwrdd Gwaith.
bbb.toolbar.deskshare.toolTip.stop = Terfynu Rhannu Fy Mwrdd Gwaith
bbb.toolbar.video.toolTip.start = Rhannu Fy Ngwegamera
bbb.toolbar.video.toolTip.stop = Terfynu Rhannu Fy Ngwegamera
bbb.layout.addButton.toolTip = Ychwanegu'r addasiad gosodiad i'r rhestr
bbb.layout.combo.toolTip = Newid y gosodiad bresennol
bbb.layout.loadButton.toolTip = Llwytho cynllun sgrin o ffeil
bbb.layout.saveButton.toolTip = Arbed cynllun sgrin i ffeil
bbb.layout.lockButton.toolTip = Terfynu'r gosodiad
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.save.complete = Arbedwyd y gosodiadau yn llwyddiannus
bbb.layout.load.complete = Llwythwyd y gosodiadau yn llwyddiannus
bbb.layout.load.failed = Methwyd llwytho'r gosodiadau
bbb.highlighter.toolbar.pencil = Pensil
bbb.highlighter.toolbar.pencil.accessibilityName = Newid cyrchwr bwrdd gwyn i bensil
bbb.highlighter.toolbar.ellipse = Cylch
bbb.highlighter.toolbar.ellipse.accessibilityName = Newid cyrchwr bwrdd gwyn i gylch
bbb.highlighter.toolbar.rectangle = Petryal
bbb.highlighter.toolbar.rectangle.accessibilityName = Newid cyrchwr bwrdd gwyn i betryal
bbb.highlighter.toolbar.panzoom = Tremio a Chwyddo
bbb.highlighter.toolbar.panzoom.accessibilityName = Newid cyrchwr bwrdd gwyn i dremio a chwyddo
bbb.highlighter.toolbar.clear = Dudalen Clir
bbb.highlighter.toolbar.clear.accessibilityName = Clirio'r dudalen bwrdd gwyn
bbb.highlighter.toolbar.undo = Dadwneud Siâp
bbb.highlighter.toolbar.undo.accessibilityName = Dadwneud y siâp bwrdd gwyn diwethaf
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.logout.title = Allgofnodwyd
bbb.logout.button.label = Iawn
bbb.logout.appshutdown = Mae'r rhaglen gweinyddu wedi'i gau i lawr
bbb.logout.asyncerror = Digwyddodd Gwall Anghydamseredig
bbb.logout.connectionclosed = Caewyd cysylltiad â'r gweinydd
bbb.logout.connectionfailed = Methwyd 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.usercommand = Fe allgofnodoch o'r gynhadledd
bbb.logout.confirm.title = Cadarnhau Allgofnodi
bbb.logout.confirm.message = Ydych chi'n sicr eich bod eisiau allgofnodi?
bbb.logout.confirm.yes = Ydw
bbb.logout.confirm.no = Nac ydw
bbb.notes.title = Nodiadau
bbb.notes.cmpColorPicker.toolTip = Lliw'r Testun
bbb.notes.saveBtn = Arbed
bbb.notes.saveBtn.toolTip = Arbed nodiadau
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 = Gwall fersiwn Java
bbb.settings.java.text = Mae gennych Java {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 Java JRE.
bbb.settings.java.command = Gosodwch Java diweddaraf
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 = Os oes broblemau gyda'ch gwegamera iSight, yna all fod o ganlyniad i redeg OS X 10.6.5, sy'n adnabyddus am broblem gyda Flash yn cipio fideo o wegamera iSight.\nI gywiro hyn, bydd y ddolen isod yn gosod fersiwn mwy diweddar o Flash, neu ddiweddwch eich Mac i'r fersiwn diweddaraf
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.
ltbcustom.bbb.highlighter.toolbar.triangle = Triongl
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Newid cyrchwr bwrdd gwyn i driongl
ltbcustom.bbb.highlighter.toolbar.line = Llinell
ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Newid cyrchwr bwrdd gwyn i linell
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.accessibility.chat.chatBox.reachedFirst = Fe gyrhaeddwyd y neges gyntaf
bbb.accessibility.chat.chatBox.reachedLatest = Fe gyrhaeddwyd y neges ddiweddaraf
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.initialDescription = Defnyddiwch y bysellau saeth i lywio drwy negeseuon sgwrsio.
bbb.accessibility.notes.notesview.input = Mewnbwn nodiadau
bbb.shortcuthelp.title = Cymorth Llwybrau Byr
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.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.polling = Llwybrau byr arolwg barn cyflwynwr
bbb.shortcuthelp.dropdown.polling2 = Llwybrau byr arolwg barn gwyliwr
bbb.shortcuthelp.headers.shortcut = Llwybr Byr
bbb.shortcuthelp.headers.function = Ffrwythiant
bbb.shortcutkey.general.minimize = 189
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 = 81
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
bbb.shortcutkey.chat.chatinput = 73
bbb.shortcutkey.chat.chatinput.function = Ffocysu'r maes mewnbwn sgwrsio
bbb.shortcutkey.present.focusslide = 67
bbb.shortcutkey.present.focusslide.function = Ffocysur sleid cyflwyniad
bbb.shortcutkey.whiteboard.undo = 90
bbb.shortcutkey.whiteboard.undo.function = Dadwneud lluniad olaf y bwrdd gwyn
bbb.shortcutkey.focus.users = 49
bbb.shortcutkey.focus.users.function = Symud ffocws i'r Ffenestr Defnyddwyr.
bbb.shortcutkey.focus.video = 50
bbb.shortcutkey.focus.video.function = Symud ffocws i'r Ffenestr Gwegamera
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.pollingCreate = 67
bbb.shortcutkey.focus.pollingCreate.function = Symud ffocws i'r ffenestr Creu Arolwg Barn, os yw ar agor.
bbb.shortcutkey.focus.pollingStats = 83
bbb.shortcutkey.focus.pollingStats.function = Symud ffocws i'r ffenestr Ystadegau Arolwg Barn, os yw ar agor.
bbb.shortcutkey.focus.voting = 89
bbb.shortcutkey.focus.voting.function = Symud ffocws i'r ffenestr Pleidleisio, os yw ar agor.
bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop.function = Agor ffenestr rhannu bwrdd gwaith
bbb.shortcutkey.share.microphone = 79
bbb.shortcutkey.share.microphone.function = Agor ffenestr gosodiadau sain
bbb.shortcutkey.share.webcam = 66
bbb.shortcutkey.share.webcam.function = Agor ffenestr rhannu gwegamera
bbb.shortcutkey.shortcutWindow = 72
bbb.shortcutkey.shortcutWindow.function = Agor/ffocysu'r ffenestr cymorth llwybrau byr
bbb.shortcutkey.logout = 76
bbb.shortcutkey.logout.function = Allgofnodi o'r cyfarfod
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Codi eich llaw
bbb.shortcutkey.present.upload = 85
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
bbb.shortcutkey.present.select = 83
bbb.shortcutkey.present.select.function = Gweld pob sleid
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 = 80
bbb.shortcutkey.present.fitPage.function = Addasu'r sleid i'r dudalen
bbb.shortcutkey.users.makePresenter = 80
bbb.shortcutkey.users.makePresenter.function = Gwneud y person a ddetholir yn gyflwynydd.
bbb.shortcutkey.users.kick = 75
bbb.shortcutkey.users.kick.function = Cicio'r person a ddewiswyd o'r cyfarfod
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.focusUsers = 85
bbb.shortcutkey.users.focusUsers.function = Ffocysu'r rhestr defnyddwyr
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = Pylu pawb ac eithrio'r Cyflwynydd
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = Ffocysu'r tabiau sgwrsio
bbb.shortcutkey.chat.focusBox = 66
bbb.shortcutkey.chat.focusBox.function = Ffocysu'r blwch sgwrsio
bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour.function = Ffocysu'r dweissydd lliw ffont.
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Anfon neges sgwrsio
bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Er mwyn llywio negeseuon, mae'n rhaid ffocysu'r blwch sgwrsio.
bbb.shortcutkey.chat.chatbox.advance = 40
bbb.shortcutkey.chat.chatbox.advance.function = Llywio i'r neges nesaf
bbb.shortcutkey.chat.chatbox.goback = 38
bbb.shortcutkey.chat.chatbox.goback.function = Llywio i'r neges flaenorol
bbb.shortcutkey.chat.chatbox.repeat = 32
bbb.shortcutkey.chat.chatbox.repeat.function = Ailadrodd y neges bresennol
bbb.shortcutkey.chat.chatbox.golatest = 39
bbb.shortcutkey.chat.chatbox.golatest.function = Llywio i'r neges ddiweddaraf
bbb.shortcutkey.chat.chatbox.gofirst = 37
bbb.shortcutkey.chat.chatbox.gofirst.function = Llywio i'r neges gyntaf
bbb.shortcutkey.chat.chatbox.goread = 75
bbb.shortcutkey.chat.chatbox.goread.function = Llywio i'r neges ddiweddaraf a ddarllenwyd
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Bysell frys dadfygio dros dro
bbb.polling.createPoll = Creu Arolwg Barn Newydd
bbb.polling.createPoll.moreThanOneResponse = Caniatáu defnyddwyr i ddewis mwy nag un ateb.
bbb.polling.createPoll.hint = Awgrym\: Dechreuwch bob ateb â llinell newydd
bbb.polling.createPoll.answers = Atebion\:
bbb.polling.createPoll.question = Cwestiwn\:
bbb.polling.createPoll.title = Teitl\:
bbb.polling.createPoll.publishToWeb = Galluogi pleidleisio ar y we
bbb.polling.pollPreview = Rhagolwg Pleidleisio
bbb.polling.pollPreview.modify = Newid
bbb.polling.pollPreview.publish = Cyhoeddi
bbb.polling.pollPreview.preview = Rhagolwg
bbb.polling.pollPreview.save = Arbed
bbb.polling.pollPreview.cancel = Diddymu
bbb.polling.pollPreview.modify = Newid
bbb.polling.pollPreview.hereIsYourPoll = Dyma eich arolwg barn\:
bbb.polling.pollPreview.ifYouWantChanges = os ydych am wneud unrhyw newidiadau defnyddiwch y botwm 'Newid'
bbb.polling.pollPreview.checkAll = (dewiswch bob ateb sy'n berthnasol)
bbb.polling.pollPreview.pollWillPublishOnline = Mi fydd yr arolwg barn ar gael ar gyfer pleidleisio ar y we.
bbb.polling.validation.toolongAnswer = Mae'ch atebion yn rhy hir. Uchafswm hyd yw
bbb.polling.validation.toolongQuestion = Cwestiwn yn rhy hir. Uchafswm hyd\:
bbb.polling.validation.toolongTitle = Teitl yn rhy hir, Uchafswm\:
bbb.polling.validation.noQuestion = Rhowch Cwestiwn
bbb.polling.validation.noTitle = Rhowch Teitl
bbb.polling.validation.toomuchAnswers = Mae gennych ormod o atebion. Caniateir dim mwy na\:
bbb.polling.validation.eachNewLine = Darparwch o leiaf 2 Ateb. Dechreuwch bob un â llinell newydd
bbb.polling.validation.answerUnique = Dylai pob ateb fod yn unigryw
bbb.polling.validation.atLeast2Answers = Darparwch o leiaf 2 Ateb
bbb.polling.validation.duplicateTitle = Mae'r arolwg barn eisoes yn bodoli
bbb.polling.pollView.vote = Cyflwyno
bbb.polling.toolbar.toolTip = Pleidleisio
bbb.polling.stats.repost = Ailgyhoeddi
bbb.polling.stats.close = Cau
bbb.polling.stats.didNotVote = Ni Phleidleisiodd
bbb.polling.stats.refresh = Adnewyddu
bbb.polling.stats.stopPoll = Terfynu Pleidleisio
bbb.polling.stats.webPollURL = Mae'r arolwg barn ar gael yma\:
bbb.polling.stats.answer = Atebion
bbb.polling.stats.votes = Pleidleisiau
bbb.polling.stats.percentage = % O Bleidleisiau
bbb.polling.webPollClosed = Caewyd pleidleisio ar y we.
bbb.polling.pollClosed = Caewyd pleidleisio\! Mae'r canlyniadau yn
bbb.polling.vote.error.radio = Dewiswch un opsiwn, neu gau'r ffenestr hon i ymatal pleidleisio.
bbb.polling.vote.error.check = Dewiswch un neu fwy o opsiynau, neu gau'r ffenestr hon i ymatal pleidleisio.
bbb.publishVideo.startPublishBtn.labelText = Dechrau Rhannu
bbb.publishVideo.changeCameraBtn.labelText = Newid Gwegamera
bbb.accessibility.alerts.madePresenter = Chi bellach yw'r Cyflwynwr.
bbb.accessibility.alerts.madeViewer = Rydych bellach yn Wyliwr.
bbb.shortcutkey.polling.buttonClick = 80
bbb.shortcutkey.polling.buttonClick.function = Agor y Ddewislen Pleidleisio
bbb.shortcutkey.polling.focusTitle = 67
bbb.shortcutkey.polling.focusTitle.function = Ffocysu'r blwch mewnbwn Teitl.
bbb.shortcutkey.polling.focusQuestion = 81
bbb.shortcutkey.polling.focusQuestion.function = Ffocysu'r blwch mewnbwn Cwestiwn.
bbb.shortcutkey.polling.focusAnswers = 65
bbb.shortcutkey.polling.focusAnswers.function = Ffocysu'r blwch mewnbwn Atebion.
bbb.shortcutkey.polling.focusMultipleCB = 77
bbb.shortcutkey.polling.focusMultipleCB.function = Ffocysu'r blwch ticio "Caniatáu sawl dewisiad".
bbb.shortcutkey.polling.focusWebPollCB = 66
bbb.shortcutkey.polling.focusWebPollCB.function = Ffocysu'r blwch ticio "Galluogi pleidleisio ar y we".
bbb.shortcutkey.polling.previewClick = 80
bbb.shortcutkey.polling.previewClick.function = Rhagolygu eich etholiad a symud ymlaen.
bbb.shortcutkey.polling.cancelClick = 88
bbb.shortcutkey.polling.cancelClick.function = Diddymu a gadael creu Arolwg Barn.
bbb.shortcutkey.polling.modify = 69
bbb.shortcutkey.polling.modify.function = Mynd yn ôl i addasu'r arolwg barn.
bbb.shortcutkey.polling.publish = 85
bbb.shortcutkey.polling.publish.function = Cyhoeddi'r arolwg barn a chaniatáu pleidleisio.
bbb.shortcutkey.polling.save = 83
bbb.shortcutkey.polling.save.function = Arbed yr arolwg barn i'w ddefnyddio nes ymlaen.
bbb.shortcutkey.pollStats.explanation = ----
bbb.shortcutkey.pollStats.explanation.function = Mae canlyniadau arolwg barn dim ond ar gael ar ôl cyhoeddi.
bbb.shortcutkey.polling.focusData = 68
bbb.shortcutkey.polling.focusData.function = Ffocysu'r canlyniadau arolwg barn.
bbb.shortcutkey.polling.refresh = 82
bbb.shortcutkey.polling.refresh.function = Adnewyddu canlyniad arolwg barn.
bbb.shortcutkey.polling.focusWebPoll = 73
bbb.shortcutkey.polling.focusWebPoll.function = Ffocysu'r blwch URL arolwg barn ar y we.
bbb.shortcutkey.polling.stopPoll = 79
bbb.shortcutkey.polling.stopPoll.function = Atal yr arolwg barn a therfynu pleidleisio.
bbb.shortcutkey.polling.repostPoll = 80
bbb.shortcutkey.polling.repostPoll.function = Ailgyhoeddi'r arolwg barn.
bbb.shortcutkey.polling.closeStatsWindow = 88
bbb.shortcutkey.polling.closeStatsWindow.function = Cau'r ffenestr Canlyniadau Pleidleisio.
bbb.shortcutkey.polling.vote = 86
bbb.shortcutkey.polling.vote.function = Bwrw eich pleidlais ar gyfer yr opsiynau a ddewiswyd.
bbb.shortcutkey.polling.focusVoteQuestion = 81
bbb.shortcutkey.polling.focusVoteQuestion.function = Ffocysu'r cwestiwn.
bbb.shortcutkey.specialKeys.space = Bylchwyr
bbb.shortcutkey.specialKeys.left = Saeth i'r Chwith
bbb.shortcutkey.specialKeys.right = Saeth i'r Dde
bbb.shortcutkey.specialKeys.up = Saeth i Fyny
bbb.shortcutkey.specialKeys.down = Saeth i Lawr
bbb.shortcutkey.specialKeys.plus = Mwy
bbb.shortcutkey.specialKeys.minus = Llai

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Stop deling og luk dette vindue.
bbb.desktopPublish.minimizeBtn.toolTip = Minimer dette vindue
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Del skrivebord
bbb.desktopView.fitToWindow = Tilpas til vindue
bbb.desktopView.actualSize = Vis faktiske størrelse

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Teilen beenden und Fenster schließen.
bbb.desktopPublish.minimizeBtn.toolTip = Fenster minimieren.
bbb.desktopPublish.minimizeBtn.accessibilityName = Desktop Freigabe minimieren
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Desktop Freigabe maximieren
bbb.desktopPublish.closeBtn.accessibilityName = Desktop Freigabe beenden und schließen
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Desktop Sharing
bbb.desktopView.fitToWindow = An Fenstergröße anpassen
bbb.desktopView.actualSize = Tatsächliche Größe anzeigen

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Διακοπή διαμοιρασμού κ
bbb.desktopPublish.minimizeBtn.toolTip = Ελαχιστοποίηση
bbb.desktopPublish.minimizeBtn.accessibilityName = Ελαχιστοποίηση του παραθύρου διαμοιρασμού επιφάνειας εργασίας
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Μεγιστοποίηση του παραθύρου διαμοιρασμού επιφάνειας εργασίας
bbb.desktopPublish.closeBtn.accessibilityName = Κλείσιμο διαμοιρασμού και παραθύρου διαμοιρασμού επιφάνειας εργασίας
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Διαμοιρασμός επιφάνειας εργασίας
bbb.desktopView.fitToWindow = Προσαρμογή στο παράθυρο
bbb.desktopView.actualSize = Προβολή πραγματικού μεγέθους

View File

@ -29,6 +29,13 @@ bbb.mainToolbar.settingsBtn = Settings
bbb.mainToolbar.settingsBtn.toolTip = Open Settings
bbb.mainToolbar.shortcutBtn = Shortcut Help
bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Help 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.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.window.minimizeBtn.toolTip = Minimize
bbb.window.maximizeRestoreBtn.toolTip = Maximize
bbb.window.closeBtn.toolTip = Close
@ -70,8 +77,8 @@ 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}'s mic
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}'s mic
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 = Webcam shared
bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone off
@ -132,6 +139,7 @@ bbb.chat.input.accessibilityName = Chat Message Editing Field
bbb.chat.sendBtn = Send
bbb.chat.sendBtn.toolTip = Send Message
bbb.chat.sendBtn.accessibilityName = Send chat message
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
@ -181,7 +189,10 @@ bbb.desktopPublish.closeBtn.toolTip = Stop Sharing and Close
bbb.desktopPublish.minimizeBtn.toolTip = Minimize
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
bbb.desktopPublish.javaTestLinkLabel = Test Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Desktop Sharing
bbb.desktopView.fitToWindow = Fit to Window
bbb.desktopView.actualSize = Display actual size
@ -472,3 +483,25 @@ bbb.shortcutkey.specialKeys.up = Up Arrow
bbb.shortcutkey.specialKeys.down = Down Arrow
bbb.shortcutkey.specialKeys.plus = Plus
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 Settings...
bbb.users.settings.unlockAll=Unlock All Users
bbb.users.settings.roomIsLocked=Locked by default
bbb.users.settings.roomIsMuted=Muted by default
bbb.lockSettings.save = Save
bbb.lockSettings.save.tooltip = Save and apply these configurations
bbb.lockSettings.cancel = Cancel
bbb.lockSettings.cancel.toolTip = Close this window without saving
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.title=Lock Settings
bbb.lockSettings.feature=Feature
bbb.lockSettings.enabled=Enabled

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Detener la compartición y cerrar esta ven
bbb.desktopPublish.minimizeBtn.toolTip = Minimizar esta ventana.
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimizar la ventana de iniciar el compartir escritorio
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximizar la ventana de iniciar el compartir escritorio
bbb.desktopPublish.closeBtn.accessibilityName = Cancelar y Cerrar la Ventana de Compartir Escritorio
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Compartición de pantalla
bbb.desktopView.fitToWindow = Ajustar a la ventana
bbb.desktopView.actualSize = Mostrar tamaño actual

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Lõpeta jagamine ja sulge
bbb.desktopPublish.minimizeBtn.toolTip = Minimeeri
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimeeri töölaua jagamise aken
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maksimeeri töölaua jagamise aken
bbb.desktopPublish.closeBtn.accessibilityName = Lõpeta jagamine ja sulge töölaua jagamise aken
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Töölaua jagamine
bbb.desktopView.fitToWindow = Sobita aknasse
bbb.desktopView.actualSize = Näita tegelikus suuruses

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Eten partekatzea eta itxi
bbb.desktopPublish.minimizeBtn.toolTip = Txikitu
bbb.desktopPublish.minimizeBtn.accessibilityName = Txikitu mahaigaina partekatzeko leihoa
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Handitu mahaigaina partekatzeko leihoa
bbb.desktopPublish.closeBtn.accessibilityName = Eten partekatzea eta itxi mahaigaina partekatzeko leihoa
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Mahaigaina partekatzen
bbb.desktopView.fitToWindow = Doitu leihoan
bbb.desktopView.actualSize = Erakutsi oraingo tamaina

View File

@ -2,7 +2,7 @@ bbb.mainshell.locale.version = 0.8
bbb.mainshell.statusProgress.connecting = در حال اتصال به سرور
bbb.mainshell.statusProgress.loading = در حال بارگزاری {0} ماژول
bbb.mainshell.statusProgress.cannotConnectServer = متاسفانه، امکان اتصال به سرور وجود ندارد.
# bbb.mainshell.copyrightLabel2 = (c) 2013 BigBlueButton Inc. [build {0}] - For more information visit <a href\='http\://www.bigbluebutton.org/' target\='_blank'><u>http\://www.bigbluebutton.org</u></a>
bbb.mainshell.copyrightLabel2 = (c) 2013 BigBlueButton Inc. [build {0}] - برای اطلاعات بیشتر به آدرس <a href\='http\://www.bigbluebutton.org/' target\='_blank'><u>http\://www.bigbluebutton.org</u></a> مراجعه کنید.
bbb.mainshell.logBtn.toolTip = مشاهده ی پنجره ی ثبت وقایع
bbb.mainshell.resetLayoutBtn.toolTip = بازگشت به طرح بندی پیش فرض
bbb.oldlocalewindow.reminder1 = ممکن است ترجمه ی مربوط به زبان بیگ بلو باتن شما قدیمی باشد.
@ -100,8 +100,8 @@ bbb.presentation.error.convert.maxnbpagereach = خطا\: تعداد صفحات
bbb.presentation.converted = تبدیل {0} از {1} اسلاید
bbb.presentation.ok = تایید
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 = پی.دی.اف
bbb.presentation.uploadwindow.word = ورد
@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = توقف اشتراک گذاری و خرو
bbb.desktopPublish.minimizeBtn.toolTip = کمینه کردن
bbb.desktopPublish.minimizeBtn.accessibilityName = کمینه کردن پنجره نمایش اشتراک صفحه
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = بیشینه کردن پنجره نمایش اشتراک صفحه
bbb.desktopPublish.closeBtn.accessibilityName = توقف اشتراک گذاری و بستن پنجره نمایش اشتراک صفحه
bbb.desktopPublish.javaRequiredLabel = برای اجرا نیاز به نسخه 7u45 (یا بالاتر) می باشد
bbb.desktopPublish.javaTestLinkLabel = آزمایش جاوا
bbb.desktopPublish.javaTestLinkLabel.tooltip = آزمایش جاوا
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = آزمایش جاوا
bbb.desktopView.title = اشتراک میز کار
bbb.desktopView.fitToWindow = بسط به اندازه ي تمام پنجره
bbb.desktopView.actualSize = نمایش اندازه واقعی
@ -222,7 +225,7 @@ bbb.highlighter.toolbar.color = انتخاب رنگ
bbb.highlighter.toolbar.color.accessibilityName = رنگ اشاره گر ترسیم در تخته سفید
bbb.highlighter.toolbar.thickness = تغییر ضخامت
bbb.highlighter.toolbar.thickness.accessibilityName = ضخامت اشاره گر ترسیم در تخته سفید
# bbb.logout.title = Logged Out
bbb.logout.title = خارج شدید
bbb.logout.button.label = تایید
bbb.logout.appshutdown = برنامه ی سرور خاموش شده است
bbb.logout.asyncerror = رخداد یک خطای Async
@ -365,7 +368,7 @@ bbb.shortcutkey.chat.focusTabs.function = فعال سازی زبانه های چ
bbb.shortcutkey.chat.focusBox = 66
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.explanation = ----
@ -451,7 +454,7 @@ bbb.shortcutkey.polling.focusQuestion.function = فعال سازی جعبه ور
bbb.shortcutkey.polling.focusAnswers = 65
bbb.shortcutkey.polling.focusAnswers.function = فعال سازی جعبه ورودی پاسخ ها
bbb.shortcutkey.polling.focusMultipleCB = 77
# bbb.shortcutkey.polling.focusMultipleCB.function = Focus to "Allow multiple selections" checkbox.
bbb.shortcutkey.polling.focusMultipleCB.function = فعال کردن جعبه انتخاب "امکان انتخاب چندین گزینه"
bbb.shortcutkey.polling.focusWebPollCB = 66
bbb.shortcutkey.polling.focusWebPollCB.function = فعال سازی چک باکس "قعال سازی نظرسنجی انلاین"
bbb.shortcutkey.polling.previewClick = 80

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Lopeta jakaminen ja sulje
bbb.desktopPublish.minimizeBtn.toolTip = Pienennä
bbb.desktopPublish.minimizeBtn.accessibilityName = Pienennä työpöydän jako ikkuna
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Suurenna työpöydän jako ikkuna
bbb.desktopPublish.closeBtn.accessibilityName = Lopeta jakaminen ja sulje työpöydän jako ikkuna
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Työpöydän jako
bbb.desktopView.fitToWindow = Sovita ikkunaan
bbb.desktopView.actualSize = Näytä oikea koko

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Arrêter de partager et fermer
bbb.desktopPublish.minimizeBtn.toolTip = Réduire
bbb.desktopPublish.minimizeBtn.accessibilityName = Réduire le module de partage d'écran
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Agrandir le module de partage d'écran
bbb.desktopPublish.closeBtn.accessibilityName = Arrêter de partager et fermer le module de partage d'écran
bbb.desktopPublish.javaRequiredLabel = Nécessite Java 7u45 (ou version ultérieure) pour fonctionner.
bbb.desktopPublish.javaTestLinkLabel = Testez Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Testez Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Testez Java
bbb.desktopView.title = Partage d'écran
bbb.desktopView.fitToWindow = Adapter la taille à la fenêtre
bbb.desktopView.actualSize = Afficher à la taille normale
@ -222,7 +225,7 @@ bbb.highlighter.toolbar.color = Selectionner une couleur
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.logout.title = Logged Out
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

View File

@ -7,13 +7,13 @@ bbb.mainshell.logBtn.toolTip = Ouvrir la fenêtre de log
bbb.mainshell.resetLayoutBtn.toolTip = Disposition par défaut
bbb.oldlocalewindow.reminder1 = Vous avez probablement de vieux fichiers de traduction pour BigBlueButton.
bbb.oldlocalewindow.reminder2 = Veuillez effacer le cache de votre navigateur web et essayer de nouveau.
bbb.oldlocalewindow.windowTitle = Avertissement\: Les traductions ne sont pas à jour
bbb.oldlocalewindow.windowTitle = Avertissement \: Les traductions ne sont pas à jour
bbb.micSettings.speakers.header = Tester les haut-parleurs
bbb.micSettings.microphone.header = Tester le microphone
bbb.micSettings.playSound = Tester les haut-parleurs
bbb.micSettings.playSound.toolTip = Faites jouer de la musique pour tester vos haut-parleurs
bbb.micSettings.hearFromHeadset = Vous devriez entendre le son dans vos écouteurs et non dans les haut-parleurs.
bbb.micSettings.speakIntoMic = Tester ou changer votre microphone ( des écouteurs sont recommandé ).
bbb.micSettings.speakIntoMic = Tester ou changer votre microphone (des écouteurs sont recommandés).
bbb.micSettings.changeMic = Tester ou changer votre microphone
bbb.micSettings.changeMic.toolTip = Ouvrir la fenêtre de paramètres de micro pour Flash Player
bbb.micSettings.join = Rejoindre l'audio
@ -38,8 +38,8 @@ bbb.chat.titleBar = Barre de titre de la fenêtre discussion
bbb.users.title = Utilisateurs{0} {1}
bbb.users.titleBar = Barre de titre de la fenêtre utilisateurs
bbb.users.quickLink.label = Fenêtre utilisateurs
bbb.users.minimizeBtn.accessibilityName = Réduire la fenêtre d'utilisateurs
bbb.users.maximizeRestoreBtn.accessibilityName = Agrandir la fenêtre d'utilisateurs
bbb.users.minimizeBtn.accessibilityName = Réduire la fenêtre utilisateurs
bbb.users.maximizeRestoreBtn.accessibilityName = Agrandir la fenêtre utilisateurs
bbb.users.settings.buttonTooltip = Paramètres
bbb.users.settings.audioSettings = Paramètres audio
bbb.users.settings.webcamSettings = Paramètres de la webcam
@ -54,7 +54,7 @@ bbb.users.muteMeBtnTxt.talk = Activer
bbb.users.muteMeBtnTxt.mute = Assourdir
bbb.users.muteMeBtnTxt.muted = Assourdir
bbb.users.muteMeBtnTxt.unmuted = Sourdine désactivée
bbb.users.usersGrid.accessibilityName = Listes d'utilisateurs. Utilisez les flèches pour naviguer.
bbb.users.usersGrid.accessibilityName = Liste d'utilisateurs. Utilisez les flèches pour naviguer.
bbb.users.usersGrid.nameItemRenderer = Nom
bbb.users.usersGrid.nameItemRenderer.youIdentifier = vous
bbb.users.usersGrid.statusItemRenderer = Statut
@ -72,13 +72,13 @@ 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 le microphone de {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Déverrouiller le microphone de {0}
bbb.users.usersGrid.mediaItemRenderer.kickUser = Bannir {0}
bbb.users.usersGrid.mediaItemRenderer.kickUser = Éjecter {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = Partager la webcam
bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone fermé
bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone ouvert
bbb.users.usersGrid.mediaItemRenderer.micOff = Microphone actif
bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone inactif
bbb.users.usersGrid.mediaItemRenderer.noAudio = Vous n'êtes pas en conférence audio
bbb.presentation.title = Présentation
bbb.presentation.titleWithPres = Présentation\: {0}
bbb.presentation.titleWithPres = Présentation \: {0}
bbb.presentation.quickLink.label = Fenêtre présentation
bbb.presentation.fitToWidth.toolTip = Ajuster la présentation à la largeur
bbb.presentation.fitToPage.toolTip = Ajuster la présentation à la page
@ -86,17 +86,17 @@ bbb.presentation.uploadPresBtn.toolTip = Ouvrir la fenêtre d'envoi de fichier d
bbb.presentation.backBtn.toolTip = Diapositive précédente
bbb.presentation.btnSlideNum.toolTip = Sélectionner une diapositive
bbb.presentation.forwardBtn.toolTip = Diapositive suivante
bbb.presentation.maxUploadFileExceededAlert = Erreur\: Le fichier est plus gros que ce qu'il est permit.
bbb.presentation.maxUploadFileExceededAlert = Erreur \: Le fichier dépasse la taille autorisée.
bbb.presentation.uploadcomplete = Envoi terminé. Merci de patienter pendant la conversion du fichier.
bbb.presentation.uploaded = envoyé.
bbb.presentation.document.supported = Le document envoyé est compatible. Conversion en cours...
bbb.presentation.document.converted = Conversion du fichier office réussie.
bbb.presentation.error.document.convert.failed = Erreur\: Échec lors de la conversion du fichier.
bbb.presentation.error.io = Erreur E/S\: Veuillez contacter l'administrateur.
bbb.presentation.error.document.convert.failed = Erreur \: Échec lors de la conversion du fichier.
bbb.presentation.error.io = Erreur E/S \: Veuillez contacter l'administrateur.
bbb.presentation.error.security = Erreur de sécurité\: Veuillez contacter l'administrateur.
bbb.presentation.error.convert.notsupported = Erreur\: Le format de fichier envoyé n'est pas supporté. Merci d'envoyer un fichier compatible.
bbb.presentation.error.convert.nbpage = Erreur\: Échec lors du calcul du nombre de pages du fichier envoyé.
bbb.presentation.error.convert.maxnbpagereach = Erreur\: Le fichier envoyé contient trop de pages.
bbb.presentation.error.convert.nbpage = Erreur \: Échec lors du calcul du nombre de pages du fichier déposé.
bbb.presentation.error.convert.maxnbpagereach = Erreur \: Le fichier envoyé contient trop de pages.
bbb.presentation.converted = {0} page(s) sur {1} convertie(s).
bbb.presentation.ok = OK
bbb.presentation.slider = Niveau de zoom de la présentation
@ -112,19 +112,19 @@ bbb.presentation.minimizeBtn.accessibilityName = Réduire la fenêtre de présen
bbb.presentation.maximizeRestoreBtn.accessibilityName = Agrandir la fenêtre de présentation
bbb.presentation.closeBtn.accessibilityName = Fermer la fenêtre de présentation
bbb.fileupload.title = Envoyer un fichier à présenter
bbb.fileupload.fileLbl = Choisissez le fichier à envoyer\:
bbb.fileupload.fileLbl = Choisissez le fichier à envoyer \:
bbb.fileupload.selectBtn.label = Sélectionner le fichier
bbb.fileupload.selectBtn.toolTip = Ouvrir une boîte de dialogue pour sélectionner un fichier
bbb.fileupload.uploadBtn = Envoyer
bbb.fileupload.uploadBtn.toolTip = Envoyer le fichier sélectionné
bbb.fileupload.presentationNamesLbl = Présentation déjà envoyées\:
bbb.fileupload.presentationNamesLbl = Présentations déjà envoyées \:
bbb.fileupload.deleteBtn.toolTip = Supprimer cette présentation
bbb.fileupload.showBtn = Afficher
bbb.fileupload.showBtn.toolTip = Afficher cette présentation
bbb.fileupload.okCancelBtn = Fermer
bbb.fileupload.okCancelBtn.toolTip = Fermer la boîte de dialogue d'envoi de fichier
bbb.fileupload.genThumbText = Génération des aperçus..
bbb.fileupload.progBarLbl = Progression\:
bbb.fileupload.genThumbText = Génération des aperçus...
bbb.fileupload.progBarLbl = Progression \:
bbb.chat.title = Discussion
bbb.chat.quickLink.label = Fenêtre discussion
bbb.chat.cmpColorPicker.toolTip = Couleur du texte
@ -135,7 +135,7 @@ bbb.chat.sendBtn.accessibilityName = Envoyer ce message
bbb.chat.publicChatUsername = Public
bbb.chat.optionsTabName = Options
bbb.chat.privateChatSelect = Choisissez une personne avec qui discuter en privé
bbb.chat.private.userLeft = <b><i>Cet utilisateur à quitté.</i></b>
bbb.chat.private.userLeft = <b><i>L'utilisateur a quitté.</i></b>
bbb.chat.usersList.toolTip = Sélectionnez un participant pour ouvrir une discussion privée
bbb.chat.chatOptions = Options de discussions
bbb.chat.fontSize = Taille de la police
@ -156,21 +156,21 @@ bbb.video.minimizeBtn.accessibilityName = Réduire la fenêtre des webcams
bbb.video.maximizeRestoreBtn.accessibilityName = Agrandir la fenêtre des webcams
bbb.video.controls.muteButton.toolTip = Activer ou désactiver la sourdine pour {0}
bbb.video.controls.switchPresenter.toolTip = Faire de {0} le présentateur
bbb.video.controls.ejectUserBtn.toolTip = Éjecter {0} de la rencontre
bbb.video.controls.ejectUserBtn.toolTip = Éjecter {0} de la conférence
bbb.video.controls.privateChatBtn.toolTip = Discuter avec {0}
bbb.video.publish.hint.noCamera = Pas de webcam disponible
bbb.video.publish.hint.cantOpenCamera = Impossible d'ouvrir votre webcam
bbb.video.publish.hint.waitingApproval = Attend l'approbation
bbb.video.publish.hint.videoPreview = Aperçu de la webcam
bbb.video.publish.hint.videoPreview = Prévisualisation vidéo
bbb.video.publish.hint.openingCamera = Ouverture de la webcam...
bbb.video.publish.hint.cameraDenied = Accès à la webcam refusé
bbb.video.publish.hint.cameraIsBeingUsed = Votre webcam est actuellement utilisée par un autre application
bbb.video.publish.hint.cameraIsBeingUsed = Votre caméra est utilisée par une autre application
bbb.video.publish.hint.publishing = Publication...
bbb.video.publish.closeBtn.accessName = Fermer la fenêtre de paramètres pour la webcam
bbb.video.publish.closeBtn.label = Annuler
bbb.video.publish.titleBar = Publier la webcam
bbb.desktopPublish.title = Partage de bureau\: Aperçu du présentateur
bbb.desktopPublish.fullscreen.tooltip = Partager votre écran au complet
bbb.desktopPublish.title = Partage de bureau \: Aperçu du présentateur
bbb.desktopPublish.fullscreen.tooltip = Partager l'intégralité de l'écran
bbb.desktopPublish.fullscreen.label = Plein écran
bbb.desktopPublish.region.tooltip = Partager une partie de votre écran
bbb.desktopPublish.region.label = Région
@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Arrêter de partager et fermer
bbb.desktopPublish.minimizeBtn.toolTip = Réduire
bbb.desktopPublish.minimizeBtn.accessibilityName = Réduire la fenêtre de partage d'écran
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Agrandir la fenêtre de partage d'écran
bbb.desktopPublish.closeBtn.accessibilityName = Arrêter le partage et fermer la fenêtre de partage d'écran
bbb.desktopPublish.javaRequiredLabel = Nécessite Java 7u45 (ou version ultérieure) pour fonctionner.
bbb.desktopPublish.javaTestLinkLabel = Testez Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Testez Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Testez Java
bbb.desktopView.title = Partage d'écran
bbb.desktopView.fitToWindow = Adapter la taille à la fenêtre
bbb.desktopView.actualSize = Afficher à la taille normale
@ -191,9 +194,9 @@ bbb.desktopView.closeBtn.accessibilityName = Fermer la fenêtre de partage d'éc
bbb.toolbar.phone.toolTip.start = Joindre l'audio
bbb.toolbar.phone.toolTip.stop = Quitter l'audio
bbb.toolbar.deskshare.toolTip.start = Partager mon écran
bbb.toolbar.deskshare.toolTip.stop = Arrêter le partage de mon écran
bbb.toolbar.deskshare.toolTip.stop = Arrêter de partager mon écran
bbb.toolbar.video.toolTip.start = Partager ma webcam
bbb.toolbar.video.toolTip.stop = Arrêter le partage de ma webcam
bbb.toolbar.video.toolTip.stop = Arrêter de partager ma webcam
bbb.layout.addButton.toolTip = Ajouter la mise en page personnalisée à la liste
bbb.layout.combo.toolTip = Changer la mise en page courante
bbb.layout.loadButton.toolTip = Charger des mises en page depuis un fichier
@ -212,20 +215,20 @@ bbb.highlighter.toolbar.ellipse = Cercle
bbb.highlighter.toolbar.ellipse.accessibilityName = Changer le curseur du tableau pour un cercle
bbb.highlighter.toolbar.rectangle = Rectangle
bbb.highlighter.toolbar.rectangle.accessibilityName = Changer le curseur du tableau pour un rectangle
bbb.highlighter.toolbar.panzoom = Faire un panoramique et zoomer
bbb.highlighter.toolbar.panzoom = Déplacer et zoomer
bbb.highlighter.toolbar.panzoom.accessibilityName = Changer le curseur du tableau pour le recadrage et zoom
bbb.highlighter.toolbar.clear = Effacer la page
bbb.highlighter.toolbar.clear = Effacer les annotations
bbb.highlighter.toolbar.clear.accessibilityName = Effacer le tableau
bbb.highlighter.toolbar.undo = Annuler la forme
bbb.highlighter.toolbar.undo.accessibilityName = Effacer la dernière forme du tableau
bbb.highlighter.toolbar.undo = Annuler la marque
bbb.highlighter.toolbar.undo.accessibilityName = Effacer la dernière marque sur le tableau
bbb.highlighter.toolbar.color = Selectionner une couleur
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.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 survenue
bbb.logout.appshutdown = L'application serveur a été arrêtée
bbb.logout.asyncerror = Une erreur de synchronisation est survenue
bbb.logout.connectionclosed = La connexion au serveur a été fermée
bbb.logout.connectionfailed = La connexion au serveur a échoué
bbb.logout.rejected = La connexion au serveur a été refusée
@ -233,29 +236,29 @@ bbb.logout.invalidapp = L'application red5 n'existe pas
bbb.logout.unknown = Votre client a perdu la connexion au serveur
bbb.logout.usercommand = Vous êtes maintenant déconnecté de la conférence
bbb.logout.confirm.title = Confirmer la déconnexion
bbb.logout.confirm.message = Êtes-vous sur de vouloir vous déconnecter?
bbb.logout.confirm.message = Êtes-vous sur de vouloir vous déconnecter ?
bbb.logout.confirm.yes = Oui
bbb.logout.confirm.no = Non
bbb.notes.title = Notes
bbb.notes.cmpColorPicker.toolTip = Couleur du texte
bbb.notes.saveBtn = Sauvegarder
bbb.notes.saveBtn.toolTip = Sauvegarder la note
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.deskshare.instructions = Cliquez sur Autoriser sur l'invite qui s'affiche pour vérifier que le partage d'écran fonctionne correctement pour vous
bbb.settings.deskshare.start = Vérifier le partage d'écran
bbb.settings.voice.volume = Activité du microphone
bbb.settings.java.label = Erreur de la version de Java
bbb.settings.java.text = Vous avez Java {0} installé, mais vous devez avoir au moins la version {1} pour utiliser le partage d'écran de BigBlueButton. Pour installer la version la plus récente de Java JRE, cliquez sur le bouton ci-dessous.
bbb.settings.java.command = Installer la nouvelle version de Java
bbb.settings.flash.label = Erreur de la version de Flash
bbb.settings.flash.text = Vous avez Flash {0} 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.java.label = Erreur de version Java
bbb.settings.java.text = Vous avez Java {0} installé, mais la version {1} minimum est requise pour utiliser le partage d'écran de BigBlueButton. Pour installer la version la plus récente de Java JRE, cliquez sur le bouton ci-dessous.
bbb.settings.java.command = Installer la dernière version de Java
bbb.settings.flash.label = Erreur de version Flash
bbb.settings.flash.text = Vous avez Flash {0} installé, mais la version {1} minimum est requise pour BigBlueButton. Cliquez sur le bouton ci-dessous pour installer la dernière version d'Adobe Flash.
bbb.settings.flash.command = Installer la dernière version de Flash
bbb.settings.isight.label = Erreur de webcam iSight
bbb.settings.isight.text = Si vous avez des problèmes avec votre webcam iSight, c'est peut-être parce que vous êtes sur OS X 10.6.5, qui est connu pour avoir un problème avec Flash. Pour corriger ce problème, vous pouvez cliquer sur le lien ci-dessous pour installer la version de Flash la plus récente ou bien mettez à jour votre Mac.
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 Flash. Pour corriger ce problème, cliquez sur le lien ci-dessous pour installer la dernière version de Flash ou bien mettez à jour votre Mac.
bbb.settings.isight.command = Installer Flash 10.2 RC2
bbb.settings.warning.label = Attention
bbb.settings.warning.close = Fermer cette alerte
bbb.settings.noissues = Pas de problèmes détectés.
bbb.settings.instructions = Accepter la demande de Flash pour accéder à votre webcam. Si la sortie correspond à ce que vous attendiez, votre navigateur est configuré correctement. Les problèmes potentiels sont décrit ci-dessous, vous pouvez y jeter un coup dœil pour trouvez une solution.
bbb.settings.noissues = Aucun problème sérieux n'a été détecté.
bbb.settings.instructions = Acceptez l'application Flash qui vous demande l'autorisation pour accéder à votre webcam et votre micro. Si vous pouvez vous voir et vous entendre, votre navigateur a été correctement configuré. D'autres questions éventuelles sont présentées ci-dessous. Cliquez sur l'une d'entre elle pour trouver une solution.
ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Changer le curseur du tableau pour un triangle
ltbcustom.bbb.highlighter.toolbar.line = Ligne
@ -263,14 +266,14 @@ ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Changer le curseur du
ltbcustom.bbb.highlighter.toolbar.text = Texte
ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Changer le curseur du tableau pour du texte
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Couleur du texte
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Taille de la police
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Taille de caractère
bbb.accessibility.chat.chatBox.reachedFirst = Vous avez atteint le premier message.
bbb.accessibility.chat.chatBox.reachedLatest = Vous avez atteint le dernier message.
bbb.accessibility.chat.chatBox.navigatedFirst = Vous avez navigué jusqu'au premier message.
bbb.accessibility.chat.chatBox.navigatedLatest = Vous avez navigué jusqu'au dernier message.
bbb.accessibility.chat.chatBox.navigatedLatestRead = Vous avez navigué jusqu'au message le plus récent que vous avez lu.
bbb.accessibility.chat.chatwindow.input = Saisie discussion
bbb.accessibility.chat.chatwindow.input = Saisie de texte
bbb.accessibility.chat.initialDescription = Veuillez utiliser les flèches pour naviguer entre les messages.
@ -295,7 +298,7 @@ bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = Agrandir la fenêtre courante
bbb.shortcutkey.flash.exit = 81
bbb.shortcutkey.flash.exit.function = Enlever le focus de sur la fenêtre de Flash
bbb.shortcutkey.flash.exit.function = Enlever le focus de la fenêtre de Flash
bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme.function = Activer et désactiver votre microphone
bbb.shortcutkey.chat.chatinput = 73
@ -306,7 +309,7 @@ bbb.shortcutkey.whiteboard.undo = 90
bbb.shortcutkey.whiteboard.undo.function = Effacer la dernière marque sur le tableau
bbb.shortcutkey.focus.users = 49
bbb.shortcutkey.focus.users.function = Mettre le focus sur le module utilisateurs
bbb.shortcutkey.focus.users.function = Mettre le focus sur la fenêtre des utilisateurs
bbb.shortcutkey.focus.video = 50
bbb.shortcutkey.focus.video.function = Mettre le focus sur la fenêtre webcam
bbb.shortcutkey.focus.presentation = 51
@ -330,18 +333,18 @@ bbb.shortcutkey.share.webcam.function = Ouvrir la fenêtre de partage de la webc
bbb.shortcutkey.shortcutWindow = 72
bbb.shortcutkey.shortcutWindow.function = Ouvrir/mettre le focus sur la fenêtre d'aide sur les raccourcis
bbb.shortcutkey.logout = 76
bbb.shortcutkey.logout.function = Se déconnecter de cette réunion
bbb.shortcutkey.logout.function = Se déconnecter de cette conférence
bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand.function = Lever votre main
bbb.shortcutkey.raiseHand.function = Lever la main
bbb.shortcutkey.present.upload = 85
bbb.shortcutkey.present.upload.function = Envoyer un document à présenter
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = Diapositive précédente
bbb.shortcutkey.present.previous.function = Aller à la diapositive précédente
bbb.shortcutkey.present.select = 83
bbb.shortcutkey.present.select.function = Voir toutes les diapositives
bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = Diapositive suivante
bbb.shortcutkey.present.next.function = Aller à la diapositive suivante
bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth.function = Ajuster les diapositives à la largeur
bbb.shortcutkey.present.fitPage = 80
@ -350,7 +353,7 @@ bbb.shortcutkey.present.fitPage.function = Ajuster les diapositives à la page
bbb.shortcutkey.users.makePresenter = 80
bbb.shortcutkey.users.makePresenter.function = Faire de la personne sélectionnée le présentateur
bbb.shortcutkey.users.kick = 75
bbb.shortcutkey.users.kick.function = Éjecter la personne sélectionnée de la rencontre
bbb.shortcutkey.users.kick.function = Éjecter la personne sélectionnée de la conférence
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
@ -372,49 +375,49 @@ bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation.function = Pour la navigation entre les messages, vous devez mettre le focus sur la zone de discussion.
bbb.shortcutkey.chat.chatbox.advance = 40
bbb.shortcutkey.chat.chatbox.advance.function = Message suivant
bbb.shortcutkey.chat.chatbox.advance.function = Naviguer vers le message suivant
bbb.shortcutkey.chat.chatbox.goback = 38
bbb.shortcutkey.chat.chatbox.goback.function = Message précédent
bbb.shortcutkey.chat.chatbox.goback.function = Naviguer vers le message précédent
bbb.shortcutkey.chat.chatbox.repeat = 32
bbb.shortcutkey.chat.chatbox.repeat.function = Répéter le message courant
bbb.shortcutkey.chat.chatbox.repeat.function = Répéter le message actuel
bbb.shortcutkey.chat.chatbox.golatest = 39
bbb.shortcutkey.chat.chatbox.golatest.function = Aller jusqu'au dernier message
bbb.shortcutkey.chat.chatbox.golatest.function = Naviguer jusqu'au dernier message
bbb.shortcutkey.chat.chatbox.gofirst = 37
bbb.shortcutkey.chat.chatbox.gofirst.function = Aller jusqu'au premier message
bbb.shortcutkey.chat.chatbox.gofirst.function = Naviguer jusqu'au premier message
bbb.shortcutkey.chat.chatbox.goread = 75
bbb.shortcutkey.chat.chatbox.goread.function = Aller jusqu'au dernier message lu
bbb.shortcutkey.chat.chatbox.goread.function = Naviguer jusqu'au dernier message que vous avez lu
bbb.shortcutkey.chat.chatbox.debug = 71
bbb.shortcutkey.chat.chatbox.debug.function = Raccourci temporaire de débogage
bbb.polling.createPoll = Créer un nouveau sondage
bbb.polling.createPoll.moreThanOneResponse = Permettre les utilisateurs de choisir plus d'une réponse
bbb.polling.createPoll.hint = Conseil\: Démarrer chaque réponse sur une nouvelle ligne
bbb.polling.createPoll.answers = Réponses\:
bbb.polling.createPoll.question = Question\:
bbb.polling.createPoll.title = Titre\:
bbb.polling.createPoll.moreThanOneResponse = Autoriser les utilisateurs à choisir plus d'une réponse
bbb.polling.createPoll.hint = Astuce \: commencez chaque réponse sur une nouvelle ligne
bbb.polling.createPoll.answers = Réponses \:
bbb.polling.createPoll.question = Question \:
bbb.polling.createPoll.title = Titre \:
bbb.polling.createPoll.publishToWeb = Activer le sondage web
bbb.polling.pollPreview = Aperçu du sondage
bbb.polling.pollPreview = Prévisualiser le sondage
bbb.polling.pollPreview.modify = Modifier
bbb.polling.pollPreview.publish = Publier
bbb.polling.pollPreview.preview = Aperçu
bbb.polling.pollPreview.preview = Prévisualiser
bbb.polling.pollPreview.save = Sauvegarder
bbb.polling.pollPreview.cancel = Annuler
bbb.polling.pollPreview.modify = Modifier
bbb.polling.pollPreview.hereIsYourPoll = Voici votre sondage\:
bbb.polling.pollPreview.ifYouWantChanges = si vous voulez faire des modifications, utilisez le bouton 'Modifier'
bbb.polling.pollPreview.checkAll = (vérifier tous ce qui peut s'appliquer)
bbb.polling.pollPreview.hereIsYourPoll = Voici votre sondage \:
bbb.polling.pollPreview.ifYouWantChanges = Si vous souhaitez faire des modifications, utilisez le bouton 'Modifier'
bbb.polling.pollPreview.checkAll = (vérifier tout ce qui peut s'appliquer)
bbb.polling.pollPreview.pollWillPublishOnline = Ce sondage sera disponible pour le vote web.
bbb.polling.validation.toolongAnswer = Vos réponses sont trop longues. La longueur maximale est
bbb.polling.validation.toolongQuestion = La question est trop longue. Nombre de caractères maximum\:
bbb.polling.validation.toolongTitle = Le titre est trop long, Max\:
bbb.polling.validation.noQuestion = Merci de fournir une question
bbb.polling.validation.noTitle = Merci de fournir un titre
bbb.polling.validation.toomuchAnswers = Vous avez trop de réponses. Nombre de réponses maximum autorisées\:
bbb.polling.validation.eachNewLine = Merci de fournir au moins 2 réponses. Démarrer chaque réponses sur une nouvelle ligne.
bbb.polling.validation.answerUnique = Chaque réponse doit être unique
bbb.polling.validation.atLeast2Answers = Merci de fournir au moins 2 réponses
bbb.polling.validation.toolongQuestion = La question est trop longue. Nombre de caractères maximum \:
bbb.polling.validation.toolongTitle = Le titre est trop long. Max \:
bbb.polling.validation.noQuestion = Merci d'indiquer une question
bbb.polling.validation.noTitle = Merci d'indiquer un titre
bbb.polling.validation.toomuchAnswers = Vous avez trop de réponses. Nombre de réponses maximal \:
bbb.polling.validation.eachNewLine = Merci d'indiquer au moins 2 réponses, chacune démarrant sur une nouvelle ligne
bbb.polling.validation.answerUnique = Chaque réponse devrait être unique
bbb.polling.validation.atLeast2Answers = Merci d'indiquer au moins 2 réponses
bbb.polling.validation.duplicateTitle = Ce sondage existe déjà
bbb.polling.pollView.vote = Soumettre
@ -425,16 +428,16 @@ bbb.polling.stats.close = Fermer
bbb.polling.stats.didNotVote = N'a pas voté
bbb.polling.stats.refresh = Rafraîchir
bbb.polling.stats.stopPoll = Arrêter les votes
bbb.polling.stats.webPollURL = Ce sondage est disponible au\:
bbb.polling.stats.webPollURL = Ce sondage est disponible au \:
bbb.polling.stats.answer = Réponses
bbb.polling.stats.votes = Votes
bbb.polling.stats.percentage = % Des Votes
bbb.polling.webPollClosed = Le sondage web est terminé.
bbb.polling.pollClosed = Le sondage est terminé\! Les résultats sont
bbb.polling.pollClosed = Le sondage est fermé. Les résultats sont \:
bbb.polling.vote.error.radio = Sélectionner une option ou fermer cette fenêtre pour ne pas voter.
bbb.polling.vote.error.check = Sélectionner une ou plusieurs options ou fermer cette fenêtre pour ne pas voter.
bbb.polling.vote.error.radio = Veuillez sélectionner une option, ou fermer cette fenêtre pour ne pas voter.
bbb.polling.vote.error.check = Veuillez sélectionner une ou plusieurs options, ou fermer cette fenêtre pour ne pas voter.
bbb.publishVideo.startPublishBtn.labelText = Démarrer le partage
bbb.publishVideo.changeCameraBtn.labelText = Changer la webcam
@ -449,7 +452,7 @@ bbb.shortcutkey.polling.focusTitle.function = Mettre le focus sur le champ de sa
bbb.shortcutkey.polling.focusQuestion = 81
bbb.shortcutkey.polling.focusQuestion.function = Mettre le focus sur le champ de saisie de la question.
bbb.shortcutkey.polling.focusAnswers = 65
bbb.shortcutkey.polling.focusAnswers.function = Mettre le focus sur le champ de saisie de la réponse.
bbb.shortcutkey.polling.focusAnswers.function = Mettre le focus sur le champ de saisie des réponses.
bbb.shortcutkey.polling.focusMultipleCB = 77
bbb.shortcutkey.polling.focusMultipleCB.function = Mettre le focus sur la case à cocher "Permettre les sélections multiples".
bbb.shortcutkey.polling.focusWebPollCB = 66
@ -466,7 +469,7 @@ bbb.shortcutkey.polling.save = 83
bbb.shortcutkey.polling.save.function = Sauvegarder votre sondage pour plus tard.
bbb.shortcutkey.pollStats.explanation = ----
bbb.shortcutkey.pollStats.explanation.function = Les résultats du sondage seront disponibles une fois le sondage publié.
bbb.shortcutkey.pollStats.explanation.function = Les résultats du sondage sont seulement disponibles une fois le sondage publié.
bbb.shortcutkey.polling.focusData = 68
bbb.shortcutkey.polling.focusData.function = Mettre le focus sur les résultats du sondage.
bbb.shortcutkey.polling.refresh = 82

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = הפסק שיתוף וסגור חלון ז
bbb.desktopPublish.minimizeBtn.toolTip = מזער חלון זה
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = שיתוף שולחן עבודה
bbb.desktopView.fitToWindow = התאם גודל לחלון
bbb.desktopView.actualSize = הצג גודל אמיתי

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Prekini podelu radne ploče i zatvori proz
bbb.desktopPublish.minimizeBtn.toolTip = Minimiraj ovaj prozor.
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Podela radne ploče
bbb.desktopView.fitToWindow = Podesi prozoru
bbb.desktopView.actualSize = Prikaži trenutnu veličinu

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Megosztás leállítása és bezárás
bbb.desktopPublish.minimizeBtn.toolTip = Kis méret
bbb.desktopPublish.minimizeBtn.accessibilityName = Képernyő-megosztása ablak kis méretűre
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Képernyő-megosztása ablak teljes méretűre
bbb.desktopPublish.closeBtn.accessibilityName = Megosztás bezárása és a Megosztás ablak bezárása
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Képernyőm megosztása
bbb.desktopView.fitToWindow = Ablakhoz igazítása
bbb.desktopView.actualSize = Eredeti méret
@ -222,7 +225,7 @@ bbb.highlighter.toolbar.color = Szín választása
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.logout.title = Logged Out
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

View File

@ -1,83 +1,83 @@
# bbb.mainshell.locale.version = 0.8
# bbb.mainshell.statusProgress.connecting = Connecting to the server
# bbb.mainshell.statusProgress.loading = Loading {0} modules
# bbb.mainshell.statusProgress.cannotConnectServer = Sorry, we cannot connect to the server.
bbb.mainshell.locale.version = Միացրեք երաժշտություն Ձեր ձայնարկիչները ստուգելու համար
bbb.mainshell.statusProgress.connecting = Միացում սերվերին
bbb.mainshell.statusProgress.loading = Մոդուլների {0} բեռնում
bbb.mainshell.statusProgress.cannotConnectServer = Կներեք, հնարավոր չէ միանալ սերվերին
# bbb.mainshell.copyrightLabel2 = (c) 2013 BigBlueButton Inc. [build {0}] - For more information visit <a href\='http\://www.bigbluebutton.org/' target\='_blank'><u>http\://www.bigbluebutton.org</u></a>
# bbb.mainshell.logBtn.toolTip = Open Log Window
# bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
# 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.micSettings.speakers.header = Test Speakers
bbb.mainshell.logBtn.toolTip = Բացել տեղեկամատյանի պատուհանը
bbb.mainshell.resetLayoutBtn.toolTip = Վերադառնալ նախնական դասավորվածությանը
bbb.oldlocalewindow.reminder1 = Հնարավոր է Ձեր BigBlueButton-ի լեզվի թարգմանությունը հին է։
bbb.oldlocalewindow.reminder2 = Մաքրեք Ձեր բրաուզերի հիշողությունը և փորձեք կրկին
bbb.oldlocalewindow.windowTitle = Սխալ։ Լեզվի հին թարգմանություն
bbb.micSettings.speakers.header = Փորձարկեք Ձեր բարձրախոսները
# 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 = Test or change your microphone (headset recommended).
# bbb.micSettings.changeMic = Test or Change Microphone
# bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
# bbb.micSettings.join = Join Audio
bbb.micSettings.playSound = Փորձարկեք Ձեր բարձրախոսները
bbb.micSettings.playSound.toolTip = Միացրեք երաժշտություն Ձեր բարձրախոսը ստուգելու համար
bbb.micSettings.hearFromHeadset = Դուք պետք է լսեք ձայնը Ձեր ականջակալներում, ոչ թէ բարձրախոսից
bbb.micSettings.speakIntoMic = Փորձարկեք կամ փոխեք Ձեր միկրոֆոնը (խորհուրդ է տրվում ականջակալներ)
bbb.micSettings.changeMic = Փորձարկեք կամ փոխեք Ձեր ականջակալները
bbb.micSettings.changeMic.toolTip = Բացեք Flash Player-ի միկրոֆոնի պարամետրների պատուհանը
bbb.micSettings.join = Միացնել ձայնը
# bbb.micSettings.cancel = Cancel
# bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
# bbb.micSettings.access.helpButton = Open tutorial videos in a new page.
bbb.micSettings.access.helpButton = Բացեք սովորացնող դասնթացը նոր էջում
# bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
# bbb.mainToolbar.helpBtn = Help
# bbb.mainToolbar.logoutBtn = Logout
# bbb.mainToolbar.logoutBtn.toolTip = Log out
# bbb.mainToolbar.langSelector = Select language
# bbb.mainToolbar.settingsBtn = Settings
# bbb.mainToolbar.settingsBtn.toolTip = Open Settings
bbb.mainToolbar.helpBtn = Օգնություն
bbb.mainToolbar.logoutBtn = Ելք
bbb.mainToolbar.logoutBtn.toolTip = Ելք
bbb.mainToolbar.langSelector = Ընտրեք լեզուն
bbb.mainToolbar.settingsBtn = Պարամետրներ
bbb.mainToolbar.settingsBtn.toolTip = Բացել պարամետրների պատուհանը
# bbb.mainToolbar.shortcutBtn = Shortcut Help
# bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Help window
# bbb.window.minimizeBtn.toolTip = Minimize
# bbb.window.maximizeRestoreBtn.toolTip = Maximize
# bbb.window.closeBtn.toolTip = Close
# bbb.videoDock.titleBar = Webcam Window Title Bar
bbb.window.minimizeBtn.toolTip = Փոքրացնել
bbb.window.maximizeRestoreBtn.toolTip = Մեծացնել
bbb.window.closeBtn.toolTip = Փագել
bbb.videoDock.titleBar = Տեսախցիկի պատուհանի վերնագիրը
# bbb.presentation.titleBar = Presentation Window Title Bar
# bbb.chat.titleBar = Chat Window Title Bar
# bbb.users.title = Users{0} {1}
bbb.users.title = Օգտվողներ{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.minimizeBtn.accessibilityName = Փոքրացնել օգտվողների պատուհանը
# bbb.users.maximizeRestoreBtn.accessibilityName = Maximize the Users Window
# bbb.users.settings.buttonTooltip = Settings
bbb.users.settings.buttonTooltip = Պարամետրներ
# bbb.users.settings.audioSettings = Audio Settings
# 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.muteAllExcept = Խլացնել բոլոր օգտվողներին, բացի ցուցադրողից
# bbb.users.settings.unmuteAll = Unmute All Users
# bbb.users.settings.lowerAllHands = Lower All Hands
# bbb.users.raiseHandBtn.toolTip = Raise Hand
# 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.raiseHandBtn.toolTip = Ձերք բարցրացնել
bbb.users.pushToTalk.toolTip = Խոսել
bbb.users.pushToMute.toolTip = Անջատել խոսափողը
bbb.users.muteMeBtnTxt.talk = Միացնել խոսափողը
bbb.users.muteMeBtnTxt.mute = Անջատել
bbb.users.muteMeBtnTxt.muted = Անջատած է
# bbb.users.muteMeBtnTxt.unmuted = Unmuted
# 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.accessibilityName = Օգտվողների ցանկ։ Օգտագործել սլաքները փոխելու համար։
bbb.users.usersGrid.nameItemRenderer = Անուն
bbb.users.usersGrid.nameItemRenderer.youIdentifier = Դուք
# bbb.users.usersGrid.statusItemRenderer = Status
# bbb.users.usersGrid.statusItemRenderer.changePresenter = Change Presenter
bbb.users.usersGrid.statusItemRenderer.changePresenter = Փոխել ներկայացնողին
# bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
# bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
bbb.users.usersGrid.statusItemRenderer.moderator = Մոդերատոր
# bbb.users.usersGrid.statusItemRenderer.lowerHand = Lower Hand
# bbb.users.usersGrid.statusItemRenderer.handRaised = Hand Raised
# bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
bbb.users.usersGrid.statusItemRenderer.viewer = Նայող
# bbb.users.usersGrid.mediaItemRenderer = Media
# bbb.users.usersGrid.mediaItemRenderer.talking = Talking
bbb.users.usersGrid.mediaItemRenderer.talking = Խոսել
# bbb.users.usersGrid.mediaItemRenderer.webcam = Sharing Webcam
# bbb.users.usersGrid.mediaItemRenderer.webcamBtn = View webcam
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Նայել տեսախցիկը
# bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Unmute {0}
# bbb.users.usersGrid.mediaItemRenderer.pushToMute = Mute {0}
# bbb.users.usersGrid.mediaItemRenderer.pushToLock = Lock {0}'s mic
# bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Unlock {0}'s mic
# 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.micOff = Խոսափողը անջատել
bbb.users.usersGrid.mediaItemRenderer.micOn = Խոսափողը միացնել
# bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
# bbb.presentation.title = Presentation
bbb.presentation.title = Ցուցադրում
# bbb.presentation.titleWithPres = Presentation\: {0}
# bbb.presentation.quickLink.label = Presentation Window
# bbb.presentation.fitToWidth.toolTip = Fit presentation to width
@ -121,7 +121,7 @@
# bbb.fileupload.deleteBtn.toolTip = Delete Presentation
# bbb.fileupload.showBtn = Show
# bbb.fileupload.showBtn.toolTip = Show Presentation
# bbb.fileupload.okCancelBtn = Close
bbb.fileupload.okCancelBtn = Փագել
# bbb.fileupload.okCancelBtn.toolTip = Close the File Upload dialog box
# bbb.fileupload.genThumbText = Generating thumbnails..
# bbb.fileupload.progBarLbl = Progress\:
@ -175,20 +175,23 @@
# bbb.desktopPublish.region.tooltip = Share a part of your screen
# bbb.desktopPublish.region.label = Region
# bbb.desktopPublish.stop.tooltip = Close screen share
# bbb.desktopPublish.stop.label = Close
bbb.desktopPublish.stop.label = Փագել
# bbb.desktopPublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
# bbb.desktopPublish.closeBtn.toolTip = Stop Sharing and Close
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
bbb.desktopPublish.minimizeBtn.toolTip = Փոքրացնել
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
# bbb.desktopView.title = Desktop Sharing
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size
# bbb.desktopView.minimizeBtn.accessibilityName = Minimize the Desktop Sharing View Window
# bbb.desktopView.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing View Window
# bbb.desktopView.closeBtn.accessibilityName = Close the Desktop Sharing View Window
# bbb.toolbar.phone.toolTip.start = Join Audio
bbb.toolbar.phone.toolTip.start = Միացնել ձայնը
# bbb.toolbar.phone.toolTip.stop = Leave Audio
# bbb.toolbar.deskshare.toolTip.start = Share My Desktop
# bbb.toolbar.deskshare.toolTip.stop = Stop Sharing My Desktop
@ -421,7 +424,7 @@
# bbb.polling.toolbar.toolTip = Polling
# bbb.polling.stats.repost = Repost
# bbb.polling.stats.close = Close
bbb.polling.stats.close = Փագել
# bbb.polling.stats.didNotVote = Did Not Vote
# bbb.polling.stats.refresh = Refresh
# bbb.polling.stats.stopPoll = Stop Poll

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Berhenti berbagi dan tutup jendela ini.
bbb.desktopPublish.minimizeBtn.toolTip = Minimalkan jendela ini.
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Berbagi Desktop
bbb.desktopView.fitToWindow = Sesuaikan ke jendela
bbb.desktopView.actualSize = Tampilkan ukuran sebenarnya

View File

@ -1,4 +1,4 @@
bbb.mainshell.locale.version = 0.81
bbb.mainshell.locale.version = 0.8
bbb.mainshell.statusProgress.connecting = Connessione alla conferenza in corso...
bbb.mainshell.statusProgress.loading = Caricamento {0}
bbb.mainshell.statusProgress.cannotConnectServer = Errore di connessione.
@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Interrompi la condivisione e chiudi questa
bbb.desktopPublish.minimizeBtn.toolTip = Riduci questa finestra
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimizza la finestra di Condivisione del desktop
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Massimizza la finestra di Condivisione del desktop
bbb.desktopPublish.closeBtn.accessibilityName = Interrompi e Chiudi la finestra di Condivisione del desktop
bbb.desktopPublish.javaRequiredLabel = E' richiesto Java 7 update 45 o versione successiva
bbb.desktopPublish.javaTestLinkLabel = Test della versione Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Verifica versione Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Verifica versione Java
bbb.desktopView.title = Condivisione del desktop
bbb.desktopView.fitToWindow = Adatta alla finestra
bbb.desktopView.actualSize = Visualizza dimensione reale

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = 共有を停止し、閉じる
bbb.desktopPublish.minimizeBtn.toolTip = 最小化
bbb.desktopPublish.minimizeBtn.accessibilityName = デスクトップ共有の公開ウィン​​ドウを最小化
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = デスクトップ共有の公開ウィン​​ドウを最大化
bbb.desktopPublish.closeBtn.accessibilityName = 共有を停止し、デスクトップ共有の公開ウィンドウを閉じます
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = デスクトップ共有
bbb.desktopView.fitToWindow = ウィンドウに合わせる
bbb.desktopView.actualSize = 実際のサイズを表示します

View File

@ -181,7 +181,10 @@ bbb.chat.sendBtn = Жөнелту
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
# bbb.desktopView.title = Desktop Sharing
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size

View File

@ -181,7 +181,10 @@
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
# bbb.desktopView.title = Desktop Sharing
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = 화면 공유를 중지하고 윈도우를
bbb.desktopPublish.minimizeBtn.toolTip = 윈도우를 최소화합니다. \# Minimize this window.
bbb.desktopPublish.minimizeBtn.accessibilityName = 바탕화면 공유 게시 창 최소화
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = 바탕화면 공유 게시 창 최대화
bbb.desktopPublish.closeBtn.accessibilityName = 공유를 멈추고 바탕화면 공유 게시 창 닫기
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = 화면 공유
bbb.desktopView.fitToWindow = 윈도우에 맞게 정렬하기 \# Fit to Window
bbb.desktopView.actualSize = 실제 화면사이즈로 \# Display actual size

View File

@ -1,66 +1,66 @@
bbb.mainshell.locale.version = 0.8
# bbb.mainshell.statusProgress.connecting = Connecting to the server
bbb.mainshell.statusProgress.loading = ?k?limas\:
bbb.mainshell.statusProgress.cannotConnectServer = Atsiprašome, n?ra galimyb?s prisijungti prie serverio.
bbb.mainshell.statusProgress.connecting = Jungiamasi prie serverio
bbb.mainshell.statusProgress.loading = Kraunasi {0} moduliai
bbb.mainshell.statusProgress.cannotConnectServer = Atsiprašome, nėra galimybės prisijungti prie serverio.
# bbb.mainshell.copyrightLabel2 = (c) 2013 BigBlueButton Inc. [build {0}] - For more information visit <a href\='http\://www.bigbluebutton.org/' target\='_blank'><u>http\://www.bigbluebutton.org</u></a>
bbb.mainshell.logBtn.toolTip = Atverti ?vyki? lang?
bbb.mainshell.resetLayoutBtn.toolTip = Atstatyti langus ? pradin? pad?t?
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.micSettings.speakers.header = Test Speakers
bbb.mainshell.logBtn.toolTip = Atidaryti prisijungimo langą
bbb.mainshell.resetLayoutBtn.toolTip = Atstatyti išdėstymą
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.micSettings.speakers.header = Testuoti garsiakalbius
# 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 = Test or change your microphone (headset recommended).
# bbb.micSettings.changeMic = Test or Change Microphone
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 = Patikrinti ar pakeisti mikrofoną (rekomenduojamos ausinės).
bbb.micSettings.changeMic = Tikrinti arba pakeisti mikrofoną
# bbb.micSettings.changeMic.toolTip = Open the Flash Player microphone settings dialog box
# bbb.micSettings.join = Join Audio
# bbb.micSettings.cancel = Cancel
bbb.micSettings.cancel = Atšaukti
# bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
# bbb.micSettings.access.helpButton = Open tutorial videos in a new page.
# bbb.micSettings.access.title = Audio Settings. Focus will remain in this audio settings window until the window is closed.
bbb.mainToolbar.helpBtn = Pagalba
bbb.mainToolbar.logoutBtn = Atsijungti
bbb.mainToolbar.logoutBtn.toolTip = Atsijungti
# bbb.mainToolbar.langSelector = Select language
# bbb.mainToolbar.settingsBtn = Settings
# bbb.mainToolbar.settingsBtn.toolTip = Open Settings
bbb.mainToolbar.langSelector = Pasirinkti kalbą
bbb.mainToolbar.settingsBtn = Nustatymai
bbb.mainToolbar.settingsBtn.toolTip = Atidaryti nustatymus
# bbb.mainToolbar.shortcutBtn = Shortcut Help
# bbb.mainToolbar.shortcutBtn.toolTip = Open Shortcut Help window
# bbb.window.minimizeBtn.toolTip = Minimize
# bbb.window.maximizeRestoreBtn.toolTip = Maximize
# bbb.window.closeBtn.toolTip = Close
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.users.title = Users{0} {1}
bbb.users.title = Vartotojai{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 Settings
# bbb.users.settings.webcamSettings = Webcam Settings
# bbb.users.settings.muteAll = Mute All Users
bbb.users.settings.buttonTooltip = Nustatymai
bbb.users.settings.audioSettings = Garso nustatymai
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.unmuteAll = Unmute All Users
# bbb.users.settings.lowerAllHands = Lower All Hands
# bbb.users.raiseHandBtn.toolTip = Raise Hand
bbb.users.settings.unmuteAll = Įjungti garsą visiems vartotojams
bbb.users.settings.lowerAllHands = Nuleisti visas rankas
bbb.users.raiseHandBtn.toolTip = Pakelti ranką
# bbb.users.pushToTalk.toolTip = Talk
# bbb.users.pushToMute.toolTip = Mute yourself
bbb.users.pushToMute.toolTip = Nutildyti save
# bbb.users.muteMeBtnTxt.talk = Unmute
# bbb.users.muteMeBtnTxt.mute = Mute
# bbb.users.muteMeBtnTxt.muted = Muted
bbb.users.muteMeBtnTxt.mute = Nutildyti
bbb.users.muteMeBtnTxt.muted = Nutildytas
# bbb.users.muteMeBtnTxt.unmuted = Unmuted
# bbb.users.usersGrid.accessibilityName = Users List. Use the arrow keys to navigate.
bbb.users.usersGrid.accessibilityName = Dalyvių sąrašas. Naudokite rodyklių klavišus, kad naviguoti.
# bbb.users.usersGrid.nameItemRenderer = Name
# bbb.users.usersGrid.nameItemRenderer.youIdentifier = you
# bbb.users.usersGrid.statusItemRenderer = Status
# bbb.users.usersGrid.statusItemRenderer.changePresenter = Change Presenter
# bbb.users.usersGrid.statusItemRenderer.presenter = Presenter
# bbb.users.usersGrid.statusItemRenderer.moderator = Moderator
bbb.users.usersGrid.statusItemRenderer.moderator = Moderatorius
# bbb.users.usersGrid.statusItemRenderer.lowerHand = Lower Hand
# bbb.users.usersGrid.statusItemRenderer.handRaised = Hand Raised
# bbb.users.usersGrid.statusItemRenderer.viewer = Viewer
@ -78,26 +78,26 @@ bbb.mainToolbar.logoutBtn.toolTip = Atsijungti
# bbb.users.usersGrid.mediaItemRenderer.micOn = Microphone on
# bbb.users.usersGrid.mediaItemRenderer.noAudio = Not in audio conference
bbb.presentation.title = Prezentacija
# bbb.presentation.titleWithPres = Presentation\: {0}
bbb.presentation.titleWithPres = Prezentacija\: {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 = ?kelti dokument? prezentacijai.
bbb.presentation.backBtn.toolTip = Buv?s puslapis.
# bbb.presentation.btnSlideNum.toolTip = Select a slide
bbb.presentation.uploadPresBtn.toolTip = Įkelti dokumentą prezentacijai.
bbb.presentation.backBtn.toolTip = Buvęs puslapis.
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.
bbb.presentation.uploadcomplete = ?k?limas baigtas. Prašome palaukti, vyksta konvertavimas.
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 = Klaida konvertuojant Office dokument?.
bbb.presentation.uploadcomplete = Įkėlimas baigtas. Prašome palaukti, vyksta konvertavimas.
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 = Klaida konvertuojant Office dokumentą.
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 nustatant puslapi? skai?i?.
bbb.presentation.error.convert.maxnbpagereach = Klaida\: ?keliamas dokumentas turi per daug lap?.
bbb.presentation.converted = Konvertuojamas {0} iš {1} puslapis.
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.ok = Gerai
# bbb.presentation.slider = Presentation zoom level
# bbb.presentation.slideloader.starttext = Slide text start
@ -107,20 +107,20 @@ 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.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.fileupload.title = ?kelti prezentacij?
bbb.fileupload.title = Pridėti failus į Jūsų pristatymą
bbb.fileupload.fileLbl = Failas\:
# bbb.fileupload.selectBtn.label = Select File
bbb.fileupload.selectBtn.toolTip = Surasti fail?
bbb.fileupload.uploadBtn = ?kelti
bbb.fileupload.uploadBtn.toolTip = ?kelti fail?
bbb.fileupload.presentationNamesLbl = ?keltos prezentacijos\:
bbb.fileupload.deleteBtn.toolTip = Ištrinti prezentacij?
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.presentationNamesLbl = Įkeltos prezentacijos\:
bbb.fileupload.deleteBtn.toolTip = Ištrinti prezentaciją
bbb.fileupload.showBtn = Parodyti
bbb.fileupload.showBtn.toolTip = Parodyti prezentacij?
bbb.fileupload.showBtn.toolTip = Parodyti prezentaciją
bbb.fileupload.okCancelBtn = Atšaukti
# bbb.fileupload.okCancelBtn.toolTip = Close the File Upload dialog box
bbb.fileupload.genThumbText = Kuriama..
@ -129,12 +129,12 @@ bbb.chat.title = Pokalbiai
# bbb.chat.quickLink.label = Chat Window
bbb.chat.cmpColorPicker.toolTip = Teksto spalva
# bbb.chat.input.accessibilityName = Chat Message Editing Field
bbb.chat.sendBtn = Si?sti
bbb.chat.sendBtn.toolTip = Si?sti žinut?
bbb.chat.sendBtn = Siųsti
bbb.chat.sendBtn.toolTip = Siųsti žinutę
# bbb.chat.sendBtn.accessibilityName = Send chat message
bbb.chat.publicChatUsername = Visiems
# bbb.chat.optionsTabName = Options
# bbb.chat.privateChatSelect = Select a person to chat with privately
bbb.chat.optionsTabName = Parinktys
bbb.chat.privateChatSelect = Pasirinkite asmenį kalbėtis privačiai
# bbb.chat.private.userLeft = <b><i>The user has left.</i></b>
# bbb.chat.usersList.toolTip = Select a participant to open a private chat
# bbb.chat.chatOptions = Chat Options
@ -145,11 +145,11 @@ bbb.chat.publicChatUsername = Visiems
# 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.publishVideo.changeCameraBtn.labelText = Change Webcam
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.startPublishBtn.labelText = Start Sharing
bbb.publishVideo.startPublishBtn.toolTip = Prad?ti transliacij?
bbb.publishVideo.startPublishBtn.labelText = Pradėti bendrinti
bbb.publishVideo.startPublishBtn.toolTip = Pradėti vaizdo transliaciją
# bbb.videodock.title = Webcams
# bbb.videodock.quickLink.label = Webcams Window
# bbb.video.minimizeBtn.accessibilityName = Minimize the Webcams Window
@ -167,21 +167,24 @@ bbb.publishVideo.startPublishBtn.toolTip = Prad?ti transliacij?
# bbb.video.publish.hint.cameraIsBeingUsed = Your webcam is being used 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.closeBtn.label = Atšaukti
# bbb.video.publish.titleBar = Publish Webcam Window
bbb.desktopPublish.title = Ekrano rodymas kitiems
# bbb.desktopPublish.fullscreen.tooltip = Share your whole screen
# bbb.desktopPublish.fullscreen.label = Full Screen
bbb.desktopPublish.fullscreen.label = Per visą ekraną
# bbb.desktopPublish.region.tooltip = Share a part of your screen
# bbb.desktopPublish.region.label = Region
# bbb.desktopPublish.stop.tooltip = Close screen share
# bbb.desktopPublish.stop.label = Close
bbb.desktopPublish.stop.label = Uždaryti
# bbb.desktopPublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
# bbb.desktopPublish.closeBtn.toolTip = Stop Sharing and Close
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
# bbb.desktopView.title = Desktop Sharing
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size
@ -206,19 +209,19 @@ bbb.desktopPublish.title = Ekrano rodymas kitiems
# bbb.layout.save.complete = Layouts were successfully saved
# bbb.layout.load.complete = Layouts were successfully loaded
# bbb.layout.load.failed = Failed to load the layouts
# bbb.highlighter.toolbar.pencil = Pencil
bbb.highlighter.toolbar.pencil = Pieštukas
# bbb.highlighter.toolbar.pencil.accessibilityName = Switch whiteboard cursor to pencil
# bbb.highlighter.toolbar.ellipse = Circle
bbb.highlighter.toolbar.ellipse = Apskritimas
# bbb.highlighter.toolbar.ellipse.accessibilityName = Switch whiteboard cursor to circle
# bbb.highlighter.toolbar.rectangle = Rectangle
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 Page
bbb.highlighter.toolbar.clear = Išvalyti puslapį
# bbb.highlighter.toolbar.clear.accessibilityName = Clear the whiteboard page
# bbb.highlighter.toolbar.undo = Undo Shape
# bbb.highlighter.toolbar.undo.accessibilityName = Undo the last whiteboard shape
# bbb.highlighter.toolbar.color = Select Color
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
@ -237,33 +240,33 @@ bbb.logout.button.label = Gerai
# bbb.logout.confirm.yes = Yes
# bbb.logout.confirm.no = No
# bbb.notes.title = Notes
# bbb.notes.cmpColorPicker.toolTip = Text Color
# bbb.notes.saveBtn = Save
bbb.notes.cmpColorPicker.toolTip = Teksto spalva
bbb.notes.saveBtn = Išsaugoti
# bbb.notes.saveBtn.toolTip = Save Note
# 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.label = Java versijos klaida
# 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.java.command = Įdiegti naujesnę Java
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.warning.label = Warning
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.
# ltbcustom.bbb.highlighter.toolbar.triangle = Triangle
ltbcustom.bbb.highlighter.toolbar.triangle = Trikampis
# ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = Switch whiteboard cursor to triangle
# ltbcustom.bbb.highlighter.toolbar.line = Line
ltbcustom.bbb.highlighter.toolbar.line = Linija
# ltbcustom.bbb.highlighter.toolbar.line.accessibilityName = Switch whiteboard cursor to line
# ltbcustom.bbb.highlighter.toolbar.text = Text
ltbcustom.bbb.highlighter.toolbar.text = Tekstas
# 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
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Teksto spalva
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Šrifto dydis
# bbb.accessibility.chat.chatBox.reachedFirst = You have reached the first message.
# bbb.accessibility.chat.chatBox.reachedLatest = You have reached the latest message.
@ -289,99 +292,99 @@ bbb.logout.button.label = Gerai
# bbb.shortcuthelp.headers.shortcut = Shortcut
# bbb.shortcuthelp.headers.function = Function
# bbb.shortcutkey.general.minimize = 189
bbb.shortcutkey.general.minimize = 189
# bbb.shortcutkey.general.minimize.function = Minimize current window
# bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize = 187
# bbb.shortcutkey.general.maximize.function = Maximize current window
# bbb.shortcutkey.flash.exit = 81
bbb.shortcutkey.flash.exit = 81
# bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
# bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme = 77
# bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
# bbb.shortcutkey.chat.chatinput = 73
bbb.shortcutkey.chat.chatinput = 73
# bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
# bbb.shortcutkey.present.focusslide = 67
bbb.shortcutkey.present.focusslide = 67
# bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
# bbb.shortcutkey.whiteboard.undo = 90
bbb.shortcutkey.whiteboard.undo = 90
# bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
# bbb.shortcutkey.focus.users = 49
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 = 50
# bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
# bbb.shortcutkey.focus.presentation = 51
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 = 52
# bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
# bbb.shortcutkey.focus.pollingCreate = 67
bbb.shortcutkey.focus.pollingCreate = 67
# bbb.shortcutkey.focus.pollingCreate.function = Move focus to the Poll Creation window, if it is open.
# bbb.shortcutkey.focus.pollingStats = 83
bbb.shortcutkey.focus.pollingStats = 83
# bbb.shortcutkey.focus.pollingStats.function = Move focus to the Poll Statistics window, if it is open.
# bbb.shortcutkey.focus.voting = 89
bbb.shortcutkey.focus.voting = 89
# bbb.shortcutkey.focus.voting.function = Move focus to the Voting window, if it is open.
# bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop = 68
# bbb.shortcutkey.share.desktop.function = Open desktop sharing window
# bbb.shortcutkey.share.microphone = 79
bbb.shortcutkey.share.microphone = 79
# bbb.shortcutkey.share.microphone.function = Open audio settings window
# bbb.shortcutkey.share.webcam = 66
bbb.shortcutkey.share.webcam = 66
# bbb.shortcutkey.share.webcam.function = Open webcam sharing window
# bbb.shortcutkey.shortcutWindow = 72
bbb.shortcutkey.shortcutWindow = 72
# bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
# bbb.shortcutkey.logout = 76
bbb.shortcutkey.logout = 76
# bbb.shortcutkey.logout.function = Log out of this meeting
# bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand = 82
# bbb.shortcutkey.raiseHand.function = Raise your hand
# bbb.shortcutkey.present.upload = 85
bbb.shortcutkey.present.upload = 85
# bbb.shortcutkey.present.upload.function = Upload presentation
# bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous = 65
# bbb.shortcutkey.present.previous.function = Go to previous slide
# bbb.shortcutkey.present.select = 83
bbb.shortcutkey.present.select = 83
# bbb.shortcutkey.present.select.function = View all slides
# bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next = 69
# bbb.shortcutkey.present.next.function = Go to next slide
# bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth = 70
# bbb.shortcutkey.present.fitWidth.function = Fit slides to width
# bbb.shortcutkey.present.fitPage = 80
bbb.shortcutkey.present.fitPage = 80
# bbb.shortcutkey.present.fitPage.function = Fit slides to page
# bbb.shortcutkey.users.makePresenter = 80
bbb.shortcutkey.users.makePresenter = 80
# bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
# bbb.shortcutkey.users.kick = 75
bbb.shortcutkey.users.kick = 75
# bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
# bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute = 83
# bbb.shortcutkey.users.mute.function = Mute or unmute selected person
# bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall = 65
# bbb.shortcutkey.users.muteall.function = Mute or unmute all users
# bbb.shortcutkey.users.focusUsers = 85
bbb.shortcutkey.users.focusUsers = 85
# bbb.shortcutkey.users.focusUsers.function = Focus to users list
# bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres = 65
# bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
# bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs = 89
# bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
# bbb.shortcutkey.chat.focusBox = 66
bbb.shortcutkey.chat.focusBox = 66
# bbb.shortcutkey.chat.focusBox.function = Focus to chat box
# bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour = 67
# bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
# bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage = 83
# bbb.shortcutkey.chat.sendMessage.function = Send chat message
# bbb.shortcutkey.chat.explanation = ----
# bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
# bbb.shortcutkey.chat.chatbox.advance = 40
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 = 38
# bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
# bbb.shortcutkey.chat.chatbox.repeat = 32
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 = 39
# bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
# bbb.shortcutkey.chat.chatbox.gofirst = 37
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 = 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
@ -390,7 +393,7 @@ bbb.logout.button.label = Gerai
# bbb.polling.createPoll.moreThanOneResponse = Allow users to choose more than one response
# bbb.polling.createPoll.hint = Hint\: Start every answer with a new line
# bbb.polling.createPoll.answers = Answers\:
# bbb.polling.createPoll.question = Question\:
bbb.polling.createPoll.question = Klausimas\:
# bbb.polling.createPoll.title = Title\:
# bbb.polling.createPoll.publishToWeb = Enable web polling
@ -398,8 +401,8 @@ bbb.logout.button.label = Gerai
# bbb.polling.pollPreview.modify = Modify
# bbb.polling.pollPreview.publish = Publish
# bbb.polling.pollPreview.preview = Preview
# bbb.polling.pollPreview.save = Save
# bbb.polling.pollPreview.cancel = Cancel
bbb.polling.pollPreview.save = Išsaugoti
bbb.polling.pollPreview.cancel = Atšaukti
# bbb.polling.pollPreview.modify = Modify
# bbb.polling.pollPreview.hereIsYourPoll = Here is your poll\:
# bbb.polling.pollPreview.ifYouWantChanges = if you want to make any changes use the 'Modify' button
@ -421,7 +424,7 @@ bbb.logout.button.label = Gerai
# bbb.polling.toolbar.toolTip = Polling
# bbb.polling.stats.repost = Repost
# bbb.polling.stats.close = Close
bbb.polling.stats.close = Uždaryti
# bbb.polling.stats.didNotVote = Did Not Vote
# bbb.polling.stats.refresh = Refresh
# bbb.polling.stats.stopPoll = Stop Poll
@ -436,53 +439,53 @@ bbb.logout.button.label = Gerai
# bbb.polling.vote.error.radio = Please select an option, or close this window to not vote.
# bbb.polling.vote.error.check = Please select one or more options, or close this window to not vote.
# bbb.publishVideo.startPublishBtn.labelText = Start Sharing
# bbb.publishVideo.changeCameraBtn.labelText = Change Webcam
bbb.publishVideo.startPublishBtn.labelText = Pradėti bendrinti
bbb.publishVideo.changeCameraBtn.labelText = Pakeisti vaizdo kamerą
# bbb.accessibility.alerts.madePresenter = You are now the Presenter.
# bbb.accessibility.alerts.madeViewer = You are now a Viewer.
# bbb.shortcutkey.polling.buttonClick = 80
bbb.shortcutkey.polling.buttonClick = 80
# bbb.shortcutkey.polling.buttonClick.function = Open the Polling Menu.
# bbb.shortcutkey.polling.focusTitle = 67
bbb.shortcutkey.polling.focusTitle = 67
# bbb.shortcutkey.polling.focusTitle.function = Focus to Title input box.
# bbb.shortcutkey.polling.focusQuestion = 81
bbb.shortcutkey.polling.focusQuestion = 81
# bbb.shortcutkey.polling.focusQuestion.function = Focus to Question input box.
# bbb.shortcutkey.polling.focusAnswers = 65
bbb.shortcutkey.polling.focusAnswers = 65
# bbb.shortcutkey.polling.focusAnswers.function = Focus to Answers input box.
# bbb.shortcutkey.polling.focusMultipleCB = 77
bbb.shortcutkey.polling.focusMultipleCB = 77
# bbb.shortcutkey.polling.focusMultipleCB.function = Focus to "Allow multiple selections" checkbox.
# bbb.shortcutkey.polling.focusWebPollCB = 66
bbb.shortcutkey.polling.focusWebPollCB = 66
# bbb.shortcutkey.polling.focusWebPollCB.function = Focus to "Enable web polling" checkbox.
# bbb.shortcutkey.polling.previewClick = 80
bbb.shortcutkey.polling.previewClick = 80
# bbb.shortcutkey.polling.previewClick.function = Preview your poll and proceed.
# bbb.shortcutkey.polling.cancelClick = 88
# bbb.shortcutkey.polling.cancelClick.function = Cancel and exit Poll creation.
# bbb.shortcutkey.polling.modify = 69
bbb.shortcutkey.polling.modify = 69
# bbb.shortcutkey.polling.modify.function = Go back and modify your poll.
# bbb.shortcutkey.polling.publish = 85
bbb.shortcutkey.polling.publish = 85
# bbb.shortcutkey.polling.publish.function = Publish your poll and open voting.
# bbb.shortcutkey.polling.save = 83
bbb.shortcutkey.polling.save = 83
# bbb.shortcutkey.polling.save.function = Save your poll to use later.
# bbb.shortcutkey.pollStats.explanation = ----
# bbb.shortcutkey.pollStats.explanation.function = Poll results are only available once the poll has been published.
# bbb.shortcutkey.polling.focusData = 68
bbb.shortcutkey.polling.focusData = 68
# bbb.shortcutkey.polling.focusData.function = Focus to poll results.
# bbb.shortcutkey.polling.refresh = 82
bbb.shortcutkey.polling.refresh = 82
# bbb.shortcutkey.polling.refresh.function = Refresh poll results.
# bbb.shortcutkey.polling.focusWebPoll = 73
bbb.shortcutkey.polling.focusWebPoll = 73
# bbb.shortcutkey.polling.focusWebPoll.function = Focus to web polling URL box.
# bbb.shortcutkey.polling.stopPoll = 79
bbb.shortcutkey.polling.stopPoll = 79
# bbb.shortcutkey.polling.stopPoll.function = Stop the poll and end voting.
# bbb.shortcutkey.polling.repostPoll = 80
bbb.shortcutkey.polling.repostPoll = 80
# bbb.shortcutkey.polling.repostPoll.function = Re-publish the poll.
# bbb.shortcutkey.polling.closeStatsWindow = 88
# bbb.shortcutkey.polling.closeStatsWindow.function = Close Polling Results window.
# bbb.shortcutkey.polling.vote = 86
# bbb.shortcutkey.polling.vote.function = Cast your vote for the options selected.
# bbb.shortcutkey.polling.focusVoteQuestion = 81
bbb.shortcutkey.polling.focusVoteQuestion = 81
# bbb.shortcutkey.polling.focusVoteQuestion.function = Focus to question.
# bbb.shortcutkey.specialKeys.space = Spacebar

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Aptur?t raid?šanu un aizv?rt šo logu.
bbb.desktopPublish.minimizeBtn.toolTip = Minimiz?t šo logu.
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Darbavirsmas raid?šana
bbb.desktopView.fitToWindow = Ietilpin?t log?
bbb.desktopView.actualSize = R?d?t re?laj? izm?r?

View File

@ -181,7 +181,10 @@ bbb.presentation.title = അവതരണം
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
# bbb.desktopView.title = Desktop Sharing
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Хуваалтуудыг зогсоож э
bbb.desktopPublish.minimizeBtn.toolTip = Цонхыг нуух
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Дэлгэцээ хуваах
bbb.desktopView.fitToWindow = Цонхонд тохируулах
bbb.desktopView.actualSize = Оригнал хэмжээг харуулах

View File

@ -9,7 +9,7 @@ bbb.oldlocalewindow.reminder1 = Anda mungkin menggunakan terjemahan bahasa yang
bbb.oldlocalewindow.reminder2 = Sila kosongkan cache browser dan cuba sekali lagi.
bbb.oldlocalewindow.windowTitle = Perhatian\: Bahasa Terjemahan yang lama.
bbb.micSettings.speakers.header = Cubaan Pembesar Suara
# bbb.micSettings.microphone.header = Test Microphone
bbb.micSettings.microphone.header = Uji Mikrofon
bbb.micSettings.playSound = Cubaan Pembesar Suara
bbb.micSettings.playSound.toolTip = Mainkan muzik untuk mencuba pembesar suara anda
bbb.micSettings.hearFromHeadset = Anda sepatutnya mendengar audio di headset, bukannya di speker komputer anda.
@ -17,8 +17,8 @@ bbb.micSettings.speakIntoMic = Cuba atau tukar mikrofon anda (headset disyorkan)
bbb.micSettings.changeMic = Cuba atau Tukar Mikrofon
bbb.micSettings.changeMic.toolTip = Buka tetapan mikrofon Flash Player dialog box
bbb.micSettings.join = Sertai Audio
# bbb.micSettings.cancel = Cancel
# bbb.micSettings.cancel.toolTip = Cancel joining the audio conference
bbb.micSettings.cancel = Batal
bbb.micSettings.cancel.toolTip = Batal menyertai persidangan audio
bbb.micSettings.access.helpButton = Buka tutorial video di dalam halaman yang baru.
bbb.micSettings.access.title = Tetapan Audio. Fokus akan kekal di dalam tetapan audio window sehinggalah window ditutup.
bbb.mainToolbar.helpBtn = Bantuan
@ -37,7 +37,7 @@ bbb.presentation.titleBar = Presentation Window Title Bar
bbb.chat.titleBar = Chat Window Title Bar
bbb.users.title = Pengguna{0} {1}
bbb.users.titleBar = Users Window title bar
# bbb.users.quickLink.label = Users Window
bbb.users.quickLink.label = Window pengguna
bbb.users.minimizeBtn.accessibilityName = Kecilkan Users Window
bbb.users.maximizeRestoreBtn.accessibilityName = Besarkan Users Window
bbb.users.settings.buttonTooltip = Tetapan
@ -79,7 +79,7 @@ bbb.users.usersGrid.mediaItemRenderer.micOn = Mikrofon buka
bbb.users.usersGrid.mediaItemRenderer.noAudio = Tidak di dalam sidang audio
bbb.presentation.title = Presentation
bbb.presentation.titleWithPres = Presentation\: {0}
# bbb.presentation.quickLink.label = Presentation Window
bbb.presentation.quickLink.label = Window pembentangan
bbb.presentation.fitToWidth.toolTip = Muatkan presentation ke lebar
bbb.presentation.fitToPage.toolTip = Muatkan presentation ke halaman
bbb.presentation.uploadPresBtn.toolTip = Buka Upload Presentation dialog box
@ -126,7 +126,7 @@ bbb.fileupload.okCancelBtn.toolTip = Tutup Muatnaik Fail dialog box
bbb.fileupload.genThumbText = Menjana image..
bbb.fileupload.progBarLbl = Progres\:
bbb.chat.title = Chat
# bbb.chat.quickLink.label = Chat Window
bbb.chat.quickLink.label = Window chat
bbb.chat.cmpColorPicker.toolTip = Warna teks
bbb.chat.input.accessibilityName = Mesej Chat Editing Field
bbb.chat.sendBtn = Hantar
@ -151,58 +151,61 @@ bbb.publishVideo.cmbResolution.tooltip = Pilih resolusi webcam
bbb.publishVideo.startPublishBtn.labelText = Mulakan Perkongsian
bbb.publishVideo.startPublishBtn.toolTip = Mulakan berkongsi webcam anda
bbb.videodock.title = Webcam
# bbb.videodock.quickLink.label = Webcams Window
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 = 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 bersama {0}
# bbb.video.publish.hint.noCamera = No webcam available
bbb.video.publish.hint.noCamera = Tiada webcam tersedia
bbb.video.publish.hint.cantOpenCamera = Tidak boleh memulakan webcam anda
# bbb.video.publish.hint.waitingApproval = Waiting for approval
# bbb.video.publish.hint.videoPreview = Webcam preview
bbb.video.publish.hint.waitingApproval = Menunggu kelulusan
bbb.video.publish.hint.videoPreview = Webcam preview
bbb.video.publish.hint.openingCamera = Memulakan webcam...
# bbb.video.publish.hint.cameraDenied = Webcam access denied
# bbb.video.publish.hint.cameraIsBeingUsed = Your webcam is being used by another application
bbb.video.publish.hint.cameraDenied = Webcam dinafikan akses
bbb.video.publish.hint.cameraIsBeingUsed = Webcam anda sedang digunakan oleh aplikasi lain
# 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.closeBtn.label = Batal
# bbb.video.publish.titleBar = Publish Webcam Window
# bbb.desktopPublish.title = Desktop Sharing\: Presenter's Preview
# bbb.desktopPublish.fullscreen.tooltip = Share your whole screen
# bbb.desktopPublish.fullscreen.label = Full Screen
# bbb.desktopPublish.region.tooltip = Share a part of your screen
# bbb.desktopPublish.region.label = Region
# bbb.desktopPublish.stop.tooltip = Close screen share
bbb.desktopPublish.fullscreen.tooltip = Kongsi seluruh skrin anda
bbb.desktopPublish.fullscreen.label = Skrin penuh
bbb.desktopPublish.region.tooltip = Kongsi sebahagian skrin anda
bbb.desktopPublish.region.label = Wilayah
bbb.desktopPublish.stop.tooltip = Tutup perkongsian skrin
bbb.desktopPublish.stop.label = Tutup
# bbb.desktopPublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
# bbb.desktopPublish.closeBtn.toolTip = Stop Sharing and Close
bbb.desktopPublish.closeBtn.toolTip = Henti Perkongsian dan Tutup
bbb.desktopPublish.minimizeBtn.toolTip = Kecilkan
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
bbb.desktopPublish.javaTestLinkLabel = Uji Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Uji Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Uji Java
bbb.desktopView.title = Perkongsian Desktop
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size
bbb.desktopView.actualSize = Paparkan saiz sebenar
# bbb.desktopView.minimizeBtn.accessibilityName = Minimize the Desktop Sharing View Window
# bbb.desktopView.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing View Window
# bbb.desktopView.closeBtn.accessibilityName = Close the Desktop Sharing View Window
bbb.toolbar.phone.toolTip.start = Sertai Audio
# bbb.toolbar.phone.toolTip.stop = Leave Audio
bbb.toolbar.deskshare.toolTip.start = Kongsi My Desktop
# bbb.toolbar.deskshare.toolTip.stop = Stop Sharing My Desktop
bbb.toolbar.deskshare.toolTip.stop = Henti Kongsi My Desktop
bbb.toolbar.video.toolTip.start = Kongsi My Webcam
# bbb.toolbar.video.toolTip.stop = Stop Sharing My Webcam
bbb.toolbar.video.toolTip.stop = Henti Kongsi My Webcam
# bbb.layout.addButton.toolTip = Add the custom layout to the list
# bbb.layout.combo.toolTip = Change the current layout
bbb.layout.combo.toolTip = Tukar layout semasa
# 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.lockButton.toolTip = Kunci 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.combo.remote = Kawal
# bbb.layout.save.complete = Layouts were successfully saved
# bbb.layout.load.complete = Layouts were successfully loaded
# bbb.layout.load.failed = Failed to load the layouts
@ -226,16 +229,16 @@ bbb.highlighter.toolbar.color = Pilih Warna
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 failed
# bbb.logout.rejected = The connection to the server has been rejected
bbb.logout.connectionclosed = Penyambungan ke server telah ditutup
bbb.logout.connectionfailed = Penyambungan ke server telah gagal
bbb.logout.rejected = Penyambungan ke server telah ditolak
# bbb.logout.invalidapp = The red5 app does not exist
# bbb.logout.unknown = Your client has lost connection with the server
# bbb.logout.usercommand = You have logged out of the conference
# bbb.logout.confirm.title = Confirm Logout
# bbb.logout.confirm.message = Are you sure you want to log out?
# bbb.logout.confirm.yes = Yes
# bbb.logout.confirm.no = No
bbb.logout.confirm.yes = Ya
bbb.logout.confirm.no = Tidak
bbb.notes.title = Nota
bbb.notes.cmpColorPicker.toolTip = Warna teks
bbb.notes.saveBtn = Simpan
@ -263,10 +266,10 @@ ltbcustom.bbb.highlighter.toolbar.triangle = Segitiga
ltbcustom.bbb.highlighter.toolbar.text = Teks
# ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = Switch whiteboard cursor to text
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = Warna Teks
# ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Font size
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = Saiz font
# 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.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.
@ -280,118 +283,118 @@ bbb.shortcuthelp.title = Shortcut Bantuan
# 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.general = Global shortcuts
# bbb.shortcuthelp.dropdown.presentation = Presentation shortcuts
# bbb.shortcuthelp.dropdown.chat = Chat shortcuts
# bbb.shortcuthelp.dropdown.users = Users shortcuts
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.polling = Presenter Polling shortcuts
# bbb.shortcuthelp.dropdown.polling2 = Viewer Polling shortcuts
# bbb.shortcuthelp.headers.shortcut = Shortcut
bbb.shortcuthelp.headers.shortcut = Shortcut
# bbb.shortcuthelp.headers.function = Function
bbb.shortcutkey.general.minimize = 189
# bbb.shortcutkey.general.minimize.function = Minimize current window
# bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize = 187
# bbb.shortcutkey.general.maximize.function = Maximize current window
# bbb.shortcutkey.flash.exit = 81
bbb.shortcutkey.flash.exit = 81
# bbb.shortcutkey.flash.exit.function = Focus out of the Flash window
# bbb.shortcutkey.users.muteme = 77
bbb.shortcutkey.users.muteme = 77
# bbb.shortcutkey.users.muteme.function = Mute and Unmute your microphone
# bbb.shortcutkey.chat.chatinput = 73
bbb.shortcutkey.chat.chatinput = 73
# bbb.shortcutkey.chat.chatinput.function = Focus the chat input field
# bbb.shortcutkey.present.focusslide = 67
bbb.shortcutkey.present.focusslide = 67
# bbb.shortcutkey.present.focusslide.function = Focus the presentation slide
# bbb.shortcutkey.whiteboard.undo = 90
bbb.shortcutkey.whiteboard.undo = 90
# bbb.shortcutkey.whiteboard.undo.function = Undo last whiteboard mark
# bbb.shortcutkey.focus.users = 49
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 = 50
# bbb.shortcutkey.focus.video.function = Move focus to the Webcam window
# bbb.shortcutkey.focus.presentation = 51
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 = 52
# bbb.shortcutkey.focus.chat.function = Move focus to the Chat window
# bbb.shortcutkey.focus.pollingCreate = 67
bbb.shortcutkey.focus.pollingCreate = 67
# bbb.shortcutkey.focus.pollingCreate.function = Move focus to the Poll Creation window, if it is open.
# bbb.shortcutkey.focus.pollingStats = 83
bbb.shortcutkey.focus.pollingStats = 83
# bbb.shortcutkey.focus.pollingStats.function = Move focus to the Poll Statistics window, if it is open.
# bbb.shortcutkey.focus.voting = 89
bbb.shortcutkey.focus.voting = 89
# bbb.shortcutkey.focus.voting.function = Move focus to the Voting window, if it is open.
# bbb.shortcutkey.share.desktop = 68
bbb.shortcutkey.share.desktop = 68
# bbb.shortcutkey.share.desktop.function = Open desktop sharing window
# bbb.shortcutkey.share.microphone = 79
bbb.shortcutkey.share.microphone = 79
# bbb.shortcutkey.share.microphone.function = Open audio settings window
# bbb.shortcutkey.share.webcam = 66
bbb.shortcutkey.share.webcam = 66
# bbb.shortcutkey.share.webcam.function = Open webcam sharing window
# bbb.shortcutkey.shortcutWindow = 72
bbb.shortcutkey.shortcutWindow = 72
# bbb.shortcutkey.shortcutWindow.function = Open/focus to shortcut help window
# bbb.shortcutkey.logout = 76
bbb.shortcutkey.logout = 76
# bbb.shortcutkey.logout.function = Log out of this meeting
# bbb.shortcutkey.raiseHand = 82
bbb.shortcutkey.raiseHand = 82
# bbb.shortcutkey.raiseHand.function = Raise your hand
# bbb.shortcutkey.present.upload = 85
bbb.shortcutkey.present.upload = 85
# bbb.shortcutkey.present.upload.function = Upload presentation
# bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous = 65
# bbb.shortcutkey.present.previous.function = Go to previous slide
# bbb.shortcutkey.present.select = 83
bbb.shortcutkey.present.select = 83
# bbb.shortcutkey.present.select.function = View all slides
# bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next = 69
# bbb.shortcutkey.present.next.function = Go to next slide
# bbb.shortcutkey.present.fitWidth = 70
bbb.shortcutkey.present.fitWidth = 70
# bbb.shortcutkey.present.fitWidth.function = Fit slides to width
# bbb.shortcutkey.present.fitPage = 80
bbb.shortcutkey.present.fitPage = 80
# bbb.shortcutkey.present.fitPage.function = Fit slides to page
# bbb.shortcutkey.users.makePresenter = 80
bbb.shortcutkey.users.makePresenter = 80
# bbb.shortcutkey.users.makePresenter.function = Make selected person presenter
# bbb.shortcutkey.users.kick = 75
bbb.shortcutkey.users.kick = 75
# bbb.shortcutkey.users.kick.function = Kick selected person from the meeting
# bbb.shortcutkey.users.mute = 83
bbb.shortcutkey.users.mute = 83
# bbb.shortcutkey.users.mute.function = Mute or unmute selected person
# bbb.shortcutkey.users.muteall = 65
bbb.shortcutkey.users.muteall = 65
# bbb.shortcutkey.users.muteall.function = Mute or unmute all users
# bbb.shortcutkey.users.focusUsers = 85
bbb.shortcutkey.users.focusUsers = 85
# bbb.shortcutkey.users.focusUsers.function = Focus to users list
# bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres = 65
# bbb.shortcutkey.users.muteAllButPres.function = Mute everyone but the Presenter
# bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs = 89
# bbb.shortcutkey.chat.focusTabs.function = Focus to chat tabs
# bbb.shortcutkey.chat.focusBox = 66
bbb.shortcutkey.chat.focusBox = 66
# bbb.shortcutkey.chat.focusBox.function = Focus to chat box
# bbb.shortcutkey.chat.changeColour = 67
bbb.shortcutkey.chat.changeColour = 67
# bbb.shortcutkey.chat.changeColour.function = Focus to font color picker.
# bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage = 83
bbb.shortcutkey.chat.sendMessage.function = Hantar mesej chat
# bbb.shortcutkey.chat.explanation = ----
bbb.shortcutkey.chat.explanation = ----
# bbb.shortcutkey.chat.explanation.function = For message navigation, you must focus the chat box.
# bbb.shortcutkey.chat.chatbox.advance = 40
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 = 38
# bbb.shortcutkey.chat.chatbox.goback.function = Navigate to the previous message
# bbb.shortcutkey.chat.chatbox.repeat = 32
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 = 39
# bbb.shortcutkey.chat.chatbox.golatest.function = Navigate to the latest message
# bbb.shortcutkey.chat.chatbox.gofirst = 37
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 = 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 = 71
# bbb.shortcutkey.chat.chatbox.debug.function = Temporary debug hotkey
# bbb.polling.createPoll = Create New Poll
# bbb.polling.createPoll.moreThanOneResponse = Allow users to choose more than one response
# bbb.polling.createPoll.hint = Hint\: Start every answer with a new line
# bbb.polling.createPoll.answers = Answers\:
# bbb.polling.createPoll.question = Question\:
# bbb.polling.createPoll.title = Title\:
bbb.polling.createPoll.answers = Jawapan\:
bbb.polling.createPoll.question = Soalan\:
bbb.polling.createPoll.title = Tajuk\:
# bbb.polling.createPoll.publishToWeb = Enable web polling
# bbb.polling.pollPreview = Poll Preview
@ -399,7 +402,7 @@ bbb.shortcutkey.chat.sendMessage.function = Hantar mesej chat
# bbb.polling.pollPreview.publish = Publish
# bbb.polling.pollPreview.preview = Preview
bbb.polling.pollPreview.save = Simpan
# bbb.polling.pollPreview.cancel = Cancel
bbb.polling.pollPreview.cancel = Batal
# bbb.polling.pollPreview.modify = Modify
# bbb.polling.pollPreview.hereIsYourPoll = Here is your poll\:
# bbb.polling.pollPreview.ifYouWantChanges = if you want to make any changes use the 'Modify' button
@ -417,7 +420,7 @@ bbb.polling.pollPreview.save = Simpan
# bbb.polling.validation.atLeast2Answers = Please provide at least 2 Answers
# bbb.polling.validation.duplicateTitle = This poll already exists
# bbb.polling.pollView.vote = Submit
bbb.polling.pollView.vote = Hantar
# bbb.polling.toolbar.toolTip = Polling
# bbb.polling.stats.repost = Repost
@ -426,9 +429,9 @@ bbb.polling.stats.close = Tutup
# bbb.polling.stats.refresh = Refresh
# bbb.polling.stats.stopPoll = Stop Poll
# bbb.polling.stats.webPollURL = This poll is available at\:
# bbb.polling.stats.answer = Answers
# bbb.polling.stats.votes = Votes
# bbb.polling.stats.percentage = % Of Votes
bbb.polling.stats.answer = Jawapan
bbb.polling.stats.votes = Undian
bbb.polling.stats.percentage = % Undian
# bbb.polling.webPollClosed = Web polling has been closed.
# bbb.polling.pollClosed = Polling has been closed\! The results are
@ -442,53 +445,53 @@ 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.shortcutkey.polling.buttonClick = 80
bbb.shortcutkey.polling.buttonClick = 80
# bbb.shortcutkey.polling.buttonClick.function = Open the Polling Menu.
# bbb.shortcutkey.polling.focusTitle = 67
bbb.shortcutkey.polling.focusTitle = 67
# bbb.shortcutkey.polling.focusTitle.function = Focus to Title input box.
# bbb.shortcutkey.polling.focusQuestion = 81
bbb.shortcutkey.polling.focusQuestion = 81
# bbb.shortcutkey.polling.focusQuestion.function = Focus to Question input box.
# bbb.shortcutkey.polling.focusAnswers = 65
bbb.shortcutkey.polling.focusAnswers = 65
# bbb.shortcutkey.polling.focusAnswers.function = Focus to Answers input box.
# bbb.shortcutkey.polling.focusMultipleCB = 77
bbb.shortcutkey.polling.focusMultipleCB = 77
# bbb.shortcutkey.polling.focusMultipleCB.function = Focus to "Allow multiple selections" checkbox.
# bbb.shortcutkey.polling.focusWebPollCB = 66
bbb.shortcutkey.polling.focusWebPollCB = 66
# bbb.shortcutkey.polling.focusWebPollCB.function = Focus to "Enable web polling" checkbox.
# bbb.shortcutkey.polling.previewClick = 80
bbb.shortcutkey.polling.previewClick = 80
# bbb.shortcutkey.polling.previewClick.function = Preview your poll and proceed.
# bbb.shortcutkey.polling.cancelClick = 88
bbb.shortcutkey.polling.cancelClick = 88
# bbb.shortcutkey.polling.cancelClick.function = Cancel and exit Poll creation.
# bbb.shortcutkey.polling.modify = 69
bbb.shortcutkey.polling.modify = 69
# bbb.shortcutkey.polling.modify.function = Go back and modify your poll.
# bbb.shortcutkey.polling.publish = 85
bbb.shortcutkey.polling.publish = 85
# bbb.shortcutkey.polling.publish.function = Publish your poll and open voting.
# bbb.shortcutkey.polling.save = 83
bbb.shortcutkey.polling.save = 83
# bbb.shortcutkey.polling.save.function = Save your poll to use later.
# bbb.shortcutkey.pollStats.explanation = ----
bbb.shortcutkey.pollStats.explanation = ----
# bbb.shortcutkey.pollStats.explanation.function = Poll results are only available once the poll has been published.
# bbb.shortcutkey.polling.focusData = 68
bbb.shortcutkey.polling.focusData = 68
# bbb.shortcutkey.polling.focusData.function = Focus to poll results.
# bbb.shortcutkey.polling.refresh = 82
bbb.shortcutkey.polling.refresh = 82
# bbb.shortcutkey.polling.refresh.function = Refresh poll results.
# bbb.shortcutkey.polling.focusWebPoll = 73
bbb.shortcutkey.polling.focusWebPoll = 73
# bbb.shortcutkey.polling.focusWebPoll.function = Focus to web polling URL box.
# bbb.shortcutkey.polling.stopPoll = 79
bbb.shortcutkey.polling.stopPoll = 79
# bbb.shortcutkey.polling.stopPoll.function = Stop the poll and end voting.
# bbb.shortcutkey.polling.repostPoll = 80
bbb.shortcutkey.polling.repostPoll = 80
# bbb.shortcutkey.polling.repostPoll.function = Re-publish the poll.
# bbb.shortcutkey.polling.closeStatsWindow = 88
bbb.shortcutkey.polling.closeStatsWindow = 88
# bbb.shortcutkey.polling.closeStatsWindow.function = Close Polling Results window.
# bbb.shortcutkey.polling.vote = 86
bbb.shortcutkey.polling.vote = 86
# bbb.shortcutkey.polling.vote.function = Cast your vote for the options selected.
# bbb.shortcutkey.polling.focusVoteQuestion = 81
bbb.shortcutkey.polling.focusVoteQuestion = 81
# bbb.shortcutkey.polling.focusVoteQuestion.function = Focus to question.
# 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.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

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Stop het delen en sluit dit scherm.
bbb.desktopPublish.minimizeBtn.toolTip = Minimaliseer dit scherm.
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimaliseer het desktop delen venster
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximaliseer het desktop delen venster
bbb.desktopPublish.closeBtn.accessibilityName = Stop delen en sluit het desktop delen venster
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Bureaublad delen
bbb.desktopView.fitToWindow = Schaal naar venster
bbb.desktopView.actualSize = Geef actuele grootte weer

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Stop het delen en sluit dit scherm.
bbb.desktopPublish.minimizeBtn.toolTip = Minimaliseer dit scherm.
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimaliseer het desktop delen venster
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximaliseer het desktop delen venster
bbb.desktopPublish.closeBtn.accessibilityName = Stop delen en sluit het desktop delen venster
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Bureaublad delen
bbb.desktopView.fitToWindow = Schaal naar venster
bbb.desktopView.actualSize = Geef actuele grootte weer

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Stopp deling og lukk vinduet.
bbb.desktopPublish.minimizeBtn.toolTip = Minimer
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimer vinduet for skrivebordsdeling
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maksimer vinduet for skrivebordsdeling
bbb.desktopPublish.closeBtn.accessibilityName = Stopp deling og lukk vinduet for skrivebordsdeling
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Skrivebordsdeling
bbb.desktopView.fitToWindow = Tilpass vindu
bbb.desktopView.actualSize = Vis normal størrelse

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Zakończ udostępnianie i zamknij
bbb.desktopPublish.minimizeBtn.toolTip = Zwiń
bbb.desktopPublish.minimizeBtn.accessibilityName = Zwiń okno udostępniania pulpitu
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Powiększ okno udostępniania pulpitu
bbb.desktopPublish.closeBtn.accessibilityName = Zakończ udostępnianie i zamknij okno udostępniania pulpitu
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Udostępnianie pulpitu
bbb.desktopView.fitToWindow = Dopasuj do okna
bbb.desktopView.actualSize = Wyświetl aktualną wielkość

View File

@ -29,6 +29,13 @@ bbb.mainToolbar.settingsBtn = Configurações
bbb.mainToolbar.settingsBtn.toolTip = Abrir configurações
bbb.mainToolbar.shortcutBtn = Glossário de atalho
bbb.mainToolbar.shortcutBtn.toolTip = Abrir janela de teclas de atalho
bbb.mainToolbar.recordBtn.toolTip.start = Iniciar gravação
bbb.mainToolbar.recordBtn.toolTip.stop = Parar gravação
bbb.mainToolbar.recordBtn.toolTip.recording = A sessão está sendo gravada
bbb.mainToolbar.recordBtn.toolTip.notRecording = A sessão não está sendo gravada
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.window.minimizeBtn.toolTip = Minimizar
bbb.window.maximizeRestoreBtn.toolTip = Maximizar
bbb.window.closeBtn.toolTip = Fechar
@ -70,8 +77,8 @@ bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam sendo transmitida
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = Ver a webcam
bbb.users.usersGrid.mediaItemRenderer.pushToTalk = Acionar o microfone de {0}
bbb.users.usersGrid.mediaItemRenderer.pushToMute = Silenciar {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Travar o microfone de {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Destravar o microfone de {0}
bbb.users.usersGrid.mediaItemRenderer.pushToLock = Bloquear {0}
bbb.users.usersGrid.mediaItemRenderer.pushToUnlock = Bloquear {0}
bbb.users.usersGrid.mediaItemRenderer.kickUser = Expulsar {0}
bbb.users.usersGrid.mediaItemRenderer.webcam = Webcam sendo transmitida
bbb.users.usersGrid.mediaItemRenderer.micOff = Microfone desativado
@ -181,7 +188,10 @@ bbb.desktopPublish.closeBtn.toolTip = Interromper compartilhamento de tela
bbb.desktopPublish.minimizeBtn.toolTip = Minimizar
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimizar janela do compartilhamento de tela
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximizar janela do compartilhamento de tela
bbb.desktopPublish.closeBtn.accessibilityName = Parar compartilhamento de tela e fechar janela
bbb.desktopPublish.javaRequiredLabel = Requer Java 7u45 (ou posterior) para rodar.
bbb.desktopPublish.javaTestLinkLabel = Testar Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Testar Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Testar Java
bbb.desktopView.title = Compartilhamento de tela
bbb.desktopView.fitToWindow = Ajustar à janela
bbb.desktopView.actualSize = Exibir tamanho original
@ -222,7 +232,7 @@ bbb.highlighter.toolbar.color = Selecionar cor
bbb.highlighter.toolbar.color.accessibilityName = Cor da anotação do quadro branco
bbb.highlighter.toolbar.thickness = Alterar espessura
bbb.highlighter.toolbar.thickness.accessibilityName = Espessura da anotação do quadro branco
# bbb.logout.title = Logged Out
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
@ -492,3 +502,25 @@ bbb.shortcutkey.specialKeys.up = Seta para cima
bbb.shortcutkey.specialKeys.down = Seta para baixo
bbb.shortcutkey.specialKeys.plus = Mais
bbb.shortcutkey.specialKeys.minus = Menos
bbb.toolbar.videodock.toolTip.closeAllVideos = Fechar todas câmeras
bbb.users.settings.lockAll=Bloquear todos
bbb.users.settings.lockAllExcept=Bloquear todos exceto o apresentador
bbb.users.settings.lockSettings=Configurações de bloqueio...
bbb.users.settings.unlockAll=Desbloquear todos usuários
bbb.users.settings.roomIsLocked=Bloqueados por padrão
bbb.users.settings.roomIsMuted=Silenciados por padrão
bbb.lockSettings.save = Salvar
bbb.lockSettings.save.tooltip = Salvar e aplicar estas configurações
bbb.lockSettings.cancel = Cancelar
bbb.lockSettings.cancel.toolTip = Fecha esta janela sem aplicar
bbb.lockSettings.moderatorLocking = Bloqueio de moderador
bbb.lockSettings.privateChat = Chat privado
bbb.lockSettings.publicChat = Chat público
bbb.lockSettings.webcam = Câmera
bbb.lockSettings.microphone = Microfone
bbb.lockSettings.title=Configurações de bloqueio
bbb.lockSettings.feature=Recurso
bbb.lockSettings.enabled=Habilitado

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Parar a partilha e fechar esta janela
bbb.desktopPublish.minimizeBtn.toolTip = Minimizar janela
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Patilha de Ambiente de Trabalho
bbb.desktopView.fitToWindow = Ajustar à janela
bbb.desktopView.actualSize = Mostar tamanho actual

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Opreşte partajarea şi închide aceasta f
bbb.desktopPublish.minimizeBtn.toolTip = Minimizează aceasta fereastră
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Partajare spațiu de lucru
bbb.desktopView.fitToWindow = Potriviți în cadrul ferestrei
bbb.desktopView.actualSize = Afişează dimensiunea actuală

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Остановить трансляцию
bbb.desktopPublish.minimizeBtn.toolTip = Свернуть
bbb.desktopPublish.minimizeBtn.accessibilityName = Свернуть окно трансляции рабочего стола
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Развернуть окно трансляции рабочего стола
bbb.desktopPublish.closeBtn.accessibilityName = Остановить трансляцию и закрыть окно
bbb.desktopPublish.javaRequiredLabel = Для запуска требуется Java 7u45 (или новее).
bbb.desktopPublish.javaTestLinkLabel = Тест Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Тест Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Тест Java
bbb.desktopView.title = Трансляция рабочего стола
bbb.desktopView.fitToWindow = Подогнать под размеры окна
bbb.desktopView.actualSize = Оригинальный размер

View File

@ -181,7 +181,10 @@ bbb.chat.fontSize = අකුරු ප්‍රමානය
# bbb.desktopPublish.minimizeBtn.toolTip = Minimize
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
# bbb.desktopView.title = Desktop Sharing
# bbb.desktopView.fitToWindow = Fit to Window
# bbb.desktopView.actualSize = Display actual size

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Zastaviť zdieľanie a zatvoriť toto okno
bbb.desktopPublish.minimizeBtn.toolTip = Minimalizovať toto okno.
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Zdieľanie plochy
bbb.desktopView.fitToWindow = Prispôsobiť do okna
bbb.desktopView.actualSize = Zobraziť aktuálnu veľkosť

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Prenehaj z deljenjem in zapri to okno.
bbb.desktopPublish.minimizeBtn.toolTip = Pomanjšajte to okno.
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Deljenje namizja
bbb.desktopView.fitToWindow = Fit to Window
bbb.desktopView.actualSize = Prikaži realno velikost

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Prekini podelu radne ploče i zatvori proz
bbb.desktopPublish.minimizeBtn.toolTip = Minimiraj ovaj prozor.
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Podela radne ploče
bbb.desktopView.fitToWindow = Podesi prozor
bbb.desktopView.actualSize = Prikaži trenutnu veličinu

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Avsluta delning och stäng
bbb.desktopPublish.minimizeBtn.toolTip = Minimera
bbb.desktopPublish.minimizeBtn.accessibilityName = Minimera fönstret för skärmdelning
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximera fönstret för skärmdelning
bbb.desktopPublish.closeBtn.accessibilityName = Avsluta delning och stäng fönstret för skärmdelning
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Skärmdelning
bbb.desktopView.fitToWindow = Anpassa till fönster
bbb.desktopView.actualSize = Visa verklig storlek

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = หยุดการแผยแพร่
bbb.desktopPublish.minimizeBtn.toolTip = ลดหน้าต่างนี้ลง
# bbb.desktopPublish.minimizeBtn.accessibilityName = Minimize the Desktop Sharing Publish Window
# bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Maximize the Desktop Sharing Publish Window
# bbb.desktopPublish.closeBtn.accessibilityName = Stop Sharing and Close the Desktop Sharing Publish Window
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = แชร์ปเดสก์ทอปร่วมกัน
bbb.desktopView.fitToWindow = พอดีกับหน้าต่าง
bbb.desktopView.actualSize = แสดงผลจอขนาดจริง

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Paylaşımı durdur ve Kapat.
bbb.desktopPublish.minimizeBtn.toolTip = Küçült
bbb.desktopPublish.minimizeBtn.accessibilityName = Masaüstü Paylaşımı Yayımlama Penceresini Küçült
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Masaüstü Paylaşımı Yayımlama Penceresini Büyült
bbb.desktopPublish.closeBtn.accessibilityName = Paylaşımı durdur ve Masaüstü Paylaşımı Yayımı Penceresini Kapat
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Masaüstü Paylaşımı
bbb.desktopView.fitToWindow = Pencereye Sığdır
bbb.desktopView.actualSize = Gerçek boyutu görüntüle

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Зупинити трансляцію і
bbb.desktopPublish.minimizeBtn.toolTip = Згорнути
bbb.desktopPublish.minimizeBtn.accessibilityName = Згорнути вікно трансляції
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Розгорнути вікно трансляції
bbb.desktopPublish.closeBtn.accessibilityName = Зупинити трансляцію і закрити вікно
bbb.desktopPublish.javaRequiredLabel = Для запуску потрібна Java 7u45 (або новіша).
bbb.desktopPublish.javaTestLinkLabel = Тест Java
bbb.desktopPublish.javaTestLinkLabel.tooltip = Тест Java
bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Тест Java
bbb.desktopView.title = Трансляція робочого столу
bbb.desktopView.fitToWindow = Підігнати під розміри вікна
bbb.desktopView.actualSize = Оригінальний розмір

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = Ngừng chia sẻ và đóng cửa sổ n
bbb.desktopPublish.minimizeBtn.toolTip = Thu nhỏ cửa sổ này.
bbb.desktopPublish.minimizeBtn.accessibilityName = Thu nhở cửa sổ xuất bản cho chia sẻ dạng desktop
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = Phóng to cửa sổ xuất bản cho chia sẻ dạng desktop
bbb.desktopPublish.closeBtn.accessibilityName = Dừng lại việc chia sẻ và đóng lại cửa sổ xuất bản cho chia sẻ dạng desktop
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = Chia sẻ Màn hình
bbb.desktopView.fitToWindow = Phóng toàn Cửa sổ
bbb.desktopView.actualSize = Hiện kích thước thật

View File

@ -1,26 +1,26 @@
bbb.mainshell.locale.version = 0.8
bbb.mainshell.statusProgress.connecting = 正在连接到服务器
bbb.mainshell.statusProgress.loading = 载入 {0} 模块
bbb.mainshell.statusProgress.cannotConnectServer = 抱歉,无法连接到服务器.
bbb.mainshell.statusProgress.cannotConnectServer = 抱歉,无法连接到服务器
bbb.mainshell.copyrightLabel2 = (c) 2013 BigBlueButton 公司[build {0}]- 详情请访问 <a href\='http\://www.bigbluebutton.org/' target\='_blank'><u>http\://www.bigbluebutton.org</u></a>
bbb.mainshell.logBtn.toolTip = 打开日志
bbb.mainshell.resetLayoutBtn.toolTip = 布局重置
bbb.oldlocalewindow.reminder1 = 您可能正在使用旧版的BigBlueButton界面翻译.
bbb.oldlocalewindow.reminder2 = 请清空浏览器缓存并重试.
bbb.oldlocalewindow.windowTitle = 警告\: 旧的语言文件\!
bbb.oldlocalewindow.reminder1 = 您可能正在使用旧版的 BigBlueButton 界面翻译。
bbb.oldlocalewindow.reminder2 = 请清空浏览器缓存并重试
bbb.oldlocalewindow.windowTitle = 警告\: 旧的语言文件
bbb.micSettings.speakers.header = 测试扬声器
bbb.micSettings.microphone.header = 测试麦克风
bbb.micSettings.playSound = 测试扬声器
bbb.micSettings.playSound.toolTip = 播放音乐来测试您的扬声器
bbb.micSettings.hearFromHeadset = 你应该从你的耳麦听到声音,而不是从电脑的音箱
bbb.micSettings.speakIntoMic = 单击此按钮来测试/调整麦克风(推荐用头戴式耳机)
bbb.micSettings.hearFromHeadset = 你应该从你的耳麦听到声音,而不是从电脑的音箱
bbb.micSettings.speakIntoMic = 单击此按钮来测试/调整麦克风(推荐用头戴式耳机)
bbb.micSettings.changeMic = 测试/调整麦克风
bbb.micSettings.changeMic.toolTip = 打开动画播放器的耳麦设置对话框
bbb.micSettings.changeMic.toolTip = 打开 Flash Player 耳麦设置对话框
bbb.micSettings.join = 加入语音会议
bbb.micSettings.cancel = 取消
bbb.micSettings.cancel.toolTip = 撤销加入音频会议
bbb.micSettings.access.helpButton = 需要教学视频请点击此处,这将会打开新的页面
bbb.micSettings.access.title = 音频设置焦点将会保持在音频设置窗口直到该窗口关闭
bbb.micSettings.access.helpButton = 从新页面打开培训视频。
bbb.micSettings.access.title = 音频设置焦点将会保持在音频设置窗口直到该窗口关闭
bbb.mainToolbar.helpBtn = 帮助
bbb.mainToolbar.logoutBtn = 退出
bbb.mainToolbar.logoutBtn.toolTip = 退出
@ -34,9 +34,9 @@ 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.chat.titleBar = 聊天窗口标题栏如果需要浏览信息,请把焦点集中到聊天区
bbb.users.title = 用户 {0} {1}
bbb.users.titleBar = 用户窗口标题栏(双击最大化)
bbb.users.quickLink.label = 用户窗口
bbb.users.minimizeBtn.accessibilityName = 最小化用户窗口
bbb.users.maximizeRestoreBtn.accessibilityName = 最大化用户窗口
@ -44,7 +44,7 @@ bbb.users.settings.buttonTooltip = 设置
bbb.users.settings.audioSettings = 音频设置
bbb.users.settings.webcamSettings = 摄像头设置
bbb.users.settings.muteAll = 全部话筒静音
bbb.users.settings.muteAllExcept = 除了演讲者外全部话筒静音
bbb.users.settings.muteAllExcept = 演讲者外全部话筒静音
bbb.users.settings.unmuteAll = 解除全部话筒静音
bbb.users.settings.lowerAllHands = 全部手放下
bbb.users.raiseHandBtn.toolTip = 举手
@ -52,9 +52,9 @@ bbb.users.pushToTalk.toolTip = 单击此处开始发言
bbb.users.pushToMute.toolTip = 单击此处将你的话筒设为静音
bbb.users.muteMeBtnTxt.talk = 解除静音
bbb.users.muteMeBtnTxt.mute = 静音
bbb.users.muteMeBtnTxt.muted = 被设为静音
bbb.users.muteMeBtnTxt.unmuted = 被解除静音
bbb.users.usersGrid.accessibilityName = 用户名单,用箭头键浏览
bbb.users.muteMeBtnTxt.muted = 被设为静音
bbb.users.muteMeBtnTxt.unmuted = 被解除静音
bbb.users.usersGrid.accessibilityName = 用户名单。使用箭头键浏览。
bbb.users.usersGrid.nameItemRenderer = 名字
bbb.users.usersGrid.nameItemRenderer.youIdentifier =
bbb.users.usersGrid.statusItemRenderer = 状态
@ -67,37 +67,37 @@ bbb.users.usersGrid.statusItemRenderer.viewer = 观众
bbb.users.usersGrid.mediaItemRenderer = 媒体
bbb.users.usersGrid.mediaItemRenderer.talking = 发言
bbb.users.usersGrid.mediaItemRenderer.webcam = 摄像头共享
bbb.users.usersGrid.mediaItemRenderer.webcamBtn = 单击此处看摄像头
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.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.presentation.title = 演示
bbb.presentation.titleWithPres = 演示文档:{0}
bbb.presentation.quickLink.label = 演示窗口
bbb.presentation.fitToWidth.toolTip = 演示窗口调整到适合宽度\n
bbb.presentation.fitToPage.toolTip = 演示窗口调整到适合页面
bbb.presentation.uploadPresBtn.toolTip = 演示窗口中上传演示文件
bbb.presentation.backBtn.toolTip = 演示窗口中上一个幻灯片
bbb.presentation.uploadPresBtn.toolTip = 打开文件演示文件上传窗口
bbb.presentation.backBtn.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 = 错误:Office文件转换失败
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.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.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.ok = OK
bbb.presentation.slider = 演示窗口缩放
bbb.presentation.slideloader.starttext = 演示文本开始
@ -112,19 +112,19 @@ bbb.presentation.minimizeBtn.accessibilityName = 最小化演示窗口
bbb.presentation.maximizeRestoreBtn.accessibilityName = 最大化演示窗口
bbb.presentation.closeBtn.accessibilityName = 关闭演示窗口
bbb.fileupload.title = 增加演示文件
bbb.fileupload.fileLbl = 选择文件上传\:
bbb.fileupload.fileLbl = 选择文件上传
bbb.fileupload.selectBtn.label = 选择文件
bbb.fileupload.selectBtn.toolTip = 选择文件
bbb.fileupload.uploadBtn = 上传
bbb.fileupload.uploadBtn.toolTip = 上传文件
bbb.fileupload.presentationNamesLbl = 已上传演示文件\:
bbb.fileupload.presentationNamesLbl = 已上传演示文件
bbb.fileupload.deleteBtn.toolTip = 删除演示文件
bbb.fileupload.showBtn = 演示
bbb.fileupload.showBtn.toolTip = 演示幻灯片
bbb.fileupload.okCancelBtn = 取消
bbb.fileupload.okCancelBtn.toolTip = 关闭文件上传对话框
bbb.fileupload.genThumbText = 生成缩略图..
bbb.fileupload.progBarLbl = 进度\:
bbb.fileupload.progBarLbl = 进度
bbb.chat.title = 聊天
bbb.chat.quickLink.label = 聊天窗口
bbb.chat.cmpColorPicker.toolTip = 聊天窗口文字颜色
@ -135,19 +135,19 @@ bbb.chat.sendBtn.accessibilityName = 发送聊天信息
bbb.chat.publicChatUsername = 所有
bbb.chat.optionsTabName = 选择
bbb.chat.privateChatSelect = 聊天窗口中选择私聊对象
bbb.chat.private.userLeft = <b><i>用户已经离开.</i></b>
bbb.chat.usersList.toolTip = 选择一个与会者开始私聊
bbb.chat.chatOptions = 聊天窗口中的聊天选项
bbb.chat.fontSize = 聊天窗口的字体大小
bbb.chat.cmbFontSize.toolTip = 选择一个聊天信息的字体大小
bbb.chat.messageList = 聊天窗口的信息框
bbb.chat.private.userLeft = <b><i>用户已经离开</i></b>
bbb.chat.usersList.toolTip = 选择一个与会者开始私聊
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.chatTabs.accessibleNotice = 此选项卡里的新信息。
bbb.publishVideo.changeCameraBtn.labelText = 更换摄像头
bbb.publishVideo.changeCameraBtn.toolTip = 打开改变摄像头对话框
bbb.publishVideo.cmbResolution.tooltip = 选择网络摄像头分辨率
bbb.publishVideo.cmbResolution.tooltip = 选择网络摄像头分辨率
bbb.publishVideo.startPublishBtn.labelText = 开始共享
bbb.publishVideo.startPublishBtn.toolTip = 开始共享
bbb.videodock.title = 视频区
@ -155,11 +155,11 @@ 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 = 逐出会议
bbb.video.controls.privateChatBtn.toolTip = 和 {0} 聊天
bbb.video.publish.hint.noCamera = 没有摄像头
bbb.video.publish.hint.cantOpenCamera = 打不开摄像头
bbb.video.publish.hint.cantOpenCamera = 摄像头无法打开
bbb.video.publish.hint.waitingApproval = 等候批准
bbb.video.publish.hint.videoPreview = 视频预览
bbb.video.publish.hint.openingCamera = 摄像头开启中...
@ -169,7 +169,7 @@ bbb.video.publish.hint.publishing = 发布中...
bbb.video.publish.closeBtn.accessName = 关闭摄像头窗口
bbb.video.publish.closeBtn.label = 取消
bbb.video.publish.titleBar = 发布网络摄像窗口
bbb.desktopPublish.title = 桌面共享\: 演讲人预览
bbb.desktopPublish.title = 桌面共享演讲人预览
bbb.desktopPublish.fullscreen.tooltip = 全屏共享
bbb.desktopPublish.fullscreen.label = 全屏
bbb.desktopPublish.region.tooltip = 共享部分屏幕
@ -181,33 +181,36 @@ bbb.desktopPublish.closeBtn.toolTip = 停止共享并关闭
bbb.desktopPublish.minimizeBtn.toolTip = 最小化
bbb.desktopPublish.minimizeBtn.accessibilityName = 最小化桌面共享发布窗口
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = 最大化桌面共享发布窗口
bbb.desktopPublish.closeBtn.accessibilityName = 停止共享并且关闭桌面共享发布窗口
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = 桌面共享
bbb.desktopView.fitToWindow = 适应窗口大小
bbb.desktopView.actualSize = 显示实际大小
bbb.desktopView.minimizeBtn.accessibilityName = 最小化桌面共享窗口
bbb.desktopView.maximizeRestoreBtn.accessibilityName = 最大化桌面共享窗口
bbb.desktopView.closeBtn.accessibilityName = 关闭桌面共享窗口
bbb.toolbar.phone.toolTip.start = 分享我的语音
bbb.toolbar.phone.toolTip.stop = 停止分享我的语音
bbb.toolbar.phone.toolTip.start = 加入语音会议
bbb.toolbar.phone.toolTip.stop = 离开语音会议
bbb.toolbar.deskshare.toolTip.start = 分享我的桌面
bbb.toolbar.deskshare.toolTip.stop = 停止分享桌面
bbb.toolbar.video.toolTip.start = 分享我的摄像头
bbb.toolbar.video.toolTip.stop = 停止分享我的摄像头
bbb.toolbar.video.toolTip.stop = 停止摄像头分享
bbb.layout.addButton.toolTip = 将自定义布局加入到列表
bbb.layout.combo.toolTip = 改变当前布局
bbb.layout.loadButton.toolTip = 从文件打开布局
bbb.layout.saveButton.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.save.complete = 布局保存成功
bbb.layout.load.complete = 布局成功
bbb.layout.load.failed = 打开布局失败
bbb.layout.load.complete = 布局成功
bbb.layout.load.failed = 布局载入失败
bbb.highlighter.toolbar.pencil = 铅笔
bbb.highlighter.toolbar.pencil.accessibilityName = 切换白板标为铅笔
bbb.highlighter.toolbar.pencil.accessibilityName = 切换白板标为铅笔
bbb.highlighter.toolbar.ellipse =
bbb.highlighter.toolbar.ellipse.accessibilityName = 切换白板关标为圆
bbb.highlighter.toolbar.rectangle = 矩形
@ -217,19 +220,19 @@ 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.undo.accessibilityName = 撤销上一步画的形状
bbb.highlighter.toolbar.color = 选择颜色
bbb.highlighter.toolbar.color.accessibilityName = 白板画笔颜色
bbb.highlighter.toolbar.thickness = 修改线条粗细
bbb.highlighter.toolbar.thickness.accessibilityName = 改变白板光标绘画线条粗细
bbb.logout.title = 退出
bbb.logout.title = 退出
bbb.logout.button.label = OK
bbb.logout.appshutdown = 服务器应用已被关闭
bbb.logout.asyncerror = 同步错误
bbb.logout.connectionclosed = 连接被关闭
bbb.logout.connectionfailed = 连接服务器失败
bbb.logout.rejected = 连接被服务器拒绝
bbb.logout.invalidapp = Red5应用不存在
bbb.logout.rejected = 服务器连接被拒绝
bbb.logout.invalidapp = Red5 应用不存在
bbb.logout.unknown = 您已掉线
bbb.logout.usercommand = 您已从会议中登出
bbb.logout.confirm.title = 确认退出
@ -240,22 +243,22 @@ bbb.notes.title = 笔记
bbb.notes.cmpColorPicker.toolTip = 文字颜色
bbb.notes.saveBtn = 保存
bbb.notes.saveBtn.toolTip = 保存笔记
bbb.settings.deskshare.instructions = 在弹出窗口中点击同意检查桌面共享程序工作是否正常
bbb.settings.deskshare.instructions = 在弹出窗口中点击同意检查桌面共享程序工作是否正常
bbb.settings.deskshare.start = 检查桌面共享
bbb.settings.voice.volume = 麦克风状态
bbb.settings.java.label = Java版本错误
bbb.settings.java.text = 您安装的是Java {0},但BigBlueButton中的桌面共享功能要求的最低版本是{1}。点击下面的按钮安装最新的JRE。
bbb.settings.java.command = 安装最新版Java
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 = 如果你的iSight摄像头有问题可能是你运行的系统是OS X 10.6.5这个版本在通过Flash抓取摄像头时会有问题。\n要解决这个问题请点击下面的链接并安装最新版本的Flash或是更新你的Mac系统到最新版本。
bbb.settings.isight.command = 安装Flash 10.2 RC2
bbb.settings.java.label = Java 版本错误
bbb.settings.java.text = 您安装的是Java {0},但 BigBlueButton 中的桌面共享功能要求的最低版本是 {1} 。点击下面的按钮安装最新的 JRE
bbb.settings.java.command = 安装最新版 Java
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 = 如果你的 iSight 摄像头有问题,可能是你运行的系统是 OS X 10.6.5,这个版本在通过 Flash 抓取摄像头时会有问题。\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设置对话框中“接受”Flash使用您的摄像头。若您能够看到和听到自己说明浏览器已设置正确。其他可能存在的问题显示如下。依次点击以找到可行的解决方案。
bbb.settings.instructions = 在弹出的 Flash 设置对话框中“接受” Flash 使用您的摄像头。若您能够看到和听到自己,说明浏览器已设置正确。其他可能存在的问题显示如下。依次点击以找到可行的解决方案。
ltbcustom.bbb.highlighter.toolbar.triangle = 三角形
ltbcustom.bbb.highlighter.toolbar.triangle.accessibilityName = 切换白板光标为三角形
ltbcustom.bbb.highlighter.toolbar.line = 直线
@ -265,23 +268,23 @@ ltbcustom.bbb.highlighter.toolbar.text.accessibilityName = 切换白板光标为
ltbcustom.bbb.highlighter.texttoolbar.textColorPicker = 文字颜色
ltbcustom.bbb.highlighter.texttoolbar.textSizeMenu = 字体大小
bbb.accessibility.chat.chatBox.reachedFirst = 您已经在第一条信息上
bbb.accessibility.chat.chatBox.reachedLatest = 您已经在最后一条信息上
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.chatBox.navigatedLatestRead = 您已经浏览到您最近一条读过的信息
bbb.accessibility.chat.chatwindow.input = 聊天输入
bbb.accessibility.chat.initialDescription = 用箭头键浏览聊天信息
bbb.accessibility.chat.initialDescription = 使用箭头键浏览聊天信息
bbb.accessibility.notes.notesview.input = 注解输入
bbb.shortcuthelp.title = 快捷键汇编
bbb.shortcuthelp.title = 快捷键帮助
bbb.shortcuthelp.minimizeBtn.accessibilityName = 最小化快捷键窗口
bbb.shortcuthelp.maximizeRestoreBtn.accessibilityName = 最大化快捷键窗口
bbb.shortcuthelp.closeBtn.accessibilityName = 关闭快捷键窗口
bbb.shortcuthelp.dropdown.general = 通用快捷键
bbb.shortcuthelp.dropdown.presentation = 演示快捷键
bbb.shortcuthelp.dropdown.presentation = 演示快捷键
bbb.shortcuthelp.dropdown.chat = 聊天快捷键
bbb.shortcuthelp.dropdown.users = 用户快捷键
bbb.shortcuthelp.dropdown.polling = 演讲者投票调查快捷键
@ -295,9 +298,9 @@ bbb.shortcutkey.general.maximize = 187
bbb.shortcutkey.general.maximize.function = 最大化当前窗口
bbb.shortcutkey.flash.exit = 81\n
bbb.shortcutkey.flash.exit.function = 焦点离开动画窗口
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
@ -314,7 +317,7 @@ bbb.shortcutkey.focus.presentation.function = 将焦点移到演示窗口
bbb.shortcutkey.focus.chat = 52
bbb.shortcutkey.focus.chat.function = 将焦点移到聊天窗口
bbb.shortcutkey.focus.pollingCreate = 67
bbb.shortcutkey.focus.pollingCreate.function = 如果调查创建窗口已打开,请把焦点移到该窗口
bbb.shortcutkey.focus.pollingCreate.function = 如果调查创建窗口已打开,请把焦点移到该窗口
bbb.shortcutkey.focus.pollingStats = 83
bbb.shortcutkey.focus.pollingStats.function = 如果调查统计窗口已经打开,请把焦点移到该处
bbb.shortcutkey.focus.voting = 89
@ -339,7 +342,7 @@ bbb.shortcutkey.present.upload.function = 上传演示文档
bbb.shortcutkey.present.previous = 65
bbb.shortcutkey.present.previous.function = 转到上一页幻灯片
bbb.shortcutkey.present.select = 83
bbb.shortcutkey.present.select.function = 观看所幻灯片
bbb.shortcutkey.present.select.function = 观看所幻灯片
bbb.shortcutkey.present.next = 69
bbb.shortcutkey.present.next.function = 转到下一张幻灯片
bbb.shortcutkey.present.fitWidth = 70
@ -358,7 +361,7 @@ bbb.shortcutkey.users.muteall.function = 将所有人的话筒设为静音或者
bbb.shortcutkey.users.focusUsers = 85
bbb.shortcutkey.users.focusUsers.function = 焦点集中到用户名单上
bbb.shortcutkey.users.muteAllButPres = 65
bbb.shortcutkey.users.muteAllButPres.function = 除演讲者外,把全部话筒静音
bbb.shortcutkey.users.muteAllButPres.function = 静音演讲者外所有话筒
bbb.shortcutkey.chat.focusTabs = 89
bbb.shortcutkey.chat.focusTabs.function = 焦点集中到聊天栏上
@ -389,7 +392,7 @@ bbb.shortcutkey.chat.chatbox.debug.function = 临时调试快捷键
bbb.polling.createPoll = 创建新的问卷调查
bbb.polling.createPoll.moreThanOneResponse = 允许用户选择多个反馈
bbb.polling.createPoll.hint = 提示:另起一行开始新的答案
bbb.polling.createPoll.answers = 回答\:
bbb.polling.createPoll.answers = 回答
bbb.polling.createPoll.question = 问题:
bbb.polling.createPoll.title = 标题:
bbb.polling.createPoll.publishToWeb = 打开网络投票
@ -422,7 +425,7 @@ bbb.polling.toolbar.toolTip = 投票中
bbb.polling.stats.repost = 重新发布
bbb.polling.stats.close = 关闭
bbb.polling.stats.didNotVote = 没有投票
bbb.polling.stats.didNotVote = 投票
bbb.polling.stats.refresh = 刷新
bbb.polling.stats.stopPoll = 停止投票
bbb.polling.stats.webPollURL = 该投票在这里可以找到:
@ -433,62 +436,62 @@ bbb.polling.stats.percentage = % 的投票
bbb.polling.webPollClosed = 网络投票已经关闭
bbb.polling.pollClosed = 投票已经关闭!结果是:
bbb.polling.vote.error.radio = 请选择一个选项,或者关闭窗口放弃投票
bbb.polling.vote.error.check = 请选择一个或者多个选项,或者关闭窗口放弃投票
bbb.polling.vote.error.radio = 请选择一个选项,或者关闭窗口放弃投票
bbb.polling.vote.error.check = 请选择一个或者多个选项,或者关闭窗口放弃投票
bbb.publishVideo.startPublishBtn.labelText = 开始共享
bbb.publishVideo.changeCameraBtn.labelText = 更换摄像头
bbb.accessibility.alerts.madePresenter = 您现在是演讲者
bbb.accessibility.alerts.madeViewer = 您现在是观众
bbb.accessibility.alerts.madePresenter = 您现在是演讲者
bbb.accessibility.alerts.madeViewer = 您现在是观众
bbb.shortcutkey.polling.buttonClick = 80
bbb.shortcutkey.polling.buttonClick.function = 打开投票调查菜单
bbb.shortcutkey.polling.buttonClick.function = 打开投票调查菜单
bbb.shortcutkey.polling.focusTitle = 67
bbb.shortcutkey.polling.focusTitle.function = 把焦点放在标题输入框
bbb.shortcutkey.polling.focusTitle.function = 把焦点放在标题输入框
bbb.shortcutkey.polling.focusQuestion = 81\n
bbb.shortcutkey.polling.focusQuestion.function = 把焦点放在问题输入框
bbb.shortcutkey.polling.focusQuestion.function = 把焦点放在问题输入框
bbb.shortcutkey.polling.focusAnswers = 65
bbb.shortcutkey.polling.focusAnswers.function = 把焦点放在答案输入框
bbb.shortcutkey.polling.focusAnswers.function = 把焦点放在答案输入框
bbb.shortcutkey.polling.focusMultipleCB = 77
bbb.shortcutkey.polling.focusMultipleCB.function = 把焦点放到“允许多项选择”的选择框
bbb.shortcutkey.polling.focusMultipleCB.function = 焦点集中到“允许多项选择”选择框
bbb.shortcutkey.polling.focusWebPollCB = 66
bbb.shortcutkey.polling.focusWebPollCB.function = 把焦点放到“允许网络投票”选择框
bbb.shortcutkey.polling.focusWebPollCB.function = 把焦点放到“允许网络投票”选择框
bbb.shortcutkey.polling.previewClick = 80
bbb.shortcutkey.polling.previewClick.function = 预览您的投票并继续进行
bbb.shortcutkey.polling.previewClick.function = 预览您的投票并继续
bbb.shortcutkey.polling.cancelClick = 88
bbb.shortcutkey.polling.cancelClick.function = 取消并退出投票创建
bbb.shortcutkey.polling.cancelClick.function = 取消并退出投票创建
bbb.shortcutkey.polling.modify = 69
bbb.shortcutkey.polling.modify.function = 返回并修改您的投票
bbb.shortcutkey.polling.modify.function = 返回并修改您的投票
bbb.shortcutkey.polling.publish = 85
bbb.shortcutkey.polling.publish.function = 发布您的调查并开放投票
bbb.shortcutkey.polling.publish.function = 发布您的调查并开放投票
bbb.shortcutkey.polling.save = 83
bbb.shortcutkey.polling.save.function = 保存您的调查以便将来使用
bbb.shortcutkey.polling.save.function = 保存您的调查以便将来使用
bbb.shortcutkey.pollStats.explanation = ----
bbb.shortcutkey.pollStats.explanation.function = 只有调查已经被发布后才可以获取调查结果
bbb.shortcutkey.pollStats.explanation.function = 只有调查已经被发布后才可以获取调查结果
bbb.shortcutkey.polling.focusData = 68
bbb.shortcutkey.polling.focusData.function = 把焦点放到投票结果
bbb.shortcutkey.polling.focusData.function = 把焦点放到投票结果
bbb.shortcutkey.polling.refresh = 82
bbb.shortcutkey.polling.refresh.function = 刷新投票结果
bbb.shortcutkey.polling.refresh.function = 刷新投票结果
bbb.shortcutkey.polling.focusWebPoll = 73
bbb.shortcutkey.polling.focusWebPoll.function = 把焦点放到网络投票链接框
bbb.shortcutkey.polling.focusWebPoll.function = 把焦点放到网络投票链接框
bbb.shortcutkey.polling.stopPoll = 79
bbb.shortcutkey.polling.stopPoll.function = 停止调查并结束投票
bbb.shortcutkey.polling.stopPoll.function = 停止调查并结束投票
bbb.shortcutkey.polling.repostPoll = 80
bbb.shortcutkey.polling.repostPoll.function = 重新发布调查
bbb.shortcutkey.polling.repostPoll.function = 重新发布调查
bbb.shortcutkey.polling.closeStatsWindow = 88
bbb.shortcutkey.polling.closeStatsWindow.function = 关闭调查结果窗口
bbb.shortcutkey.polling.closeStatsWindow.function = 关闭调查结果窗口
bbb.shortcutkey.polling.vote = 86
bbb.shortcutkey.polling.vote.function = 赞成已经选择的选项
bbb.shortcutkey.polling.vote.function = 赞成已经选择的选项
bbb.shortcutkey.polling.focusVoteQuestion = 81\n
bbb.shortcutkey.polling.focusVoteQuestion.function = 把焦点放在问题上
bbb.shortcutkey.polling.focusVoteQuestion.function = 把焦点放在问题上
bbb.shortcutkey.specialKeys.space = 空格键
bbb.shortcutkey.specialKeys.left = 箭头
bbb.shortcutkey.specialKeys.right = 箭头
bbb.shortcutkey.specialKeys.up = 箭头
bbb.shortcutkey.specialKeys.down = 箭头键
bbb.shortcutkey.specialKeys.left =
bbb.shortcutkey.specialKeys.right =
bbb.shortcutkey.specialKeys.up =
bbb.shortcutkey.specialKeys.down =
bbb.shortcutkey.specialKeys.plus =
bbb.shortcutkey.specialKeys.minus =

View File

@ -181,7 +181,10 @@ bbb.desktopPublish.closeBtn.toolTip = 停止共享並關閉視窗
bbb.desktopPublish.minimizeBtn.toolTip = 最小化視窗
bbb.desktopPublish.minimizeBtn.accessibilityName = 最小化螢幕共享發佈視窗
bbb.desktopPublish.maximizeRestoreBtn.accessibilityName = 最大化螢幕共享發佈視窗
bbb.desktopPublish.closeBtn.accessibilityName = 停止共享并關閉螢幕發佈視窗
# bbb.desktopPublish.javaRequiredLabel = Requires Java 7u45 (or later) to run.
# bbb.desktopPublish.javaTestLinkLabel = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip = Test Java
# bbb.desktopPublish.javaTestLinkLabel.tooltip.accessibility = Test Java
bbb.desktopView.title = 桌面共享
bbb.desktopView.fitToWindow = 填滿整個視窗
bbb.desktopView.actualSize = 顯示實際大小

View File

@ -3,6 +3,7 @@
<localeversion suppressWarning="false">0.8</localeversion>
<version>VERSION</version>
<help url="http://HOST/help.html"/>
<javaTest url="http://HOST/testjava.html"/>
<porttest host="HOST" application="video/portTest" timeout="10000"/>
<bwMon server="HOST" application="video/bwTest"/>
<application uri="rtmp://HOST/bigbluebutton" host="http://HOST/bigbluebutton/api/enter" />

Binary file not shown.

Binary file not shown.

View File

@ -9,8 +9,10 @@ function startApplet(IP, roomNumber, fullScreen, useSVC2)
"<param name=\"ROOM\" value=\"" + roomNumber + "\"/>" +
"<param name=\"IP\" value=\"" + IP + "\"/>" +
"<param name=\"PORT\" value=\"9123\"/>" +
"<param name=\"SCALE\" value=\"0.8\"/>" +
"<param name=\"FULL_SCREEN\" value=\"" + fullScreen + "\"/>" +
"<param name=\"SVC2\" value=\"" + useSVC2 + "\"/>" +
"<param name=\"permissions\" value=\"all-permissions\"/>" +
"</applet>"
);
}

View File

@ -49,4 +49,5 @@
<locale code="tr_TR" name="Turkish"/>
<locale code="uk_UA" name="Ukrainian"/>
<locale code="vi_VN" name="Vietnamese"/>
<locale code="cy_GB" name="Welsh"/>
</locales>

View File

@ -219,7 +219,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
case "NetStream.Play.Start":
trace("DeskshareSA::NetStream.Publish.Start for broadcast stream " + stream);
trace("DeskshareSA::Dispatching start viewing event");
service.sendStartedViewingNotification();
service.sendStartedViewingNotification(stream);
break;
case "NetStream.Play.UnpublishNotify":
trace("DeskshareSA::NetStream.Play.UnpublishNotify for broadcast stream " + stream);

View File

@ -33,7 +33,7 @@ package org.bigbluebutton.common
function doesContain(child:DisplayObject):Boolean;
function acceptOverlayCanvas(overlay:IBbbCanvas):void;
function moveCanvas(x:Number, y:Number):void;
function zoomCanvas(width:Number, height:Number):void;
function zoomCanvas(width:Number, height:Number, zoom:Number):void;
function showCanvas(show:Boolean):void;
}
}

View File

@ -57,7 +57,7 @@ package org.bigbluebutton.core
public static const USER_KICKED_OUT:String = 'UserKickedOutEvent';
public static const USER_MUTED_VOICE:String = 'UserVoiceMutedEvent';
public static const USER_TALKING:String = 'UserTalkingEvent';
public static const USER_LOCKED_VOICE:String = 'UserLockedVoiceEvent';
public static const USER_LOCKED:String = 'UserLockedEvent';
public static const START_PRIVATE_CHAT:String = "StartPrivateChatEvent";
public static const GET_MY_USER_INFO_REP:String = "GetMyUserInfoResponse";
public static const IS_USER_PUBLISHING_CAM_RESP:String = "IsUserPublishingCamResponse";

View File

@ -0,0 +1,47 @@
/**
* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
*
* Copyright (c) 2010 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 <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.core.events
{
import flash.events.Event;
public class LockControlEvent extends Event
{
public static const LOCK_ALL:String = "LOCKCONTROL_LOCK_ALL";
public static const UNLOCK_ALL:String = "LOCKCONTROL_UNLOCK_ALL";
public static const LOCK_ALMOST_ALL:String = "LOCKCONTROL_LOCK_ALMOST_ALL";
public static const LOCK_USER:String = "LOCKCONTROL_LOCK_USER";
public static const UNLOCK_USER:String = "LOCKCONTROL_UNLOCK_USER";
public static const OPEN_LOCK_SETTINGS:String = "LOCKCONTROL_OPEN_LOCK_SETTINGS";
public static const SAVE_LOCK_SETTINGS:String = "LOCKCONTROL_SAVE_LOCK_SETTINGS";
public static const CHANGED_LOCK_SETTINGS:String = "LOCKCONTROL_CHANGED_LOCK_SETTINGS";
public var internalUserID:String;
public var payload:Object;
public function LockControlEvent(type:String)
{
super(type, true, false);
}
}
}

View File

@ -0,0 +1,34 @@
/**
* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
*
* Copyright (c) 2010 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 <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.core.events
{
import flash.events.Event;
public class LockSettingsEvent extends Event
{
public static const LOCKSETTINGS_CHANGE:String = "LOCKSETTINGS_CHANGE";
public var lockSettingsMap:Object;
public function LockSettingsEvent(type:String)
{
super(type, true, false);
}
}
}

View File

@ -24,7 +24,7 @@ package org.bigbluebutton.core.events
{
public static const MUTE_ALL:String = "VOICECONF_MUTE_ALL";
public static const UNMUTE_ALL:String = "VOICECONF_UNMUTE_ALL";
public static const LOCK_MUTE_USER:String = "LOCK_MUTE_USER";
public static const LOCK_MUTE_USER:String = "LOCK_MUTE_USER";
public static const MUTE_ALMOST_ALL:String = "VOICECONF_MUTE_ALMOST_ALL";
public static const MUTE_USER:String = "VOICECONF_MUTE_USER";
@ -34,7 +34,7 @@ package org.bigbluebutton.core.events
public var userid:int;
public var mute:Boolean;
public var lock:Boolean;
public var lock:Boolean;
public function VoiceConfEvent(type:String)
{

View File

@ -34,6 +34,12 @@ package org.bigbluebutton.core.model
help.url = config.help.@url;
return help;
}
public function get javaTest():Object {
var javaTest:Object = new Object();
javaTest.url = config.javaTest.@url;
return javaTest;
}
public function get locale():Object {
var v:Object = new Object();
@ -81,6 +87,15 @@ package org.bigbluebutton.core.model
public function get layout():XML {
return new XML(config.layout.toXMLString());
}
public function get meeting():XML {
return new XML(config.meeting.toXMLString());
}
public function get lock():XML {
if(config.lock == null) return null;
return new XML(config.lock.toXMLString());
}
public function isModulePresent(name:String):Boolean {
var mn:XMLList = config.modules..@name;

View File

@ -0,0 +1,70 @@
/**
* 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 <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.core.vo
{
public class LockSettings
{
private var allowModeratorLocking:Boolean;
private var disableCam:Boolean;
private var disableMic:Boolean;
private var disablePrivateChat:Boolean;
private var disablePublicChat:Boolean;
public function LockSettings(pAllowModeratorLocking:Boolean, pDisableCam:Boolean, pDisableMic:Boolean, pDisablePrivateChat:Boolean, pDisablePublicChat:Boolean)
{
this.allowModeratorLocking = pAllowModeratorLocking;
this.disableCam = pDisableCam;
this.disableMic = pDisableMic;
this.disablePrivateChat = pDisablePrivateChat;
this.disablePublicChat = pDisablePublicChat;
}
public function toMap():Object {
var map:Object = {
allowModeratorLocking: this.allowModeratorLocking,
disableCam: this.disableCam,
disableMic: this.disableMic,
disablePrivateChat: this.disablePrivateChat,
disablePublicChat: this.disablePublicChat
};
return map;
}
public function getAllowModeratorLocking():Boolean {
return allowModeratorLocking;
}
public function getDisableCam():Boolean {
return disableCam;
}
public function getDisableMic():Boolean {
return disableMic;
}
public function getDisablePrivateChat():Boolean {
return disablePrivateChat;
}
public function getDisablePublicChat():Boolean {
return disablePublicChat;
}
}
}

View File

@ -0,0 +1,70 @@
/**
* 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 <http://www.gnu.org/licenses/>.
*
*/
package org.bigbluebutton.core.vo
{
public class LockSettingsVO
{
private var allowModeratorLocking:Boolean;
private var disableCam:Boolean;
private var disableMic:Boolean;
private var disablePrivateChat:Boolean;
private var disablePublicChat:Boolean;
public function LockSettingsVO(pAllowModeratorLocking:Boolean, pDisableCam:Boolean, pDisableMic:Boolean, pDisablePrivateChat:Boolean, pDisablePublicChat:Boolean)
{
this.allowModeratorLocking = pAllowModeratorLocking;
this.disableCam = pDisableCam;
this.disableMic = pDisableMic;
this.disablePrivateChat = pDisablePrivateChat;
this.disablePublicChat = pDisablePublicChat;
}
public function toMap():Object {
var map:Object = {
allowModeratorLocking: this.allowModeratorLocking,
disableCam: this.disableCam,
disableMic: this.disableMic,
disablePrivateChat: this.disablePrivateChat,
disablePublicChat: this.disablePublicChat
};
return map;
}
public function getAllowModeratorLocking():Boolean {
return allowModeratorLocking;
}
public function getDisableCam():Boolean {
return disableCam;
}
public function getDisableMic():Boolean {
return disableMic;
}
public function getDisablePrivateChat():Boolean {
return disablePrivateChat;
}
public function getDisablePublicChat():Boolean {
return disablePublicChat;
}
}
}

View File

@ -225,9 +225,9 @@ package org.bigbluebutton.main.api
broadcastEvent(payload);
}
public function handleUserVoiceLockedEvent(event:BBBEvent):void {
public function handleUserLockedEvent(event:BBBEvent):void {
var payload:Object = new Object();
payload.eventName = EventConstants.USER_LOCKED_VOICE;
payload.eventName = EventConstants.USER_LOCKED;
payload.userID = UsersUtil.internalUserIDToExternalUserID(event.payload.userID);
payload.locked = event.payload.locked;

View File

@ -75,8 +75,8 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<MethodInvoker generator="{ExternalApiCalls}" method="handleUserVoiceMutedEvent" arguments="{event}"/>
</EventHandlers>
<EventHandlers type="{BBBEvent.USER_VOICE_LOCKED}" >
<MethodInvoker generator="{ExternalApiCalls}" method="handleUserVoiceLockedEvent" arguments="{event}"/>
<EventHandlers type="{BBBEvent.USER_LOCKED}" >
<MethodInvoker generator="{ExternalApiCalls}" method="handleUserLockedEvent" arguments="{event}"/>
</EventHandlers>
<EventHandlers type="{BBBEvent.USER_VOICE_LEFT}" >

Some files were not shown because too many files have changed in this diff Show More