Merge remote branch 'upstream/master'
This commit is contained in:
commit
88fbee4679
@ -221,7 +221,7 @@ public String getJoinURL(String username, String meetingID, String record, Strin
|
||||
//
|
||||
//Create a meeting and return a URL to join it as moderator
|
||||
//
|
||||
public String getJoinURLXML(String username, String meetingID, String welcome, String xml_param) {
|
||||
public String getJoinURLXML(String username, String meetingID, String welcome, String xml) {
|
||||
String base_url_create = BigBlueButtonURL + "api/create?";
|
||||
String base_url_join = BigBlueButtonURL + "api/join?";
|
||||
|
||||
@ -234,6 +234,11 @@ public String getJoinURLXML(String username, String meetingID, String welcome, S
|
||||
welcome_param = "&welcome=" + urlEncode(welcome);
|
||||
}
|
||||
|
||||
String xml_param = "";
|
||||
if ((xml != null) && !xml.equals("")) {
|
||||
xml_param = xml;
|
||||
}
|
||||
|
||||
String create_parameters = "name=" + urlEncode(meetingID)
|
||||
+ "&meetingID=" + urlEncode(meetingID) + welcome_param
|
||||
+ "&attendeePW=ap&moderatorPW=mp&voiceBridge=" + voiceBridge;
|
||||
@ -242,10 +247,10 @@ public String getJoinURLXML(String username, String meetingID, String welcome, S
|
||||
|
||||
try {
|
||||
// Attempt to create a meeting using meetingID
|
||||
String xml = postURL(base_url_create + create_parameters
|
||||
String params = postURL(base_url_create + create_parameters
|
||||
+ "&checksum="
|
||||
+ checksum("create" + create_parameters + salt), xml_param);
|
||||
doc = parseXml(xml);
|
||||
doc = parseXml(params);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
@ -85,8 +85,8 @@ if (request.getParameterMap().isEmpty()) {
|
||||
//
|
||||
|
||||
String url = BigBlueButtonURL.replace("bigbluebutton/","demo/");
|
||||
String preUploadPDF = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='"+url+"pdfs/sample.pdf'/></module></modules>";
|
||||
String joinURL = getJoinURL(request.getParameter("username"), "Demo Meeting", "false", null, null, preUploadPDF);
|
||||
// String preUploadPDF = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='"+url+"pdfs/sample.pdf'/></module></modules>";
|
||||
String joinURL = getJoinURL(request.getParameter("username"), "Demo Meeting", "false", null, null, null);
|
||||
|
||||
if (joinURL.startsWith("http://")) {
|
||||
%>
|
||||
|
@ -263,7 +263,7 @@ with BigBlueButton; if not, If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
// This is the URL for to join the meeting as moderator
|
||||
//
|
||||
String welcomeMsg = "<br>Welcome to %%CONFNAME%%!<br><br>For help see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the voice bridge for this meeting click the headset icon in the upper-left <b>(please use a headset to prevent echo)</b>.<br><br>This meeting is being recorded (audio + slides + chat).";
|
||||
String welcomeMsg = "<br>Welcome to %%CONFNAME%%!<br><br>For help see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the voice bridge for this meeting click the headset icon in the upper-left <b>(you can mute yourself in the Listeners window)</b>.<br><br>This meeting is being recorded (audio + slides + chat).";
|
||||
String joinURL = getJoinURL(username, meetingID, "true", welcomeMsg, metadata, null);
|
||||
if (joinURL.startsWith("http://")) {
|
||||
%>
|
||||
|
@ -106,9 +106,9 @@ Author: Fred Dixon <ffdixon@bigbluebutton.org>
|
||||
// String joinURL = getJoinURL(username, meetingID, "Welcome to " + meetingID );
|
||||
// Update: added record parameter, default false
|
||||
String url = BigBlueButtonURL.replace("bigbluebutton/","demo/");
|
||||
String preUploadPDF = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='"+url+"pdfs/sample.pdf'/></module></modules>";
|
||||
// String preUploadPDF = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='"+url+"pdfs/sample.pdf'/></module></modules>";
|
||||
// String joinURL = getJoinURL(username, meetingID, "false", "<br>Welcome to course: %%CONFNAME%%.<br>", null, preUploadPDF );
|
||||
String joinURL = getJoinURL(username, meetingID, "false", null, null, preUploadPDF );
|
||||
String joinURL = getJoinURL(username, meetingID, "false", null, null, null );
|
||||
|
||||
if (joinURL.startsWith("http://")) {
|
||||
%>
|
||||
|
@ -48,7 +48,7 @@ HashMap<String, String> meeting;
|
||||
|
||||
// String welcome = "<br>Welcome to %%CONFNAME%%!<br><br>For help see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the voice bridge for this meeting:<br> (1) click the headset icon in the upper-left, or<br> (2) dial xxx-xxx-xxxx (toll free:1-xxx-xxx-xxxx) and enter conference ID: %%CONFNUM%%.<br><br>";
|
||||
|
||||
String welcome = "<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>To understand how BigBlueButton works see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>Please use a headset to avoid causing echo for others.</b>";
|
||||
String welcome = "<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>To understand how BigBlueButton works see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>You can mute yourself in the Listeners window.</b>";
|
||||
|
||||
//
|
||||
// English courses
|
||||
|
@ -70,10 +70,10 @@
|
||||
while (itr.hasNext()) {
|
||||
FileItem item = (FileItem) itr.next();
|
||||
String xml = null;
|
||||
String url = BigBlueButtonURL.replace("bigbluebutton/","demo/");
|
||||
String preUploadPDF = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='"+url+"pdfs/sample.pdf'/></module></modules>";
|
||||
// String url = BigBlueButtonURL.replace("bigbluebutton/","demo/");
|
||||
// String preUploadPDF = "<?xml version='1.0' encoding='UTF-8'?><modules><module name='presentation'><document url='"+url+"pdfs/sample.pdf'/></module></modules>";
|
||||
|
||||
xml = preUploadPDF;
|
||||
// xml = preUploadPDF;
|
||||
if (item.isFormField())
|
||||
{
|
||||
String name = item.getFieldName();
|
||||
@ -96,7 +96,7 @@
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
String welcome = "<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>To understand how BigBlueButton works see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>Please use a headset to avoid causing echo for others.</b>";
|
||||
String welcome = "<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>To understand how BigBlueButton works see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>You can mute yourself in the Listeners window.</b>";
|
||||
String welcomeMsg = "The uploaded presentation will appear in moment.<br>" + welcome;
|
||||
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<%@ include file="bbb_api.jsp"%>
|
||||
|
||||
<%
|
||||
String welcome = "<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>To understand how BigBlueButton works see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>Please use a headset to avoid causing echo for others.</b>";
|
||||
String welcome = "<br>Welcome to <b>%%CONFNAME%%</b>!<br><br>To understand how BigBlueButton works see our <a href=\"event:http://www.bigbluebutton.org/content/videos\"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). <b>You can mute yourself in the Listeners window.</b>";
|
||||
|
||||
if (request.getParameterMap().isEmpty()) {
|
||||
HashMap<String, String> presentations = new HashMap<String, String>();
|
||||
|
@ -1,4 +1,4 @@
|
||||
<img src="/bigbluebutton/images/bbb_banner.jpg" /><br>
|
||||
<img src="images/bbb_banner.jpg" /><br>
|
||||
<a href="demo1.jsp">Join</a> |
|
||||
<a href="demo2.jsp">Join Selected</a> |
|
||||
<a href="demo3.jsp">Join Password</a>
|
||||
|
BIN
bbb-api-demo/src/main/webapp/images/bbb_banner.jpg
Normal file
BIN
bbb-api-demo/src/main/webapp/images/bbb_banner.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
@ -1,38 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:lang="http://www.springframework.org/schema/lang"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
|
||||
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd">
|
||||
|
||||
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||||
<property name="locations">
|
||||
<list>
|
||||
<value>/WEB-INF/red5-web.properties</value>
|
||||
<value>/WEB-INF/bigbluebutton-video.properties</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="web.context" class="org.red5.server.Context"
|
||||
autowire="byType" />
|
||||
|
||||
<bean id="web.scope" class="org.red5.server.WebScope" init-method="register">
|
||||
<property name="server" ref="red5.server" />
|
||||
<property name="parent" ref="global.scope" />
|
||||
<property name="context" ref="web.context" />
|
||||
<property name="handler" ref="web.handler" />
|
||||
<property name="contextPath" value="${webapp.contextPath}" />
|
||||
<property name="virtualHosts" value="${webapp.virtualHosts}" />
|
||||
</bean>
|
||||
|
||||
<bean id="web.handler" class="org.bigbluebutton.app.video.VideoApplication">
|
||||
<property name="recordVideoStream" value="true"/>
|
||||
<property name="eventRecordingService" ref="redisRecorder"/>
|
||||
</bean>
|
||||
|
||||
<bean id="redisRecorder" class="org.bigbluebutton.app.video.EventRecordingService">
|
||||
<constructor-arg index="0" value="${redis.host}"/>
|
||||
<constructor-arg index="1" value="${redis.port}"/>
|
||||
</bean>
|
||||
</beans>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:lang="http://www.springframework.org/schema/lang"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
|
||||
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd">
|
||||
|
||||
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
||||
<property name="locations">
|
||||
<list>
|
||||
<value>/WEB-INF/red5-web.properties</value>
|
||||
<value>/WEB-INF/bigbluebutton-video.properties</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="web.context" class="org.red5.server.Context"
|
||||
autowire="byType" />
|
||||
|
||||
<bean id="web.scope" class="org.red5.server.WebScope" init-method="register">
|
||||
<property name="server" ref="red5.server" />
|
||||
<property name="parent" ref="global.scope" />
|
||||
<property name="context" ref="web.context" />
|
||||
<property name="handler" ref="web.handler" />
|
||||
<property name="contextPath" value="${webapp.contextPath}" />
|
||||
<property name="virtualHosts" value="${webapp.virtualHosts}" />
|
||||
</bean>
|
||||
|
||||
<bean id="web.handler" class="org.bigbluebutton.app.video.VideoApplication">
|
||||
<property name="recordVideoStream" value="false"/>
|
||||
<property name="eventRecordingService" ref="redisRecorder"/>
|
||||
</bean>
|
||||
|
||||
<bean id="redisRecorder" class="org.bigbluebutton.app.video.EventRecordingService">
|
||||
<constructor-arg index="0" value="${redis.host}"/>
|
||||
<constructor-arg index="1" value="${redis.port}"/>
|
||||
</bean>
|
||||
</beans>
|
||||
|
@ -174,15 +174,15 @@ public class Application extends MultiThreadedApplicationAdapter {
|
||||
}
|
||||
|
||||
public void setSipServerHost(String h) {
|
||||
sipServerHost = h;
|
||||
sipServerHost = h.trim();
|
||||
}
|
||||
|
||||
public void setUsername(String un) {
|
||||
this.username = un;
|
||||
this.username = un.trim();
|
||||
}
|
||||
|
||||
public void setPassword(String pw) {
|
||||
this.password = pw;
|
||||
this.password = pw.trim();
|
||||
}
|
||||
|
||||
public void setSipPort(int sipPort) {
|
||||
|
@ -69,6 +69,8 @@ public class CallStream implements StreamObserver {
|
||||
|
||||
userListenStream = new SipToFlashAudioStream(scope, sipToFlashTranscoder, connInfo.getSocket());
|
||||
userListenStream.addListenStreamObserver(this);
|
||||
log.debug("Starting userListenStream so that users with no mic can listen.");
|
||||
userListenStream.start();
|
||||
userTalkStream = new FlashToSipAudioStream(flashToSipTranscoder, connInfo.getSocket(), connInfo);
|
||||
}
|
||||
|
||||
@ -81,8 +83,6 @@ public class CallStream implements StreamObserver {
|
||||
}
|
||||
|
||||
public void startTalkStream(IBroadcastStream broadcastStream, IScope scope) throws StreamException {
|
||||
log.debug("Starting userListenSteam");
|
||||
userListenStream.start();
|
||||
log.debug("userTalkStream setup");
|
||||
userTalkStream.start(broadcastStream, scope);
|
||||
log.debug("userTalkStream Started");
|
||||
|
@ -102,7 +102,14 @@ public class SipPeer implements SipRegisterAgentListener {
|
||||
|
||||
public void call(String clientId, String callerName, String destination) {
|
||||
if (!registered) {
|
||||
log.warn("Call request for {} but not registered.", id);
|
||||
/*
|
||||
* If we failed to register with FreeSWITCH, reject all calls right away.
|
||||
* This way the user will know that there is a problem as quickly as possible.
|
||||
* If we pass the call, it take more that 30seconds for the call to timeout
|
||||
* (in case FS is offline) and the user will be kept wondering why the call
|
||||
* isn't going through.
|
||||
*/
|
||||
log.warn("We are not registered to FreeSWITCH. We are not allowing {} to call {}.", callerName, destination);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1,22 +1,3 @@
|
||||
/*
|
||||
* Copyright (c) 2008, 2009 by Xuggle Incorporated. All rights reserved.
|
||||
*
|
||||
* This file is part of Xuggler.
|
||||
*
|
||||
* You can redistribute Xuggler and/or modify it under the terms of the GNU
|
||||
* Affero General Public License as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* Xuggler 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 Affero General Public
|
||||
* License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with Xuggler. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
package org.red5.app.sip;
|
||||
|
||||
import java.io.IOException;
|
||||
@ -63,29 +44,23 @@ public class AudioStream implements IBroadcastStream, IProvider, IPipeConnection
|
||||
public AudioStream(String name) {
|
||||
publishedStreamName = name;
|
||||
livePipe = null;
|
||||
log.trace("name: {}", name);
|
||||
|
||||
streamCodecInfo = new StreamCodecInfo();
|
||||
creationTime = null;
|
||||
}
|
||||
|
||||
public IProvider getProvider() {
|
||||
log.trace("getProvider()");
|
||||
return this;
|
||||
}
|
||||
|
||||
public Notify getMetaData() {
|
||||
System.out.println("**** GETTING METADATA ******");
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getPublishedName() {
|
||||
log.trace("getPublishedName()");
|
||||
return publishedStreamName;
|
||||
}
|
||||
|
||||
public String getSaveFilename() {
|
||||
log.trace("getSaveFilename()");
|
||||
throw new Error("unimplemented method");
|
||||
}
|
||||
|
||||
@ -95,7 +70,6 @@ public class AudioStream implements IBroadcastStream, IProvider, IPipeConnection
|
||||
}
|
||||
|
||||
public Collection<IStreamListener> getStreamListeners() {
|
||||
// log.trace("getStreamListeners()");
|
||||
return streamListeners;
|
||||
}
|
||||
|
||||
@ -104,14 +78,11 @@ public class AudioStream implements IBroadcastStream, IProvider, IPipeConnection
|
||||
streamListeners.remove(listener);
|
||||
}
|
||||
|
||||
public void saveAs(String filePath, boolean isAppend) throws IOException,
|
||||
ResourceNotFoundException, ResourceExistException {
|
||||
log.trace("saveAs(filepath:{}, isAppend:{})", filePath, isAppend);
|
||||
public void saveAs(String filePath, boolean isAppend) throws IOException, ResourceNotFoundException, ResourceExistException {
|
||||
throw new Error("unimplemented method");
|
||||
}
|
||||
|
||||
public void setPublishedName(String name) {
|
||||
log.trace("setPublishedName(name:{})", name);
|
||||
publishedStreamName = name;
|
||||
}
|
||||
|
||||
@ -120,13 +91,10 @@ public class AudioStream implements IBroadcastStream, IProvider, IPipeConnection
|
||||
}
|
||||
|
||||
public IStreamCodecInfo getCodecInfo() {
|
||||
// log.trace("getCodecInfo()");
|
||||
// we don't support this right now.
|
||||
return streamCodecInfo;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
log.trace("getName(): {}", publishedStreamName);
|
||||
// for now, just return the published name
|
||||
return publishedStreamName;
|
||||
}
|
||||
@ -159,9 +127,7 @@ public class AudioStream implements IBroadcastStream, IProvider, IPipeConnection
|
||||
case PipeConnectionEvent.PROVIDER_CONNECT_PUSH:
|
||||
log.trace("PipeConnectionEvent.PROVIDER_CONNECT_PUSH");
|
||||
System.out.println("PipeConnectionEvent.PROVIDER_CONNECT_PUSH");
|
||||
if (event.getProvider() == this
|
||||
&& (event.getParamMap() == null
|
||||
|| !event.getParamMap().containsKey("record"))) {
|
||||
if (event.getProvider() == this && (event.getParamMap() == null || !event.getParamMap().containsKey("record"))) {
|
||||
log.trace("Creating a live pipe");
|
||||
System.out.println("Creating a live pipe");
|
||||
this.livePipe = (IPipe) event.getSource();
|
||||
@ -169,24 +135,19 @@ public class AudioStream implements IBroadcastStream, IProvider, IPipeConnection
|
||||
break;
|
||||
case PipeConnectionEvent.PROVIDER_DISCONNECT:
|
||||
log.trace("PipeConnectionEvent.PROVIDER_DISCONNECT");
|
||||
System.out.println("PipeConnectionEvent.PROVIDER_DISCONNECT");
|
||||
if (this.livePipe == event.getSource()) {
|
||||
log.trace("PipeConnectionEvent.PROVIDER_DISCONNECT - this.mLivePipe = null;");
|
||||
System.out.println("PipeConnectionEvent.PROVIDER_DISCONNECT - this.mLivePipe = null;");
|
||||
this.livePipe = null;
|
||||
}
|
||||
break;
|
||||
case PipeConnectionEvent.CONSUMER_CONNECT_PUSH:
|
||||
log.trace("PipeConnectionEvent.CONSUMER_CONNECT_PUSH");
|
||||
System.out.println("PipeConnectionEvent.CONSUMER_CONNECT_PUSH");
|
||||
break;
|
||||
case PipeConnectionEvent.CONSUMER_DISCONNECT:
|
||||
log.trace("PipeConnectionEvent.CONSUMER_DISCONNECT");
|
||||
System.out.println("PipeConnectionEvent.CONSUMER_DISCONNECT");
|
||||
break;
|
||||
default:
|
||||
log.trace("PipeConnectionEvent default");
|
||||
System.out.println("PipeConnectionEvent default");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
# The address of your FreeSWITCH/asterisk server
|
||||
sip.server.host=192.168.0.166
|
||||
sip.server.host=127.0.0.1
|
||||
sip.server.port=5070
|
||||
sip.server.username=bbbuser
|
||||
sip.server.password=secret
|
||||
|
@ -89,9 +89,6 @@ public class BigBlueButtonApplication extends MultiThreadedApplicationAdapter {
|
||||
public boolean roomConnect(IConnection connection, Object[] params) {
|
||||
String remoteHost = Red5.getConnectionLocal().getRemoteAddress();
|
||||
int remotePort = Red5.getConnectionLocal().getRemotePort();
|
||||
String clientId = Red5.getConnectionLocal().getClient().getId();
|
||||
log.info("[clientid=" + clientId + "] connected from " + remoteHost + ":" + remotePort + ".");
|
||||
|
||||
String username = ((String) params[0]).toString();
|
||||
String role = ((String) params[1]).toString();
|
||||
String conference = ((String)params[2]).toString();
|
||||
@ -100,27 +97,29 @@ public class BigBlueButtonApplication extends MultiThreadedApplicationAdapter {
|
||||
* Convert the id to Long because it gets converted to ascii decimal
|
||||
* equivalent (i.e. zero (0) becomes 48) if we don't.
|
||||
*/
|
||||
long userid = Long.parseLong(Red5.getConnectionLocal().getClient().getId());
|
||||
long clientID = Long.parseLong(Red5.getConnectionLocal().getClient().getId());
|
||||
String sessionName = connection.getScope().getName();
|
||||
|
||||
log.info("[clientid=" + clientID + "] connected from " + remoteHost + ":" + remotePort + ".");
|
||||
|
||||
String voiceBridge = ((String) params[4]).toString();
|
||||
String room = sessionName;
|
||||
assert recorderApplication != null;
|
||||
boolean record = (Boolean)params[5];
|
||||
log.debug("record value - [" + record + "]");
|
||||
|
||||
String externUserID = ((String) params[6]).toString();
|
||||
|
||||
String externalUserID = ((String) params[6]).toString();
|
||||
String internalUserID = ((String) params[6]).toString();
|
||||
|
||||
if (record == true) {
|
||||
recorderApplication.createRecordSession(sessionName);
|
||||
}
|
||||
|
||||
BigBlueButtonSession bbbSession = new BigBlueButtonSession(sessionName, userid, username, role,
|
||||
conference, room, voiceBridge, record, externUserID);
|
||||
BigBlueButtonSession bbbSession = new BigBlueButtonSession(sessionName, clientID, internalUserID, username, role,
|
||||
conference, room, voiceBridge, record, externalUserID);
|
||||
connection.setAttribute(Constants.SESSION, bbbSession);
|
||||
|
||||
String debugInfo = "userid=" + userid + ",username=" + username + ",role=" + role + ",conference=" + conference + "," +
|
||||
"session=" + sessionName + ",voiceConf=" + voiceBridge + ",room=" + room + ",externsUserid=" + externUserID;
|
||||
String debugInfo = "internalUserID=" + internalUserID + ",username=" + username + ",role=" + role + ",conference=" + conference + "," +
|
||||
"session=" + sessionName + ",voiceConf=" + voiceBridge + ",room=" + room + ",externalUserid=" + externalUserID;
|
||||
log.debug("User [{}] connected to room [{}]", debugInfo, room);
|
||||
participantsApplication.createRoom(room);
|
||||
super.roomConnect(connection, params);
|
||||
@ -142,7 +141,7 @@ public class BigBlueButtonApplication extends MultiThreadedApplicationAdapter {
|
||||
public String getMyUserId() {
|
||||
BigBlueButtonSession bbbSession = (BigBlueButtonSession) Red5.getConnectionLocal().getAttribute(Constants.SESSION);
|
||||
assert bbbSession != null;
|
||||
return Long.toString(bbbSession.getUserid());
|
||||
return Long.toString(bbbSession.getClientID());
|
||||
}
|
||||
|
||||
public void setParticipantsApplication(ParticipantsApplication a) {
|
||||
|
@ -24,25 +24,26 @@ public class BigBlueButtonSession {
|
||||
private final String role;
|
||||
private final String conference;
|
||||
private final String room;
|
||||
private final long userid;
|
||||
private final String internalUserID;
|
||||
private final long clientID;
|
||||
private final String sessionName;
|
||||
private final String voiceBridge;
|
||||
private final Boolean record;
|
||||
private final String externUserID;
|
||||
private final String externalUserID;
|
||||
|
||||
public BigBlueButtonSession(String sessionName, long userid, String username,
|
||||
public BigBlueButtonSession(String sessionName, long clientID, String internalUserID, String username,
|
||||
String role, String conference, String room, String voiceBridge, Boolean record,
|
||||
String externUserID){
|
||||
this.userid = userid;
|
||||
String externalUserID){
|
||||
this.internalUserID = internalUserID;
|
||||
this.sessionName = sessionName;
|
||||
this.username = username;
|
||||
this.role = role;
|
||||
this.conference = conference;
|
||||
this.room = room;
|
||||
|
||||
this.clientID = clientID;
|
||||
this.voiceBridge = voiceBridge;
|
||||
this.record = record;
|
||||
this.externUserID = externUserID;
|
||||
this.externalUserID = externalUserID;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
@ -61,8 +62,12 @@ public class BigBlueButtonSession {
|
||||
return room;
|
||||
}
|
||||
|
||||
public long getUserid() {
|
||||
return userid;
|
||||
public String getInternalUserID() {
|
||||
return internalUserID;
|
||||
}
|
||||
|
||||
public long getClientID() {
|
||||
return clientID;
|
||||
}
|
||||
|
||||
public String getSessionName() {
|
||||
@ -78,6 +83,6 @@ public class BigBlueButtonSession {
|
||||
}
|
||||
|
||||
public String getExternUserID() {
|
||||
return externUserID;
|
||||
return externalUserID;
|
||||
}
|
||||
}
|
||||
|
@ -23,9 +23,9 @@ import java.util.ArrayList;
|
||||
|
||||
public interface IRoomListener {
|
||||
public String getName();
|
||||
public void participantStatusChange(Long userid, String status, Object value);
|
||||
public void participantStatusChange(Participant p, String status, Object value);
|
||||
public void participantJoined(Participant participant);
|
||||
public void participantLeft(Long userid);
|
||||
public void participantLeft(Participant participant);
|
||||
public void assignPresenter(ArrayList<String> presenter);
|
||||
public void endAndKickAll();
|
||||
}
|
@ -31,19 +31,19 @@ import java.lang.Long;
|
||||
*/
|
||||
@ThreadSafe
|
||||
public class Participant implements Serializable {
|
||||
private Long userid;
|
||||
private Long internalUserID;
|
||||
private String name;
|
||||
private String role = "VIEWER";
|
||||
private String externUserID;
|
||||
private String externalUserID;
|
||||
|
||||
private final Map status;
|
||||
private Map<String, Object> unmodifiableStatus;
|
||||
|
||||
public Participant(Long userid, String name, String role, String externUserID, Map<String, Object> status) {
|
||||
this.userid = userid;
|
||||
public Participant(Long internalUserID, String name, String role, String externalUserID, Map<String, Object> status) {
|
||||
this.internalUserID = internalUserID;
|
||||
this.name = name;
|
||||
this.role = role;
|
||||
this.externUserID = externUserID;
|
||||
this.externalUserID = externalUserID;
|
||||
this.status = new ConcurrentHashMap<String, Object>(status);
|
||||
unmodifiableStatus = Collections.unmodifiableMap(status);
|
||||
}
|
||||
@ -56,16 +56,16 @@ public class Participant implements Serializable {
|
||||
return name;
|
||||
}
|
||||
|
||||
public Long getUserid() {
|
||||
return userid;
|
||||
public Long getInternalUserID() {
|
||||
return internalUserID;
|
||||
}
|
||||
|
||||
public String getRole() {
|
||||
return role;
|
||||
}
|
||||
|
||||
public String getExternUserID() {
|
||||
return externUserID;
|
||||
public String getExternalUserID() {
|
||||
return externalUserID;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -104,7 +104,7 @@ public class Participant implements Serializable {
|
||||
|
||||
public Map toMap() {
|
||||
Map m = new HashMap();
|
||||
m.put("userid", userid);
|
||||
m.put("userid", internalUserID);
|
||||
m.put("name", name);
|
||||
m.put("role", role);
|
||||
/**
|
||||
|
@ -46,12 +46,13 @@ public class ParticipantUpdatingRoomListener implements IRoomListener{
|
||||
return "PARTICIPANT:UPDATE:ROOM";
|
||||
}
|
||||
|
||||
public void participantStatusChange(Long userid, String status, Object value){
|
||||
public void participantStatusChange(Participant p, String status, Object value){
|
||||
if (messagingService != null) {
|
||||
HashMap<String,String> map= new HashMap<String, String>();
|
||||
map.put("meetingId", this.room.getName());
|
||||
map.put("messageId", MessagingConstants.USER_STATUS_CHANGE_EVENT);
|
||||
map.put("userid", userid.toString());
|
||||
|
||||
map.put("internalUserId", p.getInternalUserID().toString());
|
||||
map.put("status", status);
|
||||
map.put("value", value.toString());
|
||||
|
||||
@ -66,7 +67,8 @@ public class ParticipantUpdatingRoomListener implements IRoomListener{
|
||||
HashMap<String,String> map= new HashMap<String, String>();
|
||||
map.put("meetingId", this.room.getName());
|
||||
map.put("messageId", MessagingConstants.USER_JOINED_EVENT);
|
||||
map.put("userid", p.getUserid().toString());
|
||||
map.put("internalUserId", p.getInternalUserID().toString());
|
||||
map.put("externalUserId", p.getExternalUserID());
|
||||
map.put("fullname", p.getName());
|
||||
map.put("role", p.getRole());
|
||||
|
||||
@ -76,12 +78,12 @@ public class ParticipantUpdatingRoomListener implements IRoomListener{
|
||||
}
|
||||
}
|
||||
|
||||
public void participantLeft(Long userid) {
|
||||
public void participantLeft(Participant p) {
|
||||
if (messagingService != null) {
|
||||
HashMap<String,String> map= new HashMap<String, String>();
|
||||
map.put("meetingId", this.room.getName());
|
||||
map.put("messageId", MessagingConstants.USER_LEFT_EVENT);
|
||||
map.put("userid", userid.toString());
|
||||
map.put("internalUserId", p.getInternalUserID().toString());
|
||||
|
||||
Gson gson= new Gson();
|
||||
messagingService.send(MessagingConstants.PARTICIPANTS_CHANNEL, gson.toJson(map));
|
||||
|
@ -68,8 +68,8 @@ public class Room implements Serializable {
|
||||
|
||||
public void addParticipant(Participant participant) {
|
||||
synchronized (this) {
|
||||
log.debug("adding participant " + participant.getUserid());
|
||||
participants.put(participant.getUserid(), participant);
|
||||
log.debug("adding participant " + participant.getInternalUserID());
|
||||
participants.put(participant.getInternalUserID(), participant);
|
||||
// unmodifiableMap = Collections.unmodifiableMap(participants)
|
||||
}
|
||||
log.debug("Informing roomlisteners " + listeners.size());
|
||||
@ -82,29 +82,31 @@ public class Room implements Serializable {
|
||||
|
||||
public void removeParticipant(Long userid) {
|
||||
boolean present = false;
|
||||
Participant p = null;
|
||||
synchronized (this) {
|
||||
present = participants.containsKey(userid);
|
||||
if (present) {
|
||||
log.debug("removing participant");
|
||||
participants.remove(userid);
|
||||
p = participants.remove(userid);
|
||||
}
|
||||
}
|
||||
if (present) {
|
||||
for (Iterator it = listeners.values().iterator(); it.hasNext();) {
|
||||
IRoomListener listener = (IRoomListener) it.next();
|
||||
log.debug("calling participantLeft on listener " + listener.getName());
|
||||
listener.participantLeft(userid);
|
||||
listener.participantLeft(p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void changeParticipantStatus(Long userid, String status, Object value) {
|
||||
boolean present = false;
|
||||
Participant p = null;
|
||||
synchronized (this) {
|
||||
present = participants.containsKey(userid);
|
||||
if (present) {
|
||||
log.debug("change participant status");
|
||||
Participant p = participants.get(userid);
|
||||
p = participants.get(userid);
|
||||
p.setStatus(status, value);
|
||||
//participants.put(userid, p);
|
||||
//unmodifiableMap = Collections.unmodifiableMap(participants);
|
||||
@ -114,7 +116,7 @@ public class Room implements Serializable {
|
||||
for (Iterator it = listeners.values().iterator(); it.hasNext();) {
|
||||
IRoomListener listener = (IRoomListener) it.next();
|
||||
log.debug("calling participantStatusChange on listener " + listener.getName());
|
||||
listener.participantStatusChange(userid, status, value);
|
||||
listener.participantStatusChange(p, status, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -36,9 +36,9 @@ public class RoomListener implements IRoomListener{
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public void participantStatusChange(Long userid, String status, Object value){
|
||||
public void participantStatusChange(Participant p, String status, Object value){
|
||||
List list = new ArrayList();
|
||||
list.add(userid);
|
||||
list.add(p.getInternalUserID());
|
||||
list.add(status);
|
||||
list.add(value);
|
||||
so.sendMessage("participantStatusChange", list);
|
||||
@ -52,9 +52,9 @@ public class RoomListener implements IRoomListener{
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public void participantLeft(Long userid) {
|
||||
public void participantLeft(Participant p) {
|
||||
List args = new ArrayList();
|
||||
args.add(userid);
|
||||
args.add(p.getInternalUserID());
|
||||
so.sendMessage("participantLeft", args);
|
||||
}
|
||||
|
||||
|
@ -21,27 +21,21 @@ public class RedisMessagingService implements MessagingService{
|
||||
|
||||
private static Logger log = Red5LoggerFactory.getLogger(RedisMessagingService.class, "bigbluebutton");
|
||||
|
||||
private int port;
|
||||
private String host;
|
||||
|
||||
private JedisPool redisPool;
|
||||
private final Executor exec = Executors.newSingleThreadExecutor();
|
||||
private Runnable pubsubListener;
|
||||
|
||||
private final Set<MessageListener> listeners = new HashSet<MessageListener>();
|
||||
|
||||
public RedisMessagingService(String host, int port) {
|
||||
this.host = host;
|
||||
this.port = port;
|
||||
public RedisMessagingService(){
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void start() {
|
||||
log.debug("Starting redis pubsub...");
|
||||
//Currently, the pool gets blocked for publish if a resource subscribe to a channel
|
||||
final Jedis jedis = new Jedis(this.host,this.port);
|
||||
final Jedis jedis = redisPool.getResource();
|
||||
try {
|
||||
jedis.connect();
|
||||
pubsubListener = new Runnable() {
|
||||
public void run() {
|
||||
jedis.psubscribe(new PubSubListener(), MessagingConstants.BIGBLUEBUTTON_PATTERN);
|
||||
@ -49,7 +43,7 @@ public class RedisMessagingService implements MessagingService{
|
||||
};
|
||||
exec.execute(pubsubListener);
|
||||
} catch (Exception e) {
|
||||
log.error("Cannot connect to [" + host + ":" + port + "]");
|
||||
log.error("Error subscribing to channels: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -63,27 +63,27 @@ public class ParticipantsEventSender implements IRoomListener {
|
||||
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||
@Override
|
||||
public void participantJoined(Participant p) {
|
||||
log.debug("A participant has joined " + p.getUserid());
|
||||
log.debug("A participant has joined " + p.getInternalUserID());
|
||||
ArrayList args = new ArrayList();
|
||||
args.add(p.toMap());
|
||||
log.debug("Sending participantJoined " + p.getUserid() + " to client.");
|
||||
log.debug("Sending participantJoined " + p.getExternalUserID() + " to client.");
|
||||
so.sendMessage("participantJoined", args);
|
||||
}
|
||||
|
||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||
@Override
|
||||
public void participantLeft(Long userid) {
|
||||
public void participantLeft(Participant p) {
|
||||
ArrayList args = new ArrayList();
|
||||
args.add(userid);
|
||||
args.add(p.getInternalUserID());
|
||||
so.sendMessage("participantLeft", args);
|
||||
}
|
||||
|
||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||
@Override
|
||||
public void participantStatusChange(Long userid, String status, Object value) {
|
||||
log.debug("A participant's status has changed " + userid + " " + status + " " + value);
|
||||
public void participantStatusChange(Participant p, String status, Object value) {
|
||||
log.debug("A participant's status has changed " + p.getInternalUserID() + " " + status + " " + value);
|
||||
ArrayList args = new ArrayList();
|
||||
args.add(userid);
|
||||
args.add(p.getInternalUserID());
|
||||
args.add(status);
|
||||
args.add(value);
|
||||
so.sendMessage("participantStatusChange", args);
|
||||
|
@ -24,21 +24,17 @@ import org.red5.server.api.IClient;
|
||||
import org.red5.server.api.IConnection;
|
||||
import org.red5.server.api.IScope;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.red5.logging.Red5LoggerFactory;
|
||||
|
||||
import org.red5.server.api.so.ISharedObject;
|
||||
import org.red5.server.adapter.ApplicationAdapter;
|
||||
import org.red5.server.api.Red5;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
import org.bigbluebutton.conference.RoomsManager;
|
||||
import org.bigbluebutton.conference.Room;
import org.bigbluebutton.conference.Participant;
import org.bigbluebutton.conference.RoomListener;
import org.bigbluebutton.conference.BigBlueButtonSession;
import org.bigbluebutton.conference.Constants;
import org.bigbluebutton.conference.service.recorder.RecorderApplication;
|
||||
import java.util.Map;
import org.bigbluebutton.conference.BigBlueButtonSession;
import org.bigbluebutton.conference.Constants;
import org.bigbluebutton.conference.service.recorder.RecorderApplication;
|
||||
import org.bigbluebutton.conference.service.recorder.participants.ParticipantsEventRecorder;
|
||||
|
||||
public class ParticipantsHandler extends ApplicationAdapter implements IApplication{
|
||||
private static Logger log = Red5LoggerFactory.getLogger( ParticipantsHandler.class, "bigbluebutton" );
|
||||
|
||||
private static final String PARTICIPANTS = "PARTICIPANTS";
|
||||
private static final String PARTICIPANTS_SO = "participantsSO";
|
||||
private static final String APP = "PARTICIPANTS";
|
||||
|
||||
@ -113,23 +109,8 @@ public class ParticipantsHandler extends ApplicationAdapter implements IApplicat
|
||||
if (bbbSession == null) {
|
||||
log.debug("roomLeave - session is null");
|
||||
} else {
|
||||
log.debug("roomLeave - session is NOT null");
|
||||
}
|
||||
Long userid = bbbSession.getUserid();
|
||||
participantsApplication.participantLeft(bbbSession.getSessionName(), userid);
|
||||
}
|
||||
|
||||
private void setupRoom(IScope scope) {
|
||||
ISharedObject so = getSharedObject(scope, PARTICIPANTS_SO);
|
||||
if (so == null) log.debug("SHARED OBJECT is NULL!!!!");
|
||||
if (getBbbSession().getRecord() == null) log.debug("SESSION is NULL!!!!");
|
||||
ParticipantsEventSender sender = new ParticipantsEventSender(so);
|
||||
ParticipantsEventRecorder recorder = new ParticipantsEventRecorder(scope.getName(), recorderApplication);
|
||||
|
||||
log.debug("Adding room listener " + scope.getName());
|
||||
participantsApplication.addRoomListener(scope.getName(), recorder);
|
||||
participantsApplication.addRoomListener(scope.getName(), sender);
|
||||
log.debug("Done setting up recorder and listener");
|
||||
participantsApplication.participantLeft(bbbSession.getSessionName(), bbbSession.getClientID());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -153,42 +134,31 @@ public class ParticipantsHandler extends ApplicationAdapter implements IApplicat
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public boolean participantJoin() {
|
||||
log.debug(APP + ":participantJoin - getting userid");
|
||||
BigBlueButtonSession bbbSession = getBbbSession();
|
||||
if (bbbSession == null) {
|
||||
log.warn("bbb session is null");
|
||||
if (bbbSession != null) {
|
||||
Long userid = bbbSession.getClientID();
|
||||
String username = bbbSession.getUsername();
|
||||
String role = bbbSession.getRole();
|
||||
String room = bbbSession.getRoom();
|
||||
log.debug(APP + ":participantJoin - [" + room + "] [" + userid + ", " + username + ", " + role + "]");
|
||||
|
||||
Map<String, Boolean> status = new HashMap<String, Boolean>();
|
||||
status.put("raiseHand", false);
|
||||
status.put("presenter", false);
|
||||
status.put("hasStream", false);
|
||||
return participantsApplication.participantJoin(room, userid, username, role, bbbSession.getExternUserID(), status);
|
||||
}
|
||||
|
||||
Long userid = bbbSession.getUserid();
|
||||
log.debug(APP + ":participantJoin - userid " + userid);
|
||||
String username = bbbSession.getUsername();
|
||||
log.debug(APP + ":participantJoin - username " + username);
|
||||
String role = bbbSession.getRole();
|
||||
log.debug(APP + ":participantJoin - role " + role);
|
||||
String room = bbbSession.getRoom();
|
||||
log.debug(APP + ":participantJoin - room " + room);
|
||||
|
||||
String externUserID = bbbSession.getExternUserID();
|
||||
|
||||
log.debug(APP + ":participantJoin");
|
||||
Map status = new HashMap();
|
||||
status.put("raiseHand", false);
|
||||
status.put("presenter", false);
|
||||
status.put("hasStream", false);
|
||||
|
||||
log.debug(APP + ":participantJoin setting status");
|
||||
return participantsApplication.participantJoin(room, userid, username, role, externUserID, status);
|
||||
log.warn("Can't send user join as session is null.");
|
||||
return false;
|
||||
}
|
||||
|
||||
public void setParticipantsApplication(ParticipantsApplication a) {
|
||||
log.debug("Setting participants application");
|
||||
participantsApplication = a;
|
||||
}
|
||||
|
||||
public void setRecorderApplication(RecorderApplication a) {
|
||||
log.debug("Setting recorder application");
|
||||
recorderApplication = a;
|
||||
}
|
||||
|
||||
|
@ -83,7 +83,7 @@ public class ParticipantsService {
|
||||
Map pm = new HashMap();
|
||||
for (Iterator it = pc.iterator(); it.hasNext();) {
|
||||
Participant ap = (Participant) it.next();
|
||||
pm.put(ap.getUserid(), ap.toMap());
|
||||
pm.put(ap.getInternalUserID(), ap.toMap());
|
||||
}
|
||||
participants.put("participants", pm);
|
||||
}
|
||||
|
@ -77,15 +77,15 @@ public class ConversionUpdatesMessageListener {
|
||||
conversionUpdatesProcessor.process(message);
|
||||
}
|
||||
else if(messageKey.equalsIgnoreCase(PAGE_COUNT_EXCEEDED_KEY)){
|
||||
String numberOfPages = (String) mapMessage.get("numberOfPages");
|
||||
String maxNumberPages = (String) mapMessage.get("maxNumberPages");
|
||||
Integer numberOfPages = new Integer((String) mapMessage.get("numberOfPages"));
|
||||
Integer maxNumberPages = new Integer((String) mapMessage.get("maxNumberPages"));
|
||||
message.put("numberOfPages", numberOfPages);
|
||||
message.put("maxNumberPages", maxNumberPages);
|
||||
conversionUpdatesProcessor.process(message);
|
||||
}
|
||||
else if(messageKey.equalsIgnoreCase(GENERATED_SLIDE_KEY)){
|
||||
String numberOfPages = (String) mapMessage.get("numberOfPages");
|
||||
String pagesCompleted = (String) mapMessage.get("pagesCompleted");
|
||||
Integer numberOfPages = new Integer((String)mapMessage.get("numberOfPages"));
|
||||
Integer pagesCompleted = new Integer((String)mapMessage.get("pagesCompleted"));
|
||||
message.put("numberOfPages", numberOfPages);
|
||||
message.put("pagesCompleted", pagesCompleted);
|
||||
|
||||
|
@ -0,0 +1,124 @@
|
||||
package org.bigbluebutton.conference.service.recorder;
|
||||
|
||||
import org.apache.commons.pool.impl.GenericObjectPool;
|
||||
|
||||
public class GenericObjectPoolConfigWrapper {
|
||||
|
||||
private final GenericObjectPool.Config config;
|
||||
|
||||
public GenericObjectPoolConfigWrapper() {
|
||||
this.config = new GenericObjectPool.Config();
|
||||
}
|
||||
|
||||
public GenericObjectPool.Config getConfig() {
|
||||
return config;
|
||||
}
|
||||
|
||||
public int getMaxIdle() {
|
||||
return this.config.maxIdle;
|
||||
}
|
||||
|
||||
public void setMaxIdle(int maxIdle) {
|
||||
this.config.maxIdle = maxIdle;
|
||||
}
|
||||
|
||||
public int getMinIdle() {
|
||||
return this.config.minIdle;
|
||||
}
|
||||
|
||||
public void setMinIdle(int minIdle) {
|
||||
this.config.minIdle = minIdle;
|
||||
}
|
||||
|
||||
public int getMaxActive() {
|
||||
return this.config.maxActive;
|
||||
}
|
||||
|
||||
public void setMaxActive(int maxActive) {
|
||||
this.config.maxActive = maxActive;
|
||||
}
|
||||
|
||||
public long getMaxWait() {
|
||||
return this.config.maxWait;
|
||||
}
|
||||
|
||||
public void setMaxWait(long maxWait) {
|
||||
this.config.maxWait = maxWait;
|
||||
}
|
||||
|
||||
public byte getWhenExhaustedAction() {
|
||||
return this.config.whenExhaustedAction;
|
||||
}
|
||||
|
||||
public void setWhenExhaustedAction(byte whenExhaustedAction) {
|
||||
this.config.whenExhaustedAction = whenExhaustedAction;
|
||||
}
|
||||
|
||||
public boolean isTestOnBorrow() {
|
||||
return this.config.testOnBorrow;
|
||||
}
|
||||
|
||||
public void setTestOnBorrow(boolean testOnBorrow) {
|
||||
this.config.testOnBorrow = testOnBorrow;
|
||||
}
|
||||
|
||||
public boolean isTestOnReturn() {
|
||||
return this.config.testOnReturn;
|
||||
}
|
||||
|
||||
public void setTestOnReturn(boolean testOnReturn) {
|
||||
this.config.testOnReturn = testOnReturn;
|
||||
}
|
||||
|
||||
public boolean isTestWhileIdle() {
|
||||
return this.config.testWhileIdle;
|
||||
}
|
||||
|
||||
public void setTestWhileIdle(boolean testWhileIdle) {
|
||||
this.config.testWhileIdle = testWhileIdle;
|
||||
}
|
||||
|
||||
public long getTimeBetweenEvictionRunsMillis() {
|
||||
return this.config.timeBetweenEvictionRunsMillis;
|
||||
}
|
||||
|
||||
public void setTimeBetweenEvictionRunsMillis(
|
||||
long timeBetweenEvictionRunsMillis) {
|
||||
this.config.timeBetweenEvictionRunsMillis =
|
||||
timeBetweenEvictionRunsMillis;
|
||||
}
|
||||
|
||||
public int getNumTestsPerEvictionRun() {
|
||||
return this.config.numTestsPerEvictionRun;
|
||||
}
|
||||
|
||||
public void setNumTestsPerEvictionRun(int numTestsPerEvictionRun) {
|
||||
this.config.numTestsPerEvictionRun = numTestsPerEvictionRun;
|
||||
}
|
||||
|
||||
public long getMinEvictableIdleTimeMillis() {
|
||||
return this.config.minEvictableIdleTimeMillis;
|
||||
}
|
||||
|
||||
public void setMinEvictableIdleTimeMillis(long minEvictableIdleTimeMillis) {
|
||||
this.config.minEvictableIdleTimeMillis = minEvictableIdleTimeMillis;
|
||||
}
|
||||
|
||||
public long getSoftMinEvictableIdleTimeMillis() {
|
||||
return this.config.softMinEvictableIdleTimeMillis;
|
||||
}
|
||||
|
||||
public void setSoftMinEvictableIdleTimeMillis(
|
||||
long softMinEvictableIdleTimeMillis) {
|
||||
this.config.softMinEvictableIdleTimeMillis =
|
||||
softMinEvictableIdleTimeMillis;
|
||||
}
|
||||
|
||||
public boolean isLifo() {
|
||||
return this.config.lifo;
|
||||
}
|
||||
|
||||
public void setLifo(boolean lifo) {
|
||||
this.config.lifo = lifo;
|
||||
}
|
||||
}
|
@ -31,7 +31,7 @@ public class ParticipantsEventRecorder implements IRoomListener {
|
||||
public void participantJoined(Participant p) {
|
||||
ParticipantJoinRecordEvent ev = new ParticipantJoinRecordEvent();
|
||||
ev.setTimestamp(System.currentTimeMillis());
|
||||
ev.setUserId(p.getUserid().toString());
|
||||
ev.setUserId(p.getInternalUserID().toString());
|
||||
ev.setMeetingId(session);
|
||||
ev.setStatus(p.getStatus().toString());
|
||||
ev.setRole(p.getRole());
|
||||
@ -40,20 +40,20 @@ public class ParticipantsEventRecorder implements IRoomListener {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void participantLeft(Long userid) {
|
||||
public void participantLeft(Participant p) {
|
||||
ParticipantLeftRecordEvent ev = new ParticipantLeftRecordEvent();
|
||||
ev.setTimestamp(System.currentTimeMillis());
|
||||
ev.setUserId(userid.toString());
|
||||
ev.setUserId(p.getInternalUserID().toString());
|
||||
ev.setMeetingId(session);
|
||||
|
||||
recorder.record(session, ev);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void participantStatusChange(Long userid, String status, Object value) {
|
||||
public void participantStatusChange(Participant p, String status, Object value) {
|
||||
ParticipantStatusChangeRecordEvent ev = new ParticipantStatusChangeRecordEvent();
|
||||
ev.setTimestamp(System.currentTimeMillis());
|
||||
ev.setUserId(userid.toString());
|
||||
ev.setUserId(p.getInternalUserID().toString());
|
||||
ev.setMeetingId(session);
|
||||
ev.setStatus(status);
|
||||
ev.setValue(value.toString());
|
||||
|
@ -68,8 +68,7 @@ public class VoiceHandler extends ApplicationAdapter implements IApplication{
|
||||
@Override
|
||||
public boolean appStart(IScope scope) {
|
||||
log.debug(APP + ":appStart " + scope.getName());
|
||||
conferenceService.startup();
|
||||
return true;
|
||||
return conferenceService.startup();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -53,7 +53,8 @@ public class Page {
|
||||
}
|
||||
|
||||
public void undo(){
|
||||
shapes.remove(shapes.size()-1);
|
||||
if(shapes.size() > 0)
|
||||
shapes.remove(shapes.size()-1);
|
||||
}
|
||||
|
||||
public int getNumShapesOnPage(){
|
||||
|
@ -21,7 +21,6 @@
|
||||
*/
|
||||
package org.bigbluebutton.conference.service.whiteboard;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import org.red5.compatibility.flex.messaging.io.ArrayCollection;
|
||||
|
||||
@ -30,23 +29,22 @@ public class Shape {
|
||||
private String type;
|
||||
private int thickness;
|
||||
private int color;
|
||||
private double parentWidth;
|
||||
private double parentHeight;
|
||||
private String id;
|
||||
private String status;
|
||||
|
||||
private double[] shape;
|
||||
|
||||
public static final String PENCIL = "pencil";
|
||||
public static final String RECTANGLE = "rectangle";
|
||||
public static final String ELLIPSE = "ellipse";
|
||||
|
||||
public Shape(double[] shape, String type, int color, int thickness, double parentWidth, double parentHeight){
|
||||
public Shape(double[] shape, String type, int color, int thickness, String id, String status){
|
||||
this.shape = shape;
|
||||
this.type = type;
|
||||
this.color = color;
|
||||
this.thickness = thickness;
|
||||
this.parentWidth = parentWidth;
|
||||
this.parentHeight = parentHeight;
|
||||
|
||||
if(this.type.equalsIgnoreCase(PENCIL)) this.shape = optimizeFreeHand();
|
||||
this.id = id;
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public ArrayCollection<Object> toList(){
|
||||
@ -55,75 +53,22 @@ public class Shape {
|
||||
sendableList.add(type);
|
||||
sendableList.add(color);
|
||||
sendableList.add(thickness);
|
||||
sendableList.add(parentWidth);
|
||||
sendableList.add(parentHeight);
|
||||
sendableList.add(id);
|
||||
sendableList.add(status);
|
||||
return sendableList;
|
||||
}
|
||||
|
||||
public Object[] toObjectArray(){
|
||||
Object[] objects = new Object[6];
|
||||
Object[] objects = new Object[10];
|
||||
objects[0] = shape;
|
||||
objects[1] = type;
|
||||
objects[2] = color;
|
||||
objects[3] = thickness;
|
||||
objects[4] = parentWidth;
|
||||
objects[5] = parentHeight;
|
||||
objects[4] = id;
|
||||
objects[5] = status;
|
||||
return objects;
|
||||
}
|
||||
|
||||
private double[] optimizeFreeHand(){
|
||||
if (shape.length < 10) return shape; //Don't do any optimization for very small shapes
|
||||
|
||||
ArrayList<Double> newShape = new ArrayList<Double>();
|
||||
|
||||
double x1 = shape[0];
|
||||
double y1 = shape[1];
|
||||
newShape.add(x1);
|
||||
newShape.add(y1);
|
||||
double stableSlope = 0;
|
||||
double newSlope;
|
||||
double lastStableX = x1;
|
||||
double lastStableY = y1;
|
||||
boolean lineStable = false;
|
||||
|
||||
for (int i=2; i<shape.length; i= i+2){
|
||||
double x2 = shape[i];
|
||||
double y2 = shape[i+1];
|
||||
|
||||
newSlope = (y2 - y1)/(x2 - x1);
|
||||
if (slopeDifference(stableSlope, newSlope) < 5){
|
||||
lastStableX = x2;
|
||||
lastStableY = y2;
|
||||
lineStable = true;
|
||||
} else{
|
||||
stableSlope = newSlope;
|
||||
if (lineStable){
|
||||
lineStable = false;
|
||||
newShape.add(lastStableX);
|
||||
newShape.add(lastStableY);
|
||||
}
|
||||
x1 = x2;
|
||||
y1 = y2;
|
||||
newShape.add(x1);
|
||||
newShape.add(y1);
|
||||
}
|
||||
}
|
||||
newShape.add(shape[shape.length - 2]);
|
||||
newShape.add(shape[shape.length - 1]);
|
||||
|
||||
double[] returnArray = new double[newShape.size()];
|
||||
for (int j= 0; j<newShape.size(); j++){
|
||||
returnArray[j] = newShape.get(j);
|
||||
}
|
||||
|
||||
return returnArray;
|
||||
}
|
||||
|
||||
private double slopeDifference(double oldSlope, double newSlope){
|
||||
double differenceInRad = Math.atan(oldSlope) - Math.atan(newSlope);
|
||||
return Math.abs(Math.toDegrees(differenceInRad));
|
||||
}
|
||||
|
||||
public String getShape(){
|
||||
String dataToString = "";
|
||||
for (int i=0; i<shape.length - 1; i++){
|
||||
|
@ -86,8 +86,8 @@ public class WhiteboardApplication extends MultiThreadedApplicationAdapter imple
|
||||
return roomManager.getRoom(getLocalScope().getName()).isWhiteboardEnabled();
|
||||
}
|
||||
|
||||
public void sendShape(double[] shape, String type, int color, int thickness, double parentWidth, double parentHeight){
|
||||
Shape newShape = new Shape(shape, type, color, thickness, parentWidth, parentHeight);
|
||||
public void sendShape(double[] shape, String type, int color, int thickness, String id, String status){
|
||||
Shape newShape = new Shape(shape, type, color, thickness, id, status);
|
||||
roomManager.getRoom(getLocalScope().getName()).addShape(newShape);
|
||||
ISharedObject drawSO = getSharedObject(getLocalScope(), WHITEBOARD_SHARED_OBJECT);
|
||||
List<Object> arguments = newShape.toList();
|
||||
|
@ -38,9 +38,9 @@ public class WhiteboardService {
|
||||
this.application = a;
|
||||
}
|
||||
|
||||
public void sendShape(double[] shape, String type, int color, int thickness, double parentWidth, double parentHeight){
|
||||
public void sendShape(double[] shape, String type, int color, int thickness, String id, String status){
|
||||
log.info("WhiteboardApplication - Sending share");
|
||||
application.sendShape(shape, type, color, thickness, parentWidth, parentHeight);
|
||||
application.sendShape(shape, type, color, thickness, id, status);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -34,8 +34,8 @@ public class ConferenceService implements ConferenceEventListener {
|
||||
private ConferenceServiceProvider confProvider;
|
||||
private ClientManager clientManager;
|
||||
|
||||
public void startup() {
|
||||
confProvider.startup();
|
||||
public boolean startup() {
|
||||
return confProvider.startup();
|
||||
}
|
||||
|
||||
public void shutdown() {
|
||||
|
@ -24,7 +24,7 @@ package org.bigbluebutton.webconference.voice;
|
||||
import org.bigbluebutton.webconference.voice.events.ConferenceEventListener;
|
||||
|
||||
public interface ConferenceServiceProvider {
|
||||
public void startup();
|
||||
public boolean startup();
|
||||
public void shutdown();
|
||||
public void populateRoom(String room);
|
||||
public void mute(String room, Integer participant, Boolean mute);
|
||||
|
@ -75,54 +75,83 @@ public class FreeswitchApplication extends Observable implements ConferenceServi
|
||||
}
|
||||
|
||||
@Override
|
||||
public void startup() {
|
||||
public boolean startup() {
|
||||
Client c = manager.getESLClient();
|
||||
c.addEventListener( this );
|
||||
c.cancelEventSubscriptions();
|
||||
c.setEventSubscriptions( "plain", "all" );
|
||||
c.addEventFilter( "Event-Name", "heartbeat" );
|
||||
c.addEventFilter( "Event-Name", "custom" );
|
||||
c.addEventFilter( "Event-Name", "background_job" );
|
||||
|
||||
try {
|
||||
Thread.sleep(5000);
|
||||
} catch (InterruptedException ex) {
|
||||
java.util.logging.Logger.getLogger(FreeswitchApplication.class.getName()).log(Level.SEVERE, null, ex);
|
||||
if (c.canSend()) {
|
||||
c.addEventListener( this );
|
||||
c.cancelEventSubscriptions();
|
||||
c.setEventSubscriptions( "plain", "all" );
|
||||
c.addEventFilter( "Event-Name", "heartbeat" );
|
||||
c.addEventFilter( "Event-Name", "custom" );
|
||||
c.addEventFilter( "Event-Name", "background_job" );
|
||||
|
||||
try {
|
||||
Thread.sleep(5000);
|
||||
} catch (InterruptedException ex) {
|
||||
java.util.logging.Logger.getLogger(FreeswitchApplication.class.getName()).log(Level.SEVERE, null, ex);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//Start Heartbeat and exception Event Observer Monitor
|
||||
startHeartbeatMonitor();
|
||||
return true;
|
||||
}
|
||||
|
||||
private void startHeartbeatMonitor() {
|
||||
if(heartbeatMonitor == null) { //Only startup once. as startup will be called for reconnect.
|
||||
heartbeatMonitor = new FreeswitchHeartbeatMonitor(manager, this);
|
||||
this.addObserver(heartbeatMonitor);
|
||||
heartbeatMonitor.start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void shutdown() {
|
||||
heartbeatMonitor.stop();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void populateRoom(String room) {
|
||||
PopulateRoomCommand prc = new PopulateRoomCommand(room, USER);
|
||||
EslMessage response = manager.getESLClient().sendSyncApiCommand(prc.getCommand(), prc.getCommandArgs());
|
||||
prc.handleResponse(response, conferenceEventListener);
|
||||
public void populateRoom(String room) {
|
||||
Client c = manager.getESLClient();
|
||||
if (c.canSend()) {
|
||||
PopulateRoomCommand prc = new PopulateRoomCommand(room, USER);
|
||||
EslMessage response = c.sendSyncApiCommand(prc.getCommand(), prc.getCommandArgs());
|
||||
prc.handleResponse(response, conferenceEventListener);
|
||||
} else {
|
||||
log.warn("Can't send populate room request to FreeSWITCH as we are not connected.");
|
||||
// Let's see if we can recover the connection.
|
||||
startHeartbeatMonitor();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void mute(String room, Integer participant, Boolean mute) {
|
||||
MuteParticipantCommand mpc = new MuteParticipantCommand(room, participant, mute, USER);
|
||||
String jobId = manager.getESLClient().sendAsyncApiCommand( mpc.getCommand(), mpc.getCommandArgs());
|
||||
log.debug("mute called for room [{}] jobid [{}]", room, jobId);
|
||||
Client c = manager.getESLClient();
|
||||
if (c.canSend()) {
|
||||
MuteParticipantCommand mpc = new MuteParticipantCommand(room, participant, mute, USER);
|
||||
String jobId = c.sendAsyncApiCommand( mpc.getCommand(), mpc.getCommandArgs());
|
||||
log.debug("mute called for room [{}] jobid [{}]", room, jobId);
|
||||
}else {
|
||||
log.warn("Can't send mute request to FreeSWITCH as we are not connected.");
|
||||
// Let's see if we can recover the connection.
|
||||
startHeartbeatMonitor();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void eject(String room, Integer participant) {
|
||||
EjectParticipantCommand mpc = new EjectParticipantCommand(room, participant, USER);
|
||||
String jobId = manager.getESLClient().sendAsyncApiCommand( mpc.getCommand(), mpc.getCommandArgs());
|
||||
log.debug("eject/kick called for room [{}] jobid [{}]", room, jobId);
|
||||
Client c = manager.getESLClient();
|
||||
if (c.canSend()) {
|
||||
EjectParticipantCommand mpc = new EjectParticipantCommand(room, participant, USER);
|
||||
String jobId = c.sendAsyncApiCommand( mpc.getCommand(), mpc.getCommandArgs());
|
||||
log.debug("eject/kick called for room [{}] jobid [{}]", room, jobId);
|
||||
}else {
|
||||
log.warn("Can't send eject request to FreeSWITCH as we are not connected.");
|
||||
// Let's see if we can recover the connection.
|
||||
startHeartbeatMonitor();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -133,10 +162,17 @@ public class FreeswitchApplication extends Observable implements ConferenceServi
|
||||
if (log.isDebugEnabled())
|
||||
log.debug("Asking Freeswitch to start recording in {}", voicePath);
|
||||
|
||||
RecordConferenceCommand rcc = new RecordConferenceCommand(room, USER, true, voicePath);
|
||||
log.debug(rcc.getCommand() + rcc.getCommandArgs());
|
||||
EslMessage response = manager.getESLClient().sendSyncApiCommand(rcc.getCommand(), rcc.getCommandArgs());
|
||||
rcc.handleResponse(response, conferenceEventListener);
|
||||
Client c = manager.getESLClient();
|
||||
if (c.canSend()) {
|
||||
RecordConferenceCommand rcc = new RecordConferenceCommand(room, USER, true, voicePath);
|
||||
log.debug(rcc.getCommand() + rcc.getCommandArgs());
|
||||
EslMessage response = manager.getESLClient().sendSyncApiCommand(rcc.getCommand(), rcc.getCommandArgs());
|
||||
rcc.handleResponse(response, conferenceEventListener);
|
||||
}else {
|
||||
log.warn("Can't send record request to FreeSWITCH as we are not connected.");
|
||||
// Let's see if we can recover the connection.
|
||||
startHeartbeatMonitor();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -105,8 +105,7 @@ public class FreeswitchHeartbeatMonitor implements Observer {
|
||||
log.info("Logging off fom [" + connection.toString() + "]");
|
||||
connection.disconnect();
|
||||
}
|
||||
log.info("Logging in as [" + connection.getPassword() +
|
||||
"] to [" + connection.getHostname() + ":" + connection.getPort() + "]");
|
||||
log.info("Logging in as [" + connection.getPassword() + "] to [" + connection.getHostname() + ":" + connection.getPort() + "]");
|
||||
try {
|
||||
connection.connect();
|
||||
eventListner.startup(); //Re-call startup to setup eventListner and filters...
|
||||
|
@ -21,6 +21,8 @@
|
||||
*/
|
||||
package org.bigbluebutton.webconference.voice.freeswitch;
|
||||
|
||||
import java.net.ConnectException;
|
||||
|
||||
import org.freeswitch.esl.client.inbound.Client;
|
||||
import org.freeswitch.esl.client.inbound.InboundConnectionFailure;
|
||||
import org.freeswitch.esl.client.manager.ManagerConnection;
|
||||
@ -69,29 +71,27 @@ public class FreeswitchServiceProvider implements ConferenceServiceProvider {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void startup() {
|
||||
public boolean startup() {
|
||||
if (connection == null) {
|
||||
log.error("Cannot start application as ESL Client has not been set.");
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
if (connect()) {
|
||||
// ping = new KeepAlivePing(connection);
|
||||
// ping.start();
|
||||
appDelegate.startup();
|
||||
return appDelegate.startup();
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private boolean connect() {
|
||||
log.info("Logging in as [" + connection.getPassword() +
|
||||
"] to [" + connection.getHostname() + ":" + connection.getPort() + "]");
|
||||
log.info("Logging in as [" + connection.getPassword() + "] to [" + connection.getHostname() + ":" + connection.getPort() + "]");
|
||||
try {
|
||||
connection.connect();
|
||||
return true;
|
||||
} catch ( InboundConnectionFailure e ) {
|
||||
} catch ( InboundConnectionFailure e ) {
|
||||
log.error( "Connect to FreeSwitch ESL socket failed", e );
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:util="http://www.springframework.org/schema/util"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
||||
http://www.springframework.org/schema/util
|
||||
http://www.springframework.org/schema/util/spring-util-2.0.xsd
|
||||
">
|
||||
|
||||
<bean id="roomsManager" class="org.bigbluebutton.conference.RoomsManager">
|
||||
@ -103,14 +106,43 @@
|
||||
</bean>
|
||||
|
||||
<bean id="messagingService" class="org.bigbluebutton.conference.service.messaging.RedisMessagingService">
|
||||
<constructor-arg index="0" value="${redis.host}"/>
|
||||
<constructor-arg index="1" value="${redis.port}"/>
|
||||
<property name="redisPool" ref="redisPool"/>
|
||||
</bean>
|
||||
|
||||
<bean id="config" class="org.bigbluebutton.conference.service.recorder.GenericObjectPoolConfigWrapper">
|
||||
<!-- Action to take when trying to acquire a connection and all connections are taken -->
|
||||
<property name="whenExhaustedAction">
|
||||
<!-- Fail-fast behaviour, we don't like to keep the kids waiting -->
|
||||
<util:constant static-field="org.apache.commons.pool.impl.GenericObjectPool.WHEN_EXHAUSTED_FAIL" />
|
||||
<!-- Default behaviour, block the caller until a resource becomes available -->
|
||||
<!--<util:constant static-field="org.apache.commons.pool.impl.GenericObjectPool.WHEN_EXHAUSTED_BLOCK" />-->
|
||||
</property>
|
||||
<!-- Maximum active connections to Redis instance -->
|
||||
<property name="maxActive" value="12" />
|
||||
<!-- Number of connections to Redis that just sit there and do nothing -->
|
||||
<property name="maxIdle" value="6" />
|
||||
<!-- Minimum number of idle connections to Redis - these can be seen as always open and ready to serve -->
|
||||
<property name="minIdle" value="1" />
|
||||
<!-- Tests whether connection is dead when connection retrieval method is called -->
|
||||
<property name="testOnBorrow" value="true" />
|
||||
<!-- Tests whether connection is dead when returning a connection to the pool -->
|
||||
<property name="testOnReturn" value="true" />
|
||||
<!-- Tests whether connections are dead during idle periods -->
|
||||
<property name="testWhileIdle" value="true" />
|
||||
<!-- Maximum number of connections to test in each idle check -->
|
||||
<property name="numTestsPerEvictionRun" value="12" />
|
||||
<!-- Idle connection checking period -->
|
||||
<property name="timeBetweenEvictionRunsMillis" value="60000" />
|
||||
<!-- Maximum time, in milliseconds, to wait for a resource when exausted action is set to WHEN_EXAUSTED_BLOCK -->
|
||||
<property name="maxWait" value="5000" />
|
||||
</bean>
|
||||
|
||||
<bean id="redisPool" class="redis.clients.jedis.JedisPool">
|
||||
<constructor-arg index="0" value="${redis.host}"/>
|
||||
<constructor-arg index="1" value="${redis.port}"/>
|
||||
<constructor-arg index="0">
|
||||
<bean factory-bean="config" factory-method="getConfig" />
|
||||
</constructor-arg>
|
||||
<constructor-arg index="1" value="${redis.host}"/>
|
||||
<constructor-arg index="2" value="${redis.port}"/>
|
||||
</bean>
|
||||
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
<!-- BigBlueButton Client build.xml for use by Hudson builds. -->
|
||||
<project name="BigBlueButton Client" basedir="." default="clean-build-all" >
|
||||
<property environment="env" />
|
||||
<property name="STATIC_RSL" value="false" />
|
||||
<property name="STATIC_RSL" 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"/>
|
||||
@ -335,7 +335,7 @@
|
||||
</mxmlc>
|
||||
</sequential>
|
||||
</macrodef>
|
||||
|
||||
|
||||
<target name="compile-deskshare-standalone" depends="build-deskshare-standalone"
|
||||
description="Compiling standalone desktop sharing">
|
||||
<echo message="Deskshare standalone built without optimization." />
|
||||
@ -345,7 +345,25 @@
|
||||
description="Compiling the BBB without copying config.xml">
|
||||
</target>
|
||||
|
||||
<target name="copy-resource-files">
|
||||
<target name="copy-config-if-needed">
|
||||
<if>
|
||||
<available file="${BASE_DIR}/src/conf/config.xml"/>
|
||||
<else>
|
||||
<copy file="/var/www/bigbluebutton/client/conf/config.xml" todir="${BASE_DIR}/src/conf" />
|
||||
</else>
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="copy-join-mock-if-needed">
|
||||
<if>
|
||||
<available file="${BASE_DIR}/src/conf/join-mock.xml"/>
|
||||
<else>
|
||||
<copy file="${RESOURCES_DIR}/dev/join-mock.xml" todir="${BASE_DIR}/src/conf" />
|
||||
</else>
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="copy-resource-files" >
|
||||
<copy todir="${OUTPUT_DIR}/swfobject/" >
|
||||
<fileset dir="${PROD_RESOURCES_DIR}/swfobject" />
|
||||
</copy>
|
||||
@ -374,14 +392,6 @@
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="check-config-xml">
|
||||
<available file="/var/www/bigbluebutton/client/conf/config.xml" property="config-xml.present"/>
|
||||
</target>
|
||||
|
||||
<target name="copy-config-xml" depends="check-config-xml" if="config-xml.present">
|
||||
<echo message="Updating config.xml from /var/www/bigbluebutton/client/conf/config.xml" />
|
||||
<copy file="/var/www/bigbluebutton/client/conf/config.xml" todir="${OUTPUT_DIR}/conf" />
|
||||
</target>
|
||||
|
||||
<target name="generate-html-wrapper">
|
||||
<html-wrapper
|
||||
|
@ -39,29 +39,6 @@ server {
|
||||
include fastcgi_params;
|
||||
}
|
||||
|
||||
# Handle request to bbb-web running within Tomcat. This is for
|
||||
# the BBB-API and Presentation.
|
||||
location /bigbluebutton {
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
proxy_redirect default;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
# Allow 30M uploaded presentation document.
|
||||
client_max_body_size 30m;
|
||||
client_body_buffer_size 128k;
|
||||
|
||||
proxy_connect_timeout 90;
|
||||
proxy_send_timeout 90;
|
||||
proxy_read_timeout 90;
|
||||
|
||||
proxy_buffer_size 4k;
|
||||
proxy_buffers 4 32k;
|
||||
proxy_busy_buffers_size 64k;
|
||||
proxy_temp_file_write_size 64k;
|
||||
|
||||
include fastcgi_params;
|
||||
}
|
||||
|
||||
# BigBlueButton landing page.
|
||||
location / {
|
||||
root /var/www/bigbluebutton-default;
|
||||
@ -69,20 +46,6 @@ server {
|
||||
expires 1m;
|
||||
}
|
||||
|
||||
# BigBlueButton.html is here so we can expire it every 1 minute to
|
||||
# prevent caching.
|
||||
location /client/BigBlueButton.html {
|
||||
root /var/www/bigbluebutton;
|
||||
index index.html index.htm;
|
||||
expires 1m;
|
||||
}
|
||||
|
||||
# BigBlueButton Flash client.
|
||||
location /client {
|
||||
root /var/www/bigbluebutton;
|
||||
index index.html index.htm;
|
||||
}
|
||||
|
||||
# Include specific rules for record and playback
|
||||
include /etc/bigbluebutton/nginx/*.nginx;
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = الإتصال بالمخدم
|
||||
bbb.mainshell.statusProgress.loading = تحميل {0} وحدات
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = للأسف ، لا يمكن الإتصال بالمخدم حالياً
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - لمزيد من المعلومات يمكنك زيارة الرابط التالي http://www.bigbluebutton.org/.\n<br /> تم التعريب من قبل محمد أشرم
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - لمزيد من المعلومات يمكنك زيارة الرابط التالي http://www.bigbluebutton.org/.\n<br /> تم التعريب من قبل محمد أشرم
|
||||
bbb.mainshell.logBtn.toolTip = فتح نافذة الدخول
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Reset Layout
|
||||
bbb.oldlocalewindow.reminder1 = قد تكون ملفات الترجمة لـ BigBlueButton قديمة
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = إضغط لرفع اليد.
|
||||
bbb.viewers.presentBtn.label = Switch Presenter
|
||||
bbb.viewers.kickUserBtn.toolTip = Kick User
|
||||
bbb.presentation.title = Presentation
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Upload a document for presentation.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Upload a document for presentation.
|
||||
bbb.presentation.backBtn.toolTip = الشريحة السابقة
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = No outstanding issues have been detected.
|
||||
bbb.settings.instructions = Accept the Flash prompt that asks you for camera permissions. If you can see yourself and hear yourself, your browser has been set up correctly. Other potentials issues are shown bellow. Click on each to find a possible solution.
|
||||
bbb.videodock.title = Video dock
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Xahis edirik gozləyin {0} modul yuklənir:
|
||||
bbb.mainshell.statusProgress.loading = {0}(yuklənib)
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Xahis edirik biz serverin test muddəti ərzində gozləyəsiz.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Loq pəncərəsini aç
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Pəncərəni yenilə
|
||||
bbb.oldlocalewindow.reminder1 = Ola bilər ki sizdə video konfransın köhnə versiyası var.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Göstəricini tıklayın.
|
||||
bbb.viewers.presentBtn.label = Prezentatoru dəyiş
|
||||
bbb.viewers.kickUserBtn.toolTip = İstifadəçini çıxart.
|
||||
bbb.presentation.title = Prezentasiya
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Prezentasiya üçün sənədi yükləyin.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Prezentasiya üçün sənədi yükləyin.
|
||||
bbb.presentation.backBtn.toolTip = Əvvəlki slayd.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,19 +1,19 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Свързване със сървърът
|
||||
bbb.mainshell.statusProgress.loading = Зареждане на {0} модул/а
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Съжалявам, не мога да се свържа със сървърът.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - За повече информация вижте http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - За повече информация вижте http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Отвори Дневник Прозорецът
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Презареди Изгледа
|
||||
bbb.oldlocalewindow.reminder1 = Вие може да имате стар превод на BigBlueButton.
|
||||
bbb.oldlocalewindow.reminder2 = Моля изчистете кеша на браузъра си и опитайте отново.
|
||||
bbb.oldlocalewindow.windowTitle = Предупреждение: Стар превод на езика
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.playSound = Възпроизвеждане на тестов звук
|
||||
bbb.micSettings.hearFromHeadset = Трябва да чувате звука във вашите слушалки, не от говорителите на компютъра.
|
||||
bbb.micSettings.speakIntoMic = Трябва да виждата лентата да се движи, като говорите в слушалките си.
|
||||
bbb.micSettings.changeMic = Смяна на микрофон
|
||||
bbb.micSettings.join = Присъедини се към разговора
|
||||
bbb.micSettings.cancel = Отказ
|
||||
bbb.mainToolbar.helpBtn = Помощ
|
||||
bbb.mainToolbar.logoutBtn = Изход
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Натисни за да вдигнеш ръ
|
||||
bbb.viewers.presentBtn.label = Смени Презентаторът
|
||||
bbb.viewers.kickUserBtn.toolTip = Изхвърли потребител
|
||||
bbb.presentation.title = Презентация
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Зареди документ за презентация.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Зареди документ за презентация.
|
||||
bbb.presentation.backBtn.toolTip = Предишна страница.
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = Избери лице за персонален ч
|
||||
bbb.chat.chatOptions = Чат опции
|
||||
bbb.chat.fontSize = Големина на шрифта
|
||||
bbb.listeners.title = Слушатели {0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = Кликни за да говориш
|
||||
bbb.listeners.pushToMute.toolTip = Кликни за да заглушиш себе си
|
||||
bbb.listeners.talk = Говори
|
||||
bbb.listeners.mute = Заглуши
|
||||
bbb.listeners.muteAllBtn.toolTip = Всички безмълвни
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Всички да говорят
|
||||
bbb.listeners.ejectTooltip = Изхвърли потребител
|
||||
@ -103,17 +105,17 @@ bbb.publishVideo.title = Включи Камера
|
||||
bbb.publishVideo.startPublishBtn.toolTip = старт на излъчването
|
||||
bbb.video.publish.close.tooltip = Спиране споделянето на вашето видео
|
||||
bbb.video.publish.close.label = Приключване
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.keepAspectBtn.tooltip = Запази пропорциите на прозореца
|
||||
bbb.video.fitVideoBtn.tooltip = Напасване на видео
|
||||
bbb.video.originalSizeBtn.tooltip = Първоначален размер
|
||||
bbb.video.publish.hint.noCamera = Няма налична камера
|
||||
bbb.video.publish.hint.cantOpenCamera = Камерата не е достъпна
|
||||
bbb.video.publish.hint.waitingApproval = Изчакване за одобрение
|
||||
bbb.video.publish.hint.videoPreview = Преглед на видео
|
||||
bbb.video.publish.hint.openingCamera = Отваряне на камера...
|
||||
bbb.video.publish.hint.cameraDenied = Няма достъп до камерата
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Камерата се използва от друго приложение
|
||||
bbb.video.publish.hint.publishing = Публикуване...
|
||||
bbb.desktopPublish.title = Споделяне на екрана: Представяне на Презентатора
|
||||
bbb.desktopPublish.fullscreen.tooltip = Споделяне на целия екран
|
||||
bbb.desktopPublish.fullscreen.label = На цял екран
|
||||
@ -147,7 +149,7 @@ bbb.logout.rejected = Връзката до сървъра беше отказа
|
||||
bbb.logout.invalidapp = Приложението red5 не съществува
|
||||
bbb.logout.unknown = Вашият клиент е загубил връзка със сървъра
|
||||
bbb.logout.usercommand = Вие сте излезли от конференцията
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.instructions = Кликни "Allow", когато изкочи, за проверка на работоспособността на споделяне на работния плот
|
||||
bbb.settings.deskshare.start = Проверете споделянето на работният екран
|
||||
bbb.settings.voice.volume = Микрофон
|
||||
bbb.settings.voice.adjust = Регулиране на звука
|
||||
@ -164,5 +166,6 @@ bbb.settings.warning.label = Предупреждение
|
||||
bbb.settings.warning.close = Затвори предупреждението
|
||||
bbb.settings.noissues = Няма открити възпрепятсващи проблеми.
|
||||
bbb.settings.instructions = Приемете Flash запитването за достъп до вашата камера. Ако можеш да видиш и чуеш себе си, вашият браузър е настроен правилно. Други потенциални проблеми са показани по-долу. Кликнете върху всеки да се намери възможно решение.
|
||||
bbb.videodock.title =
|
||||
bbb.videodock.title = Закачи видео
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,19 +1,19 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = সার্ভারের সাথে সংযোগ করা হচ্চ্ছ
|
||||
bbb.mainshell.statusProgress.loading = {0} মডিউলগুলো লোড করা হচ্চ্ছে
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = দুঃখিত, সার্ভারের সাথে সংযোগ করা সম্ভব হচ্চ্ছে না।
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - আরও বেশি তথ্যের জন্য দেখুন http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - আরও বেশি তথ্যের জন্য দেখুন http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = লগ উইন্ডোটি খুলুন
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = লেআউট রিসেট করুন
|
||||
bbb.oldlocalewindow.reminder1 = আপনার BigBlueButton-এর একটি পুরনো ভাষা অনুবাদ থাকতে পারে।
|
||||
bbb.oldlocalewindow.reminder2 = দয়া করে আপনার ব্রাউজারের ক্যাশ পরিষ্কার করুন এবং পুনরায় চেষ্টা করুন।
|
||||
bbb.oldlocalewindow.windowTitle = বিপদসঙ্গেত: পুরনো ভাষা অনুবাদ
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.playSound = পরীক্ষাকরণ শব্দ চালান
|
||||
bbb.micSettings.hearFromHeadset = আপনি আপনার কম্পিউটারের স্পিকারের পরিবর্তে হেডসেটের মধ্যে অডিও শুনা উচিত
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.changeMic = মাইক্রোফোন পরিবর্তন করুন
|
||||
bbb.micSettings.join = অডিও যোগদান করুন
|
||||
bbb.micSettings.cancel = বাতিল
|
||||
bbb.mainToolbar.helpBtn = সাহায্য
|
||||
bbb.mainToolbar.logoutBtn = লগ আউট
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = হাত উত্তোলন করতে
|
||||
bbb.viewers.presentBtn.label = উপস্হাপক পরিবর্তন
|
||||
bbb.viewers.kickUserBtn.toolTip = ব্যবহারকারীকে বহিষ্কার করুন
|
||||
bbb.presentation.title = উপস্হাপন
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = উপস্হাপনের জন্য একটি ডকুমেন্ট আপলোড করুন।
|
||||
bbb.presentation.uploadPresBtn.toolTip = উপস্হাপনের জন্য একটি ডকুমেন্ট আপলোড করুন।
|
||||
bbb.presentation.backBtn.toolTip = পূর্ববর্তী স্লাইড।
|
||||
@ -88,12 +90,12 @@ bbb.chat.privateChatSelect = ব্যক্তিগতভাবে চ্য
|
||||
bbb.chat.chatOptions = চ্যাট অপশনস
|
||||
bbb.chat.fontSize = ফন্ট আকৃতি
|
||||
bbb.listeners.title = শ্রোতা{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.muteAllBtn.toolTip = সবাইকে নীরব করুন।
|
||||
bbb.listeners.unmuteAllBtn.toolTip = সবাইকে সরব করুন।
|
||||
bbb.listeners.pushToTalk.toolTip = সরব করার জন্য ক্লিক করুন
|
||||
bbb.listeners.pushToMute.toolTip = আপনাকে নীরব করার জন্য ক্লিক করুন
|
||||
bbb.listeners.talk = সরব
|
||||
bbb.listeners.mute = নীরব
|
||||
bbb.listeners.muteAllBtn.toolTip = সবাইকে নীরব করুন
|
||||
bbb.listeners.unmuteAllBtn.toolTip = সবাইকে সরব করুন
|
||||
bbb.listeners.ejectTooltip = ব্যবহারকারীকে বহিষ্কার করুন
|
||||
bbb.listenerItem.nameLbl.toolTip = এই ব্যাবহারকারীকে নির্বাচন করুন এবং সরব বা নীরব করার জন্য ক্লিক করুন।
|
||||
bbb.listenerItem.talkImg.toolTip = কথা বলছে
|
||||
@ -104,16 +106,16 @@ bbb.publishVideo.startPublishBtn.toolTip = শেয়ার করা শুর
|
||||
bbb.video.publish.close.tooltip = ভিডিও শেয়ার করা বন্ধ করুন
|
||||
bbb.video.publish.close.label = বন্ধ করুন
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.fitVideoBtn.tooltip = ভিডিও ফিট করুন
|
||||
bbb.video.originalSizeBtn.tooltip = আসল আকার
|
||||
bbb.video.publish.hint.noCamera = কোন ক্যামেরা পাওয়া যায় নাই
|
||||
bbb.video.publish.hint.cantOpenCamera = আপনার ক্যামেরা ওপেন করা যাচ্ছে না
|
||||
bbb.video.publish.hint.waitingApproval = অনুমোদনের জন্য অপেক্ষা করা হচ্ছে
|
||||
bbb.video.publish.hint.videoPreview = ভিডিও প্রাকদর্শন
|
||||
bbb.video.publish.hint.openingCamera = ক্যামেরা ওপেন করা হচ্ছে
|
||||
bbb.video.publish.hint.cameraDenied = ক্যামেরা এক্সেস ডিনাইড
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = আপনার ক্যামেরা অন্য অ্যাপ্লিকেশনের দ্বারা ব্যবহৃত হচ্ছে
|
||||
bbb.video.publish.hint.publishing = প্রকাশ করা হচ্ছে...
|
||||
bbb.desktopPublish.title = ডেস্কটপ শেয়ারিং: উপস্হাপকের প্রাকদর্শন
|
||||
bbb.desktopPublish.fullscreen.tooltip = আপনার পুরো স্ক্রীন শেয়ার করুন
|
||||
bbb.desktopPublish.fullscreen.label = পূর্ণ স্ক্রীন
|
||||
@ -146,7 +148,7 @@ bbb.logout.connectionfailed = সার্ভারে সংযোগ করা
|
||||
bbb.logout.rejected = সার্ভারের সঙ্গে সংযোগ বাতিল করা হয়েছে
|
||||
bbb.logout.invalidapp = Red5 অ্যাপ্লিকেশনের অস্তিত্ব নেই
|
||||
bbb.logout.unknown = আপনার গ্রাহক সার্ভারের সঙ্গে সংযোগ হারিয়েছে
|
||||
bbb.logout.usercommand = আপনি বৈঠক থেকে লগ আউট করেছেন
|
||||
bbb.logout.usercommand = আপনি কনফারেন্স থেকে লগ আউট করেছেন
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.start = আমার ডেস্কটপ শেয়ার পরীক্ষা করুন
|
||||
bbb.settings.voice.volume = মাইক্রোফোন সক্রিয়তা
|
||||
@ -164,5 +166,6 @@ bbb.settings.warning.label = সতর্কবাণী
|
||||
bbb.settings.warning.close = এই সতর্কবাণী বন্ধ করুন
|
||||
bbb.settings.noissues = কোন অনিষ্পন্ন বিষয় সনাক্ত হয়নি
|
||||
bbb.settings.instructions = ক্যামেরার অনুমতির জন্য ফ্ল্যাশ প্রম্পটে ক্লিক করুন। যদি আপনি নিজেকে দেখতে পারেন এবং নিজে শুনেন, তাহলে আপনার ব্রাউজার সঠিকভাবে সেটাপ করা হয়েছে। অন্যান্য সম্ভাব্য বিষয় নিচে দেখাওয়া হয়েছে। একটি সম্ভাব্য সমাধান খুঁজে পেতে প্রতিটিতে ক্লিক করুন।
|
||||
bbb.videodock.title =
|
||||
bbb.videodock.title = ভিডিও ডক্
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Připojuji se k serveru
|
||||
bbb.mainshell.statusProgress.loading = Nahrávám {0} modulů
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Omlouváme se, k serveru se nelze připojit.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - Více informací na jdete na stránkách http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - Více informací na jdete na stránkách http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Otevřít okno logu
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Původní nastavení vzhledu
|
||||
bbb.oldlocalewindow.reminder1 = Máte starý jazykový překlad BigBlueButtonu.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klikněte pro zvednutí ruky.
|
||||
bbb.viewers.presentBtn.label = Přepnout prezentujícího
|
||||
bbb.viewers.kickUserBtn.toolTip = Kliknutím odpojíte uživatele.
|
||||
bbb.presentation.title = Prezentace
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Nahrát dokument pro prezentaci.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Nahrát dokument pro prezentaci.
|
||||
bbb.presentation.backBtn.toolTip = Předchozí snímek.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Tilslutter til serveren
|
||||
bbb.mainshell.statusProgress.loading = Henter {0} moduler
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Vi kan desværre ikke oprette forbindelse til serveren.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - For flere informationer, gå til http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - For flere informationer, gå til http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Åbn log-vinduet
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Nulstil layout
|
||||
bbb.oldlocalewindow.reminder1 = Du har måske en gammel oversættelser af BigBlueButton.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klik for at hæve hånden.
|
||||
bbb.viewers.presentBtn.label = Skift præsentator
|
||||
bbb.viewers.kickUserBtn.toolTip = Spark bruger ud
|
||||
bbb.presentation.title = Præsentation
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Upload et dokument til præsentation.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Upload et dokument til præsentation.
|
||||
bbb.presentation.backBtn.toolTip = Forrige slide.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Ingen alvorlige fejl blev fundet.
|
||||
bbb.settings.instructions = Accepter Flash-prompten der spørger om kameratilladelser. Hvis du kan se og høre dig selv, er din browser opsat korrekt. Andre potentielle problemer er vist forneden. Klik på hver enkelt for at finde en løsning.
|
||||
bbb.videodock.title = Video-dok
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Baue Verbindung zum Server auf
|
||||
bbb.mainshell.statusProgress.loading = Lade {0} Module
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Verbindung zum Server konnte nicht hergestellt werden.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton Version {0} - Weitere Informationen unter http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton Version {0} - Weitere Informationen unter http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Protokoll Fenster öffnen
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Anordnung wiederherstellen
|
||||
bbb.oldlocalewindow.reminder1 = Die installierte Sprachversion ist möglicherweise veraltet.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klicken um die Hand zu heben.
|
||||
bbb.viewers.presentBtn.label = Presentator wechseln
|
||||
bbb.viewers.kickUserBtn.toolTip = Benutzer ausschließen
|
||||
bbb.presentation.title = Präsentation
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Ein Dokument zur Präsentation hinzufügen.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Ein Dokument zur Präsentation hinzufügen.
|
||||
bbb.presentation.backBtn.toolTip = Vorherige Folie
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Keine ausstehenden Verbesserungen wurden entdeckt.
|
||||
bbb.settings.instructions = Akzeptieren Sie die Flash-Abfrage welche nach dem Kamerazugriff fragt. Wenn Sie sich selber sehen und hören können, dann wurde ihr Browser richtig konfiguriert. Andere mögliche Ursachen sind unten angezeigt. Klicken Sie auf jede dieser Ursachen um eine mögliche Lösung zu finden.
|
||||
bbb.videodock.title = Video Sammelfenster
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,49 +1,51 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.statusProgress.connecting = Σύνδεση στον εξυπηρετητή(server)
|
||||
bbb.mainshell.statusProgress.loading = Φορτώνει {0} modules
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Λυπούμαστε, αλλά δεν μπορούμε να συνδεθούμε στον εξυπηρετητή(server).
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - Γιά περισσότερες πληροφορίες συνδεθείτε εδώ: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Σύνδεση στον διακομιστή
|
||||
bbb.mainshell.statusProgress.loading = Φόρτωση {0} αρθρωμάτων
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Λυπούμαστε, αλλά δεν μπορούμε να συνδεθούμε στο διακομιστή
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - Γιά περισσότερες πληροφορίες συνδεθείτε εδώ: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Άνοιξε Παράθυρο Σύνδεσης
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Επαναφορά Διαμόρφωσης
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Επαναφορά διάταξης
|
||||
bbb.oldlocalewindow.reminder1 = Μπορεί να έχετε παλαιότερη μετάφραση του BigBlueButton.
|
||||
bbb.oldlocalewindow.reminder2 = Παρακαλούμε εκκαθαρίστε το πρόσφατο ιστορικό του περιηγητή σας και ξαναπροσπαθήστε.
|
||||
bbb.oldlocalewindow.windowTitle = Προσοχή: Παλαιά Μετάφραση
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.playSound = Αναπαραγωγή δοκιμαστικού ήχου
|
||||
bbb.micSettings.hearFromHeadset = Θα πρέπει να ακούσετε ήχο στα ακουστικά και όχι στα ηχεία του υπολογιστή σας.
|
||||
bbb.micSettings.speakIntoMic = Θα πρέπει να δείτε τη μπάρα να μετακινείται καθώς μιλάτε στο μικρόφωνό σας.
|
||||
bbb.micSettings.changeMic = Αλλαγή μικροφώνου
|
||||
bbb.micSettings.join = Συμμετοχή με ήχο
|
||||
bbb.micSettings.cancel = Ακύρωση
|
||||
bbb.mainToolbar.helpBtn = Βοήθεια
|
||||
bbb.mainToolbar.logoutBtn = Αποσύνδεση
|
||||
bbb.mainToolbar.logoutBtn.toolTip = Αποσύνδεση
|
||||
bbb.mainToolbar.settingsBtn =
|
||||
bbb.mainToolbar.settingsBtn.toolTip =
|
||||
bbb.viewers.title = Users{0} {1}
|
||||
bbb.mainToolbar.settingsBtn = Ρυθμίσεις
|
||||
bbb.mainToolbar.settingsBtn.toolTip = Άνοιγμα ρυθμισεων
|
||||
bbb.viewers.title = Users {0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = Όνομα
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Είστε συνδεδεμένος σαν αυτός ο χρήστης.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Ρόλος
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Κατάσταση
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Χέρι Σηκωμένο στον/στην {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Χέρι σηκωμένο στον/στην {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Πατήστε για προβολή.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Εισηγητής
|
||||
bbb.viewers.presentBtn.toolTip = Επιλέξτε κάποιον απο τους συμμετέχοντες για εισηγητή.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Πατήστε για να σηκώσετε το χέρι.
|
||||
bbb.viewers.presentBtn.label = Αλλάξτε Εισηγητή
|
||||
bbb.viewers.kickUserBtn.toolTip = Πατήστε για να διώξετε το χρήστη.
|
||||
bbb.viewers.presentBtn.label = Αλλαγή εισηγητή
|
||||
bbb.viewers.kickUserBtn.toolTip = Αποπομπή χρήστη
|
||||
bbb.presentation.title = Παρουσίαση
|
||||
bbb.presentation.uploadPresBtn = Μεταφορτώστε ένα έγγραφο για παρουσίαση.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Μεταφορτώστε ένα έγγραφο για παρουσίαση.
|
||||
bbb.presentation.backBtn.toolTip = Προηγούμενη διαφάνεια.
|
||||
bbb.presentation.slideNumLbl.toolTip =
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Μεταφορτώστε ένα έγγραφο για παρουσίαση
|
||||
bbb.presentation.uploadPresBtn.toolTip = Μεταφορτώστε ένα έγγραφο για παρουσίαση
|
||||
bbb.presentation.backBtn.toolTip = Προηγούμενη διαφάνεια
|
||||
bbb.presentation.slideNumLbl.toolTip = Επιλογή διαφάνειας
|
||||
bbb.presentation.forwardBtn.toolTip = Επόμενη διαφάνεια
|
||||
bbb.presentation.resetZoomBtn.toolTip = Επαναφορά Αρχικής Μεγένθυνσης
|
||||
bbb.presentation.resetZoomBtn.toolTip = Επαναφορά αρχικής μεγέθυνσης
|
||||
bbb.presentation.presenterNameLbl = {0} παρουσιάζει αυτή τη στιγμή.
|
||||
bbb.presentation.clickToUpload = Μεταφορτώστε μιά παρουσίαση.
|
||||
bbb.presentation.maxUploadFileExceededAlert = Σφάλμα: Το μέγεθος του φακέλλου είναι μεγαλύτερο απο το επιτρεπτό.
|
||||
bbb.presentation.clickToUpload = Μεταφορτώστε μια παρουσίαση
|
||||
bbb.presentation.maxUploadFileExceededAlert = Σφάλμα: Το μέγεθος του φακέλου είναι μεγαλύτερο από το επιτρεπτό
|
||||
bbb.presentation.uploadcomplete = Η μεταφόρτωση ολοκληρώθηκε. Παρακαλούμε περιμένετε όσο μετατρέπουμε αυτό το έγγραφο.
|
||||
bbb.presentation.uploaded = μεταφορτώθηκε.
|
||||
bbb.presentation.uploaded = μεταφορτώθηκε
|
||||
bbb.presentation.document.supported = Το μεταφορτωμένο έγγραφο υποστηρίζεται. Ξεκινάει η διαδικασία μετατροπής...
|
||||
bbb.presentation.document.converted = Το έγγραφο του office μετατράπηκε επιτυχώς.
|
||||
bbb.presentation.error.document.convert.failed = Σφάλμα: Αποτυχία μετατροπής του εγγράφου office.
|
||||
@ -62,107 +64,108 @@ bbb.presentation.uploadwindow.word = WORD
|
||||
bbb.presentation.uploadwindow.excel = EXCEL
|
||||
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
|
||||
bbb.presentation.uploadwindow.image = IMAGE
|
||||
bbb.presentation.uploadwindow.closeLabel =
|
||||
bbb.fileupload.title = Μεταφόρτωση Παρουσίασης
|
||||
bbb.presentation.uploadwindow.closeLabel = Κάντε κλικ για να κλείσετε το παράθυρο
|
||||
bbb.fileupload.title = Μεταφόρτωση παρουσίασης
|
||||
bbb.fileupload.fileLbl = Αρχείο:
|
||||
bbb.fileupload.selectBtn.toolTip = Αναζήτηση αρχείου
|
||||
bbb.fileupload.uploadBtn = Μεταφόρτωση
|
||||
bbb.fileupload.uploadBtn.toolTip = Μεταφόρτωση αρχείου
|
||||
bbb.fileupload.presentationNamesLbl = Μεταφορτωμένες Παρουσιάσεις
|
||||
bbb.fileupload.deleteBtn.toolTip = Διαγραφή της Παρουσίασης
|
||||
bbb.fileupload.showBtn = Δείξε
|
||||
bbb.fileupload.showBtn.toolTip = Δείξε την Παρουσίαση
|
||||
bbb.fileupload.presentationNamesLbl = Μεταφορτωμένες παρουσιάσεις:
|
||||
bbb.fileupload.deleteBtn.toolTip = Διαγραφή παρουσίασης
|
||||
bbb.fileupload.showBtn = Προβολή
|
||||
bbb.fileupload.showBtn.toolTip = Προβολή παρουσίασης
|
||||
bbb.fileupload.okCancelBtn = Ακύρωση
|
||||
bbb.fileupload.genThumbText = Δημιουργία μικρογραφιών..
|
||||
bbb.fileupload.genThumbText = Δημιουργία μικρογραφιών...
|
||||
bbb.fileupload.progBarLbl = Πρόοδος:
|
||||
bbb.chat.title = Συζήτηση
|
||||
bbb.chat.cmpColorPicker.toolTip = Χρώμα Κειμένου
|
||||
bbb.chat.sendBtn = Στείλε
|
||||
bbb.chat.sendBtn.toolTip = Στείλε Μύνημα
|
||||
bbb.chat.publicChatUsername = Όλοι
|
||||
bbb.chat.publicMsgAwaiting = Δημόσιο μύνημα αναμένει
|
||||
bbb.chat.publicMsgAwaiting2 = * Δημόσιο μύνημα αναμένει *
|
||||
bbb.chat.privateMsgAwaiting = Ιδιωτικό μύνημα αναμένει
|
||||
bbb.chat.privateMsgAwaiting2 = * Ιδιωτικό μύνημα αναμένει *
|
||||
bbb.chat.privateChatSelect = Επιλέξτε ένα πρόσωπο για ιδιωτική συζήτηση
|
||||
bbb.chat.chatOptions = Επιλογές Συζήτησης
|
||||
bbb.chat.fontSize = Μέγεθος Χαρακτήρων
|
||||
bbb.listeners.title = Ακροατές{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.chat.cmpColorPicker.toolTip = Χρώμα κειμένου
|
||||
bbb.chat.sendBtn = Αποστολή
|
||||
bbb.chat.sendBtn.toolTip = Αποστολή μηνύματος
|
||||
bbb.chat.publicChatUsername = Όλα
|
||||
bbb.chat.publicMsgAwaiting = Αναμονή δημόσιου μηνύματος
|
||||
bbb.chat.publicMsgAwaiting2 = * Αναμονή δημόσιου μηνύματος *
|
||||
bbb.chat.privateMsgAwaiting = Αναμονή ιδιωτικού μηνύματος
|
||||
bbb.chat.privateMsgAwaiting2 = * Αναμονή ιδιωτικού μηνύματος *
|
||||
bbb.chat.privateChatSelect = Επιλέξτε ένα πρόσωπο για ιδιωτική συνομιλία
|
||||
bbb.chat.chatOptions = Επιλογές συνομιλίας
|
||||
bbb.chat.fontSize = Μέγεθος γραμματοσειράς
|
||||
bbb.listeners.title = Ακροατές {0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip = Κάντε κλικ για να συνομιλίσετε
|
||||
bbb.listeners.pushToMute.toolTip = Σίγαση του εαυτού μου
|
||||
bbb.listeners.talk = Συνομιλία
|
||||
bbb.listeners.mute = Σίγαση
|
||||
bbb.listeners.muteAllBtn.toolTip = Σίγαση όλων
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Κατάργηση της σίγασης σε όλους
|
||||
bbb.listeners.ejectTooltip = Πατήστε για να διώξετε το χρήστη.
|
||||
bbb.listenerItem.nameLbl.toolTip = Επιλέξτε αυτόν τον χρήστη και πατήστε το κουμπι για σίγαση ή κατάργηση σίγασης.
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Κατάργηση σίγασης όλων
|
||||
bbb.listeners.ejectTooltip = Αποπομπή χρήστη
|
||||
bbb.listenerItem.nameLbl.toolTip = Επιλέξτε αυτόν τον χρήστη και πατήστε το κουμπί για σίγαση ή κατάργηση σίγασης
|
||||
bbb.listenerItem.talkImg.toolTip = Ομιλεί
|
||||
bbb.listenerItem.lockImg.toolTip = Πατήστε για την διατήρηση της σίγασης ή της κατάργησης σίγασης
|
||||
bbb.listenerItem.muteUnmute.toolTip = Σίγαση ή κατάργηση σίγασης του συγκεκριμένου ακροατή
|
||||
bbb.publishVideo.title = Εκπομπή της κάμερας
|
||||
bbb.publishVideo.startPublishBtn.toolTip = ξεκινήστε εκπομπή
|
||||
bbb.video.publish.close.tooltip =
|
||||
bbb.video.publish.close.label =
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.desktopPublish.title = Διαμοιρασμός Επιφάνειας Εργασίας: Προεπισκόπηση του Εισηγητή
|
||||
bbb.desktopPublish.fullscreen.tooltip =
|
||||
bbb.desktopPublish.fullscreen.label =
|
||||
bbb.desktopPublish.region.tooltip =
|
||||
bbb.desktopPublish.region.label =
|
||||
bbb.desktopPublish.stop.tooltip =
|
||||
bbb.desktopPublish.stop.label =
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip =
|
||||
bbb.desktopPublish.closeBtn.toolTip =
|
||||
bbb.desktopPublish.minimizeBtn.toolTip =
|
||||
bbb.desktopView.title = Διαμοιρασμός Επιφάνειας Εργασίας
|
||||
bbb.desktopView.fitToWindow = Προσαρμογή στο Παράθυρο
|
||||
bbb.publishVideo.title = Διαμοιρασμός της κάμερας
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Εκκίνηση διαμοιρασμού
|
||||
bbb.video.publish.close.tooltip = Διακοπή διαμοιρασμού βίντεο
|
||||
bbb.video.publish.close.label = Κλείσιμο
|
||||
bbb.video.keepAspectBtn.tooltip = Διατήρηση διαστάσεων παραθύρου
|
||||
bbb.video.fitVideoBtn.tooltip = Προσαρμογή μεγέθους βίντεο
|
||||
bbb.video.originalSizeBtn.tooltip = Αρχικό μέγεθος
|
||||
bbb.video.publish.hint.noCamera = Δεν υπάρχει διαθέσιμη κάμερα
|
||||
bbb.video.publish.hint.cantOpenCamera = Αδυναμία ανοίγματος της κάμεράς σας
|
||||
bbb.video.publish.hint.waitingApproval = Αναμονή για έγκριση
|
||||
bbb.video.publish.hint.videoPreview = Προεπισκόπηση βίντεο
|
||||
bbb.video.publish.hint.openingCamera = Άνοιγμα κάμερας...
|
||||
bbb.video.publish.hint.cameraDenied = Άρνηση πρόσβασης στην κάμερα
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Η κάμερά σας χρησιμοποιείται από άλλη εφαρμογή
|
||||
bbb.video.publish.hint.publishing = Δημοσίευση...
|
||||
bbb.desktopPublish.title = Διαμοιρασμός επιφάνειας εργασίας: προεπισκόπηση εισηγητή
|
||||
bbb.desktopPublish.fullscreen.tooltip = Διαμοιρασμός ολόκληρης της οθόνη σας.
|
||||
bbb.desktopPublish.fullscreen.label = Πλήρης οθόνη
|
||||
bbb.desktopPublish.region.tooltip = Διαμοιρασμός τμήματος της οθόνης σας
|
||||
bbb.desktopPublish.region.label = Περιοχή
|
||||
bbb.desktopPublish.stop.tooltip = Κλείσιμο διαμοιρασμού οθόνης
|
||||
bbb.desktopPublish.stop.label = Κλείσιμο
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip = Δεν μπορείτε να μεγιστοποιήσετε αυτό το παράθυρο
|
||||
bbb.desktopPublish.closeBtn.toolTip = Διακοπή διαμοιρασμού και κλείσιμο του παραθύρου
|
||||
bbb.desktopPublish.minimizeBtn.toolTip = Ελαχιστοποίηση αυτού του παραθύρου
|
||||
bbb.desktopView.title = Διαμοιρασμός επιφάνειας εργασίας
|
||||
bbb.desktopView.fitToWindow = Προσαρμογή στο παράθυρο
|
||||
bbb.desktopView.actualSize = Προβολή πραγματικού μεγέθους
|
||||
bbb.toolbar.phone.toolTip = Ξεκίνησε το μικρόφωνό μου
|
||||
bbb.toolbar.phone.toolTip = Διαμοιρασμός του μικροφώνου μου
|
||||
bbb.toolbar.deskshare.toolTip = Διαμοιρασμός της επιφάνειας εργασίας μου
|
||||
bbb.toolbar.video.toolTip = Ξεκίνησε την κάμερά μου
|
||||
bbb.highlighter.toolbar.pencil = Υπογραμμιστής
|
||||
bbb.toolbar.video.toolTip = Διαμοιρασμός της κάμεράς μου
|
||||
bbb.highlighter.toolbar.pencil = Επισήμανση
|
||||
bbb.highlighter.toolbar.ellipse = Κύκλος
|
||||
bbb.highlighter.toolbar.rectangle = Ορθογώνιο
|
||||
bbb.highlighter.toolbar.clear = Εκκαθάριση Σελίδας
|
||||
bbb.highlighter.toolbar.undo = Αναίρεση Σχήματος
|
||||
bbb.highlighter.toolbar.color = Επιλογή Χρώματος
|
||||
bbb.highlighter.toolbar.thickness = Αλλάγή Πάχους
|
||||
bbb.highlighter.button.toolTipShow = Δείξε τον Πίνακα
|
||||
bbb.highlighter.button.toolTipHide = Κρύψε τον Πίνακα
|
||||
bbb.logout.appshutdown =
|
||||
bbb.logout.asyncerror =
|
||||
bbb.logout.connectionclosed =
|
||||
bbb.logout.connectionfailed =
|
||||
bbb.logout.rejected =
|
||||
bbb.logout.invalidapp =
|
||||
bbb.logout.unknown =
|
||||
bbb.logout.usercommand =
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.start =
|
||||
bbb.settings.voice.volume =
|
||||
bbb.settings.voice.adjust =
|
||||
bbb.settings.java.label =
|
||||
bbb.settings.java.text =
|
||||
bbb.settings.java.command =
|
||||
bbb.settings.flash.label =
|
||||
bbb.settings.flash.text =
|
||||
bbb.settings.flash.command =
|
||||
bbb.settings.isight.label =
|
||||
bbb.settings.isight.text =
|
||||
bbb.settings.isight.command =
|
||||
bbb.settings.warning.label =
|
||||
bbb.settings.warning.close =
|
||||
bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.highlighter.toolbar.clear = Καθαρισμός σελίδας
|
||||
bbb.highlighter.toolbar.undo = Αναίρεση σχήματος
|
||||
bbb.highlighter.toolbar.color = Επιλογή χρώματος
|
||||
bbb.highlighter.toolbar.thickness = Αλλαγή πάχους
|
||||
bbb.highlighter.button.toolTipShow = Προβολή πίνακα
|
||||
bbb.highlighter.button.toolTipHide = Απόκρυψη πίνακα
|
||||
bbb.logout.appshutdown = Ο διακομιστής της εφαρμογής έχει κλείσει
|
||||
bbb.logout.asyncerror = Συνέβη ένα σφάλμα συγχρονισμού
|
||||
bbb.logout.connectionclosed = Η σύνδεση με τον διακομιστή έχει διακοπεί
|
||||
bbb.logout.connectionfailed = Η σύνδεση με τον διακομιστή έχει αποτύχει
|
||||
bbb.logout.rejected = Η σύνδεση με τον διακομιστή έχει απορριφθεί
|
||||
bbb.logout.invalidapp = Η εφαρμογή red5 δεν υπάρχει
|
||||
bbb.logout.unknown = Έχετε χάσει τη σύνδεσή σας με τον διακομιστή
|
||||
bbb.logout.usercommand = Έχετε αποσυνδεθεί από τη τηλεδιάσκεψη
|
||||
bbb.settings.deskshare.instructions = Κάντε κλικ στο "Επιτρέπεται" στο παράθυρο που ανοίγει, για να ελέγξετε αν ο διαμοιρασμός της επιφάνειας εργασίας σας λειτουργεί κανονικά
|
||||
bbb.settings.deskshare.start = Έλεγχος διαμοιρασμού επιφάνειας εργασίας
|
||||
bbb.settings.voice.volume = Δραστηριότητα μικροφώνου
|
||||
bbb.settings.voice.adjust = Ρύθμιση έντασης
|
||||
bbb.settings.java.label = Σφάλμα έκδοσης Java
|
||||
bbb.settings.java.text = Έχετε εγκατεστημένη την έκδοση {0}, αλλά χρειάζεστε τουλάχιστον την έκδοση {1} για να χρησιμοποιήσετε τη λειτουργία διαμοιρασμού της επιφάνειας εργασίας του BigBlueButton. Κάντε κλικ στο πλήκτρο παρακάτω για να εγκαταστήσετε τη νεότερη έκδοση της Java.
|
||||
bbb.settings.java.command = Εγκατάσταση νεότερης έκδοσης της Java
|
||||
bbb.settings.flash.label = Σφάλμα έκδοσης Flash
|
||||
bbb.settings.flash.text = Έχετε εγκατεστημένη την έκδοση {0} του Flash, αλλά χρειάζεστε τουλάχιστον την έκδοση {1} για να λειτουργεί το BigBlueButton απρόσκοπτα. Κάντε κλικ στο πλήκτρο παρακάτω για να εγκαταστήσετε τη νεότερη έκδοση του προγράμματος Adobe Flash.
|
||||
bbb.settings.flash.command = Εγκατάσταση νεότερης έκδοσης Flash
|
||||
bbb.settings.isight.label = Σφάλμα κάμερας iSight
|
||||
bbb.settings.isight.text = Εάν αντιμετωπίζετε προβλήματα με την iSight κάμερά σας, ενδεχομένως αυτό να οφείλεται στο ότι χρησιμοποιείτε OS X 10.6.5., κάτι που είναι γνωστό ότι δημιουργεί προβλήματα στο Flash και δεν είναι δυνατή η σύλληψη εικόνας από την iSight κάμερα. Για να το διορθώσετε, κάντε κλικ στον παρακάτω σύνδεσμο για να εγκαταστήσετε μια νεότερη έκδοση του Flash, ή αναβαθμίστε το λογισμικό Mac σε νεότερη έκδοση.
|
||||
bbb.settings.isight.command = Εγκατάσταση Flash 10.2 RC2
|
||||
bbb.settings.warning.label = Προειδοποίηση
|
||||
bbb.settings.warning.close = Κλείσιμο της προειδοποίησης
|
||||
bbb.settings.noissues = Δεν εντοπίστηκαν εκκρεμή ζητήματα
|
||||
bbb.settings.instructions = Αποδεχτείτε το αίτημα του Flash που ζητά δικαιώματα πρόσβασης στην κάμερά σας. Εάν βλέπετε και ακούτε τον εαυτό σας σωστά, ο περιηγητής σας έχει ρυθμιστεί σωστά. Άλλα σημαντικά ζητήματα εμφανίζονται παρακάτω. Κάντε κλικ σε καθένα από αυτά για να βρείτε πιθανές λύσεις.
|
||||
bbb.videodock.title = Αγκύρωση κάμερας
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
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.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
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.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Click to raise hand.
|
||||
bbb.viewers.presentBtn.label = Switch Presenter
|
||||
bbb.viewers.kickUserBtn.toolTip = Kick User
|
||||
bbb.presentation.title = Presentation
|
||||
bbb.presentation.fitToWidth.toolTip = Fit to width
|
||||
bbb.presentation.fitToPage.toolTip = Fit to page
|
||||
bbb.presentation.uploadPresBtn = Upload a document for presentation.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Upload a document for presentation.
|
||||
bbb.presentation.backBtn.toolTip = Previous slide.
|
||||
@ -90,10 +92,10 @@ bbb.chat.fontSize = Font Size
|
||||
bbb.listeners.title = Listeners{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip = Click to talk
|
||||
bbb.listeners.pushToMute.toolTip = Click to mute yourself
|
||||
bbb.listeners.talk=Talk
|
||||
bbb.listeners.mute=Mute
|
||||
bbb.listeners.muteAllBtn.toolTip = Mute all
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Unmute all
|
||||
bbb.listeners.talk = Unmute
|
||||
bbb.listeners.mute = Mute
|
||||
bbb.listeners.muteAllBtn.toolTip = Mute All
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Unmute All
|
||||
bbb.listeners.ejectTooltip = Kick User
|
||||
bbb.listenerItem.nameLbl.toolTip = Select this user and click button to mute or unmute.
|
||||
bbb.listenerItem.talkImg.toolTip = Talking
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Conectando con el servidor
|
||||
bbb.mainshell.statusProgress.loading = Cargando {0} módulos
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Lo sentimos, no pudimos conectar con el servidor.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton versión {0} - Para más información diríjase a: http://www.bigbluebutton.org/
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton versión {0} - Para más información diríjase a: http://www.bigbluebutton.org/
|
||||
bbb.mainshell.logBtn.toolTip = Abrir ventana de histórico
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Reiniciar posición de ventanas
|
||||
bbb.oldlocalewindow.reminder1 = Puede que tenga una traducción obsoleta de BigBlueButton.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Pulse para levantar la mano.
|
||||
bbb.viewers.presentBtn.label = Cambiar Presentador
|
||||
bbb.viewers.kickUserBtn.toolTip = Expulsar usuario
|
||||
bbb.presentation.title = Presentación
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Cargar documento para presentar.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Cargar documento para presentar.
|
||||
bbb.presentation.backBtn.toolTip = Diapositiva anterior.
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = Seleccione una persona para charlar en privado
|
||||
bbb.chat.chatOptions = Opciones de charla
|
||||
bbb.chat.fontSize = Tamaño del texto
|
||||
bbb.listeners.title = Hablando {0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = Clic para hablar
|
||||
bbb.listeners.pushToMute.toolTip = Clic para silenciarse
|
||||
bbb.listeners.talk = Hablar
|
||||
bbb.listeners.mute = Silenciar
|
||||
bbb.listeners.muteAllBtn.toolTip = Silenciar a todos
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Permitir audio a todos
|
||||
bbb.listeners.ejectTooltip = Expulsar usuario
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Cerrar
|
||||
bbb.video.keepAspectBtn.tooltip = Mantener aspecto de ventana
|
||||
bbb.video.fitVideoBtn.tooltip = Ajustar video
|
||||
bbb.video.originalSizeBtn.tooltip = Tamaño original
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Cámara no disponible
|
||||
bbb.video.publish.hint.cantOpenCamera = No se puede abrir su cámara
|
||||
bbb.video.publish.hint.waitingApproval = Esperando por aprobación
|
||||
bbb.video.publish.hint.videoPreview = Vista previa vídeo
|
||||
bbb.video.publish.hint.openingCamera = Abriendo cámara...
|
||||
bbb.video.publish.hint.cameraDenied = Acceso denegado a cámara
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Su cámara esta siendo usada por otra aplicación
|
||||
bbb.video.publish.hint.publishing = Publicando...
|
||||
bbb.desktopPublish.title = Compartir Pantalla: Previsualición del Presentador
|
||||
bbb.desktopPublish.fullscreen.tooltip = Compartir su Pantalla
|
||||
bbb.desktopPublish.fullscreen.label = Pantalla completa
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = No se ha encontrado ningún problema grave.
|
||||
bbb.settings.instructions = Acepte la solicitud de Flash que le pide permisos para utilizar su cámara. Si puede verse y escucharse, su navegador está configurado correctamente. A continuación, se listan problemas potenciales. Pulse en cada uno de ellos para sus posibles soluciones.
|
||||
bbb.videodock.title = Area de video
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Conectando al servidor
|
||||
bbb.mainshell.statusProgress.loading = Cargando {0} módulos
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Lo sentimos, no se puede conectar al servidor.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton versión {0} - Para mas información vea http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton versión {0} - Para mas información vea http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Abrir la ventana de Registro (Log)
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Restaurar el diseño
|
||||
bbb.oldlocalewindow.reminder1 = Usted tiene una traducción antigua de lenguaje para Bigbluebutton
|
||||
@ -24,7 +24,7 @@ bbb.viewers.title = Usuarios{0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = Nombre
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Usted ingresó como este usuario.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Rol
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Estaus
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Estado
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Pidiendo la palabra {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Click para ver
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Expositor
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Click para pedir la palabra.
|
||||
bbb.viewers.presentBtn.label = Cambiar Expositor
|
||||
bbb.viewers.kickUserBtn.toolTip = Expulsar Usuario
|
||||
bbb.presentation.title = Presentación
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Subir un documento para su presentación.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Subir un documento para su presentación.
|
||||
bbb.presentation.backBtn.toolTip = Diapositiva anterior.
|
||||
@ -88,16 +90,16 @@ bbb.chat.privateChatSelect = Seleccionar a una persona para iniciar un chat priv
|
||||
bbb.chat.chatOptions = Opciones de chat
|
||||
bbb.chat.fontSize = Tamaño de la letra
|
||||
bbb.listeners.title = Participantes{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = Click para hablar
|
||||
bbb.listeners.pushToMute.toolTip = Click para silenciarse.
|
||||
bbb.listeners.talk = Hablar
|
||||
bbb.listeners.mute = Silencio
|
||||
bbb.listeners.muteAllBtn.toolTip = Desactivar voz a todos
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Activar voz a todos
|
||||
bbb.listeners.ejectTooltip = Expulsar Usuario
|
||||
bbb.listenerItem.nameLbl.toolTip = Seleccione este usuario y haga clic en los botones de activar/desactivar voz.
|
||||
bbb.listenerItem.talkImg.toolTip = Hablando
|
||||
bbb.listenerItem.lockImg.toolTip = Click para mantener en silencio o a la escucha
|
||||
bbb.listenerItem.lockImg.toolTip = Click para mantener en silencio o hablar
|
||||
bbb.listenerItem.muteUnmute.toolTip = Silenciar o escuchar a este participante
|
||||
bbb.publishVideo.title = Compartir mi WebCam
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Iniciar Compartir
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Cerrar
|
||||
bbb.video.keepAspectBtn.tooltip = Mantener aspecto de ventana
|
||||
bbb.video.fitVideoBtn.tooltip = Ajustar video
|
||||
bbb.video.originalSizeBtn.tooltip = Tamaño original
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Camara no disponible
|
||||
bbb.video.publish.hint.cantOpenCamera = No se puede abrir la camara
|
||||
bbb.video.publish.hint.waitingApproval = Pendiente por aprovación
|
||||
bbb.video.publish.hint.videoPreview = Vista previa video
|
||||
bbb.video.publish.hint.openingCamera = Abriendo Camara...
|
||||
bbb.video.publish.hint.cameraDenied = Acceso denegado a camara
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = La cámara esta siendo utilizada por otra aplicación.
|
||||
bbb.video.publish.hint.publishing = Publicando...
|
||||
bbb.desktopPublish.title = Escritorio compartido: Vista preliminar del expositor
|
||||
bbb.desktopPublish.fullscreen.tooltip = Compartir toda su pantalla
|
||||
bbb.desktopPublish.fullscreen.label = Pantalla Completa
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Ninguna edicion excepcional se ha detectado
|
||||
bbb.settings.instructions = Acepte el mensaje de Flash que le pide permisos de cámara. Si usted puede verse y oírse, su navegador se ha configurado correctamente. Otros problemas potenciales se muestran a continuación. Haga clic en cada uno para encontrar una posible solución.
|
||||
bbb.videodock.title = Area de video
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
171
bigbluebutton-client/locale/et_EE/bbbResources.properties
Normal file
171
bigbluebutton-client/locale/et_EE/bbbResources.properties
Normal file
@ -0,0 +1,171 @@
|
||||
bbb.pageTitle =
|
||||
bbb.mainshell.locale.version =
|
||||
bbb.mainshell.statusProgress.connecting =
|
||||
bbb.mainshell.statusProgress.loading =
|
||||
bbb.mainshell.statusProgress.cannotConnectServer =
|
||||
bbb.mainshell.copyrightLabel2 =
|
||||
bbb.mainshell.logBtn.toolTip =
|
||||
bbb.mainshell.resetLayoutBtn.toolTip =
|
||||
bbb.oldlocalewindow.reminder1 =
|
||||
bbb.oldlocalewindow.reminder2 =
|
||||
bbb.oldlocalewindow.windowTitle =
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.cancel =
|
||||
bbb.mainToolbar.helpBtn =
|
||||
bbb.mainToolbar.logoutBtn =
|
||||
bbb.mainToolbar.logoutBtn.toolTip =
|
||||
bbb.mainToolbar.settingsBtn =
|
||||
bbb.mainToolbar.settingsBtn.toolTip =
|
||||
bbb.viewers.title =
|
||||
bbb.viewers.viewersGrid.nameItemRenderer =
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip =
|
||||
bbb.viewers.viewersGrid.roleItemRenderer =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip =
|
||||
bbb.viewers.presentBtn.toolTip =
|
||||
bbb.viewers.raiseHandBtn.toolTip =
|
||||
bbb.viewers.presentBtn.label =
|
||||
bbb.viewers.kickUserBtn.toolTip =
|
||||
bbb.presentation.title =
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn =
|
||||
bbb.presentation.uploadPresBtn.toolTip =
|
||||
bbb.presentation.backBtn.toolTip =
|
||||
bbb.presentation.slideNumLbl.toolTip =
|
||||
bbb.presentation.forwardBtn.toolTip =
|
||||
bbb.presentation.resetZoomBtn.toolTip =
|
||||
bbb.presentation.presenterNameLbl =
|
||||
bbb.presentation.clickToUpload =
|
||||
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 =
|
||||
bbb.presentation.error.security =
|
||||
bbb.presentation.error.convert.format =
|
||||
bbb.presentation.error.convert.notsupported =
|
||||
bbb.presentation.error.convert.nbpage =
|
||||
bbb.presentation.error.convert.maxnbpagereach =
|
||||
bbb.presentation.error.convert.swf =
|
||||
bbb.presentation.converted =
|
||||
bbb.presentation.ok =
|
||||
bbb.presentation.uploadwindow.presentationfile =
|
||||
bbb.presentation.uploadwindow.pdf =
|
||||
bbb.presentation.uploadwindow.word =
|
||||
bbb.presentation.uploadwindow.excel =
|
||||
bbb.presentation.uploadwindow.powerpoint =
|
||||
bbb.presentation.uploadwindow.image =
|
||||
bbb.presentation.uploadwindow.closeLabel =
|
||||
bbb.fileupload.title =
|
||||
bbb.fileupload.fileLbl =
|
||||
bbb.fileupload.selectBtn.toolTip =
|
||||
bbb.fileupload.uploadBtn =
|
||||
bbb.fileupload.uploadBtn.toolTip =
|
||||
bbb.fileupload.presentationNamesLbl =
|
||||
bbb.fileupload.deleteBtn.toolTip =
|
||||
bbb.fileupload.showBtn =
|
||||
bbb.fileupload.showBtn.toolTip =
|
||||
bbb.fileupload.okCancelBtn =
|
||||
bbb.fileupload.genThumbText =
|
||||
bbb.fileupload.progBarLbl =
|
||||
bbb.chat.title =
|
||||
bbb.chat.cmpColorPicker.toolTip =
|
||||
bbb.chat.sendBtn =
|
||||
bbb.chat.sendBtn.toolTip =
|
||||
bbb.chat.publicChatUsername =
|
||||
bbb.chat.publicMsgAwaiting =
|
||||
bbb.chat.publicMsgAwaiting2 =
|
||||
bbb.chat.privateMsgAwaiting =
|
||||
bbb.chat.privateMsgAwaiting2 =
|
||||
bbb.chat.privateChatSelect =
|
||||
bbb.chat.chatOptions =
|
||||
bbb.chat.fontSize =
|
||||
bbb.listeners.title =
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.muteAllBtn.toolTip =
|
||||
bbb.listeners.unmuteAllBtn.toolTip =
|
||||
bbb.listeners.ejectTooltip =
|
||||
bbb.listenerItem.nameLbl.toolTip =
|
||||
bbb.listenerItem.talkImg.toolTip =
|
||||
bbb.listenerItem.lockImg.toolTip =
|
||||
bbb.listenerItem.muteUnmute.toolTip =
|
||||
bbb.publishVideo.title =
|
||||
bbb.publishVideo.startPublishBtn.toolTip =
|
||||
bbb.video.publish.close.tooltip =
|
||||
bbb.video.publish.close.label =
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.desktopPublish.title =
|
||||
bbb.desktopPublish.fullscreen.tooltip =
|
||||
bbb.desktopPublish.fullscreen.label =
|
||||
bbb.desktopPublish.region.tooltip =
|
||||
bbb.desktopPublish.region.label =
|
||||
bbb.desktopPublish.stop.tooltip =
|
||||
bbb.desktopPublish.stop.label =
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip =
|
||||
bbb.desktopPublish.closeBtn.toolTip =
|
||||
bbb.desktopPublish.minimizeBtn.toolTip =
|
||||
bbb.desktopView.title =
|
||||
bbb.desktopView.fitToWindow =
|
||||
bbb.desktopView.actualSize =
|
||||
bbb.toolbar.phone.toolTip =
|
||||
bbb.toolbar.deskshare.toolTip =
|
||||
bbb.toolbar.video.toolTip =
|
||||
bbb.highlighter.toolbar.pencil =
|
||||
bbb.highlighter.toolbar.ellipse =
|
||||
bbb.highlighter.toolbar.rectangle =
|
||||
bbb.highlighter.toolbar.clear =
|
||||
bbb.highlighter.toolbar.undo =
|
||||
bbb.highlighter.toolbar.color =
|
||||
bbb.highlighter.toolbar.thickness =
|
||||
bbb.highlighter.button.toolTipShow =
|
||||
bbb.highlighter.button.toolTipHide =
|
||||
bbb.logout.appshutdown =
|
||||
bbb.logout.asyncerror =
|
||||
bbb.logout.connectionclosed =
|
||||
bbb.logout.connectionfailed =
|
||||
bbb.logout.rejected =
|
||||
bbb.logout.invalidapp =
|
||||
bbb.logout.unknown =
|
||||
bbb.logout.usercommand =
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.start =
|
||||
bbb.settings.voice.volume =
|
||||
bbb.settings.voice.adjust =
|
||||
bbb.settings.java.label =
|
||||
bbb.settings.java.text =
|
||||
bbb.settings.java.command =
|
||||
bbb.settings.flash.label =
|
||||
bbb.settings.flash.text =
|
||||
bbb.settings.flash.command =
|
||||
bbb.settings.isight.label =
|
||||
bbb.settings.isight.text =
|
||||
bbb.settings.isight.command =
|
||||
bbb.settings.warning.label =
|
||||
bbb.settings.warning.close =
|
||||
bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Zerbitzariarekin konektatzen
|
||||
bbb.mainshell.statusProgress.loading = {0} modulu kargatzen
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Barkatu, ezin dugu zerbitzariarekin konektatu
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - Informazio gehiagorako, begiratu http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - Informazio gehiagorako, begiratu http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Zabaldu agerraldien leihoa
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Berrabiarazi diseinua
|
||||
bbb.oldlocalewindow.reminder1 = Agian BigBlueButton-en hizkuntza-itzulpen zaharra izango duzu
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Sakatu eskua altxatzeko.
|
||||
bbb.viewers.presentBtn.label = Aldatu aurkezlea
|
||||
bbb.viewers.kickUserBtn.toolTip = Kanporatu erabiltzailea
|
||||
bbb.presentation.title = Aurkezpena
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Igo dokumentu bat aurkezteko
|
||||
bbb.presentation.uploadPresBtn.toolTip = Igo dokumentu bat aurkezteko
|
||||
bbb.presentation.backBtn.toolTip = Aurreko diapositiba
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = Aukeratu lagun bat harekin txatean pribatuan aritze
|
||||
bbb.chat.chatOptions = Txataren aukerak
|
||||
bbb.chat.fontSize = Letra-tamaina
|
||||
bbb.listeners.title = Entzuleak {0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToTalk.toolTip = Klik egin hitz egiteko
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.talk = Hitz egin
|
||||
bbb.listeners.mute = Mutua
|
||||
bbb.listeners.muteAllBtn.toolTip = Mututu guztiak
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Hitza eman guztiei
|
||||
bbb.listeners.ejectTooltip = Kanporatu erabiltzailea
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Itxi
|
||||
bbb.video.keepAspectBtn.tooltip = Eutsi leihoaren itxurari
|
||||
bbb.video.fitVideoBtn.tooltip = Bideo moldean\nDoitu bideoa
|
||||
bbb.video.originalSizeBtn.tooltip = Jatorrizko tamaina
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.noCamera = Kamara ez dago eskuragarri
|
||||
bbb.video.publish.hint.cantOpenCamera = Ezin da zure kamara zabaldu
|
||||
bbb.video.publish.hint.waitingApproval = Onartzeko zain
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.openingCamera = Kamara zabaltzen...
|
||||
bbb.video.publish.hint.cameraDenied = Kamararako sarbidea ukatuta
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.publishing = Argitaratzen...
|
||||
bbb.desktopPublish.title = Mahaigaina partekatzen: aurkezlearen aurrebista
|
||||
bbb.desktopPublish.fullscreen.tooltip = Partekatu zure pantaila osoa
|
||||
bbb.desktopPublish.fullscreen.label = Pantaila osoa
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Ez da arazo larririk aurkitu.
|
||||
bbb.settings.instructions = Onartu zure kamara baimenez galdetzen dizun Flash prompt-a. Zeure burua ikusi eta zeure buruari entzuten badiozu, zure nabigatzailea egoki ezarrita dago. Beherago agertzen dira beste zenbait arazo. Sakatu bakoitzaren gainean konponbidea aurkitzeko.
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = بیگ بُلو باتِن
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = در حال اتصال به سرور
|
||||
bbb.mainshell.statusProgress.loading = در حال بارگزاری {0} ماژول
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = متاسفانه، امکان اتصال به سرور وجود ندارد.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = مشاهده ی پنجره ی ثبت وقایع
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = بازگشت به طرح بندی پیش فرض
|
||||
bbb.oldlocalewindow.reminder1 = ممکن است ترجمه ی مربوط به زبان بیگ بلو باتن شما قدیمی باشد.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = جهت اجازه گرفتن کلیک کنی
|
||||
bbb.viewers.presentBtn.label = تغییر شخص ارائه دهنده
|
||||
bbb.viewers.kickUserBtn.toolTip = اخراج کاربر
|
||||
bbb.presentation.title = ارائه
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = بارگزاري یک سند جهت ارائه.
|
||||
bbb.presentation.uploadPresBtn.toolTip = بارگزاري یک سند جهت ارائه.
|
||||
bbb.presentation.backBtn.toolTip = اسلاید قبلی.
|
||||
@ -73,7 +75,7 @@ bbb.fileupload.deleteBtn.toolTip = حذف ارائه
|
||||
bbb.fileupload.showBtn = نمایش
|
||||
bbb.fileupload.showBtn.toolTip = نمایش ارائه
|
||||
bbb.fileupload.okCancelBtn = لغو
|
||||
bbb.fileupload.genThumbText = در حال تولید تصاویر کوچک
|
||||
bbb.fileupload.genThumbText = در حال ایجاد تصاویر کوچک
|
||||
bbb.fileupload.progBarLbl = میزان پیشرفت:
|
||||
bbb.chat.title = گقتگوی متنی
|
||||
bbb.chat.cmpColorPicker.toolTip = رنگ متن
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = کاربری را جهت گفتگوی خصوصی ا
|
||||
bbb.chat.chatOptions = تنظیمات مربوط به گفتگو
|
||||
bbb.chat.fontSize = اندازه متن
|
||||
bbb.listeners.title = شنوندگان{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = برای صحبت کردن کلیک کنید
|
||||
bbb.listeners.pushToMute.toolTip = برای قطع صدای خود کلیک کنید
|
||||
bbb.listeners.talk = صحبت
|
||||
bbb.listeners.mute = قطع صدا
|
||||
bbb.listeners.muteAllBtn.toolTip = قطع صدای همه
|
||||
bbb.listeners.unmuteAllBtn.toolTip = پخش صدای همه
|
||||
bbb.listeners.ejectTooltip = اخراج کاربر
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = بستن
|
||||
bbb.video.keepAspectBtn.tooltip = ثابت نگه داشتن نسبت پنجره
|
||||
bbb.video.fitVideoBtn.tooltip = اندازه کردن تصویر
|
||||
bbb.video.originalSizeBtn.tooltip = اندازه اصلی
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = دوربینی وجود ندارد
|
||||
bbb.video.publish.hint.cantOpenCamera = امکان باز کردن دوربین شما وجود ندارد
|
||||
bbb.video.publish.hint.waitingApproval = در انتظار تایید
|
||||
bbb.video.publish.hint.videoPreview = پیش نمایش تصویر
|
||||
bbb.video.publish.hint.openingCamera = در حال باز کردن دوربین
|
||||
bbb.video.publish.hint.cameraDenied = اجازه دسترسی به دوربین وجود ندارد
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = دوربین شما توسط برنامه دیگری در حال استفاده است.
|
||||
bbb.video.publish.hint.publishing = در حال پخش
|
||||
bbb.desktopPublish.title = اشتراک گذاري صفحه: پيش نمايش ارائه دهنده
|
||||
bbb.desktopPublish.fullscreen.tooltip = اشتراک کل صفحه
|
||||
bbb.desktopPublish.fullscreen.label = تمام صفحه
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = مشکل خیلی مهمی یافت نشد.
|
||||
bbb.settings.instructions = درخواست فلش مبنی بر اجازه برای استفاده از دوربین را بپذیرید. اگرشما قادر به مشاهده تصویر و شنیدن صدای خود هستید، مرورگر شما درست تنظیم شده است. مشکلات بالقوه ی دیگر در زیر نشان داده شده اند. برای یافتن راه حل احتمالی روی هر کدام کلیک کنید.
|
||||
bbb.videodock.title = داک تصویر
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,60 +1,62 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Yhdistetään palvelimeen
|
||||
bbb.mainshell.statusProgress.loading = Ladataan {0} moduuleita
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Anteeksi, emme voi yhdistää palvelimeen.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - Lisätietoja: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - Lisätietoja: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Avaa loki-ikkuna
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Resetoi asettelu
|
||||
bbb.oldlocalewindow.reminder1 = Sinulla voi olla vanha kielikäännös BigBlueButtonista.
|
||||
bbb.oldlocalewindow.reminder2 = Ole hyvä ja tyhjennä selaimesi välimuisti ja yritä uudelleen.
|
||||
bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
|
||||
bbb.micSettings.playSound = Play Test Sound
|
||||
bbb.micSettings.hearFromHeadset = You should hear audio in your headset, not your computer speakers.
|
||||
bbb.micSettings.speakIntoMic = You should see the bar move as you speak into your headset.
|
||||
bbb.micSettings.changeMic = Change Microphone
|
||||
bbb.micSettings.join = Join Audio
|
||||
bbb.micSettings.cancel = Cancel
|
||||
bbb.mainToolbar.helpBtn = Help
|
||||
bbb.mainToolbar.logoutBtn = Logout
|
||||
bbb.mainToolbar.logoutBtn.toolTip = Log out
|
||||
bbb.mainToolbar.settingsBtn = Settings
|
||||
bbb.mainToolbar.settingsBtn.toolTip = Open Settings
|
||||
bbb.viewers.title = Users{0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = Name
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = You are logged in as this user.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Role
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Status
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Hand Raised on {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Click to view.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Presenter
|
||||
bbb.viewers.presentBtn.toolTip = Select web participant to be presenter.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Click to raise hand.
|
||||
bbb.viewers.presentBtn.label = Switch Presenter
|
||||
bbb.viewers.kickUserBtn.toolTip = Kick User
|
||||
bbb.presentation.title = Presentation
|
||||
bbb.presentation.uploadPresBtn = Upload a document for presentation.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Upload a document for presentation.
|
||||
bbb.presentation.backBtn.toolTip = Previous slide.
|
||||
bbb.presentation.slideNumLbl.toolTip = Click to select a slide
|
||||
bbb.presentation.forwardBtn.toolTip = Next slide
|
||||
bbb.presentation.resetZoomBtn.toolTip = Reset Zoom
|
||||
bbb.presentation.presenterNameLbl = {0} is currently presenting.
|
||||
bbb.presentation.clickToUpload = Upload presentation
|
||||
bbb.presentation.maxUploadFileExceededAlert = Error: The file is bigger than what's allowed.
|
||||
bbb.presentation.uploadcomplete = Upload completed. Please wait while we convert the document.
|
||||
bbb.presentation.uploaded = uploaded.
|
||||
bbb.presentation.document.supported = The uploaded document is supported. Starting to convert...
|
||||
bbb.presentation.document.converted = Successfully converted the office document.
|
||||
bbb.presentation.error.document.convert.failed = Error: Failed to convert the office document.
|
||||
bbb.presentation.error.io = IO Error: Please contact administrator.
|
||||
bbb.presentation.error.security = Security Error: Please contact administrator.
|
||||
bbb.presentation.error.convert.format = Error: Please check that the uploaded file have a valid extension.
|
||||
bbb.presentation.error.convert.notsupported = Error: The uploaded document is unsupported. Please upload a compatible file.
|
||||
bbb.presentation.error.convert.nbpage = Error: Failed to determine the number of pages in the uploaded document.
|
||||
bbb.presentation.error.convert.maxnbpagereach = Error: The uploaded document has too many pages.
|
||||
bbb.presentation.error.convert.swf = Error When Converting Uploaded File. Please Contact The Administrator.
|
||||
bbb.presentation.converted = Converted {0} of {1} slides.
|
||||
bbb.oldlocalewindow.windowTitle = Varoitus: Vanha käännös
|
||||
bbb.micSettings.playSound = Soite testiääni
|
||||
bbb.micSettings.hearFromHeadset = Sinun pitäisi kuulla ääni kuullokkeistasi, ei tietokoneen kaiuttimista.
|
||||
bbb.micSettings.speakIntoMic = Sinun pitäisi nähdä palkin liikkuvan kun puhut mikrofoniin kuulokkeissasi.
|
||||
bbb.micSettings.changeMic = Vaihda mikrofonia
|
||||
bbb.micSettings.join = Liity Ääneen
|
||||
bbb.micSettings.cancel = Peruuta
|
||||
bbb.mainToolbar.helpBtn = Apua
|
||||
bbb.mainToolbar.logoutBtn = Kirjaudu ulos
|
||||
bbb.mainToolbar.logoutBtn.toolTip = Kirjaudu ulos
|
||||
bbb.mainToolbar.settingsBtn = Asetukset
|
||||
bbb.mainToolbar.settingsBtn.toolTip = Avaa asetukset
|
||||
bbb.viewers.title = Käyttäjät{0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = Nimi
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Olet kirjautuneena sisään käyttäjänä.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Rooli
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Tila
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Käsi pysytyssä käyttäjällä {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Klikkaa nähdäksesi.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Esittelijä
|
||||
bbb.viewers.presentBtn.toolTip = Valitse web osallistujat jotka ovat esittelijöitä.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Klikkaa nostaaksesi kättä.
|
||||
bbb.viewers.presentBtn.label = Vaihda esittelijää.
|
||||
bbb.viewers.kickUserBtn.toolTip = Potkaise käyttäjä
|
||||
bbb.presentation.title = Esitys
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Lähetä dokumentti esitykseen.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Lähetä dokumentti esitykseen.
|
||||
bbb.presentation.backBtn.toolTip = Edellinen sivu.
|
||||
bbb.presentation.slideNumLbl.toolTip = Klikkaa valitaksesi sivun.
|
||||
bbb.presentation.forwardBtn.toolTip = Seuraava sivu.
|
||||
bbb.presentation.resetZoomBtn.toolTip = Nollaa Zoom
|
||||
bbb.presentation.presenterNameLbl = {0} Esittää tällähetkellä.
|
||||
bbb.presentation.clickToUpload = Lähetä esitys.
|
||||
bbb.presentation.maxUploadFileExceededAlert = Virhe: Tiedoston koko on suurempi kuin sallittu.
|
||||
bbb.presentation.uploadcomplete = Lähetys on valmis. Odota kun konvertoin dokumentin.
|
||||
bbb.presentation.uploaded = Lähetetty.
|
||||
bbb.presentation.document.supported = Lähetetty dokumentti on tuettu. Aloitan konvertoinnin...
|
||||
bbb.presentation.document.converted = Office dokumentin konvertointi onnistui.
|
||||
bbb.presentation.error.document.convert.failed = Virhe: Office dokumentin konvertointi epäonnistui.
|
||||
bbb.presentation.error.io = IO virhe. Ota yhteyttä järjestelmän ylläpitäjään.
|
||||
bbb.presentation.error.security = Suojausvirhe. Ota yhteyttä järjestelmän ylläpitäjään.
|
||||
bbb.presentation.error.convert.format = Virhe. Ole hyvä ja tarkista että lähettämälläsi tiedostolla on oikea tiedostomuoto.
|
||||
bbb.presentation.error.convert.notsupported = Virhe: Lähetettyä tiedostomuotoa ei tueta. Ole hyvä ja lähetä yhteensopiva tiedosto.
|
||||
bbb.presentation.error.convert.nbpage = Virhe: Lähetetystä tiedostosta ei voida määrittää sivumäärää.
|
||||
bbb.presentation.error.convert.maxnbpagereach = Virhe: Lähetetyssä tiedostossa on liian monta sivua.
|
||||
bbb.presentation.error.convert.swf = Virhe konvertoitaessa lähetettyä tiedostoa. Ota yhteyttä järjestelmän ylläpitäjään.
|
||||
bbb.presentation.converted = Konvertoin {0} {1}:stä sivusta.
|
||||
bbb.presentation.ok = OK
|
||||
bbb.presentation.uploadwindow.presentationfile = Presentation file
|
||||
bbb.presentation.uploadwindow.pdf = PDF
|
||||
@ -62,107 +64,108 @@ bbb.presentation.uploadwindow.word = WORD
|
||||
bbb.presentation.uploadwindow.excel = EXCEL
|
||||
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
|
||||
bbb.presentation.uploadwindow.image = IMAGE
|
||||
bbb.presentation.uploadwindow.closeLabel = Click OK to close the window
|
||||
bbb.fileupload.title = Upload Presentation
|
||||
bbb.fileupload.fileLbl = File:
|
||||
bbb.fileupload.selectBtn.toolTip = Browse file
|
||||
bbb.fileupload.uploadBtn = Upload
|
||||
bbb.fileupload.uploadBtn.toolTip = Upload file
|
||||
bbb.fileupload.presentationNamesLbl = Uploaded Presentations:
|
||||
bbb.fileupload.deleteBtn.toolTip = Delete Presentation
|
||||
bbb.fileupload.showBtn = Show
|
||||
bbb.fileupload.showBtn.toolTip = Show Presentation
|
||||
bbb.fileupload.okCancelBtn = Cancel
|
||||
bbb.fileupload.genThumbText = Generating thumbnails..
|
||||
bbb.fileupload.progBarLbl = Progress:
|
||||
bbb.chat.title = Chat
|
||||
bbb.chat.cmpColorPicker.toolTip = Text Color
|
||||
bbb.chat.sendBtn = Send
|
||||
bbb.chat.sendBtn.toolTip = Send Message
|
||||
bbb.chat.publicChatUsername = All
|
||||
bbb.chat.publicMsgAwaiting = Public message awaiting
|
||||
bbb.chat.publicMsgAwaiting2 = * Public message awaiting *
|
||||
bbb.chat.privateMsgAwaiting = Private message awaiting
|
||||
bbb.chat.privateMsgAwaiting2 = * Private message awaiting *
|
||||
bbb.chat.privateChatSelect = Select a person to chat with privately
|
||||
bbb.chat.chatOptions = Chat Options
|
||||
bbb.chat.fontSize = Font Size
|
||||
bbb.listeners.title = Listeners{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.muteAllBtn.toolTip = Mute all
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Unmute all
|
||||
bbb.listeners.ejectTooltip = Kick User
|
||||
bbb.listenerItem.nameLbl.toolTip = Select this user and click button to mute or unmute.
|
||||
bbb.listenerItem.talkImg.toolTip = Talking
|
||||
bbb.listenerItem.lockImg.toolTip = Click to keep muted or unmuted
|
||||
bbb.listenerItem.muteUnmute.toolTip = Mute or unmute this listener
|
||||
bbb.publishVideo.title = Share your webcam
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Start Sharing
|
||||
bbb.video.publish.close.tooltip = Stop sharing your video
|
||||
bbb.video.publish.close.label = Close
|
||||
bbb.video.keepAspectBtn.tooltip = Keep window aspect
|
||||
bbb.video.fitVideoBtn.tooltip = Fit video
|
||||
bbb.video.originalSizeBtn.tooltip = Original size
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.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.stop.label = Close
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip = You cannot maximize this window.
|
||||
bbb.desktopPublish.closeBtn.toolTip = Stop sharing and close this window.
|
||||
bbb.desktopPublish.minimizeBtn.toolTip = Minimize this window.
|
||||
bbb.desktopView.title = Desktop Sharing
|
||||
bbb.desktopView.fitToWindow = Fit to Window
|
||||
bbb.desktopView.actualSize = Display actual size
|
||||
bbb.toolbar.phone.toolTip = Share My Microphone
|
||||
bbb.toolbar.deskshare.toolTip = Share My Desktop
|
||||
bbb.toolbar.video.toolTip = Share My Camera
|
||||
bbb.highlighter.toolbar.pencil = Highlighter
|
||||
bbb.highlighter.toolbar.ellipse = Circle
|
||||
bbb.highlighter.toolbar.rectangle = Rectangle
|
||||
bbb.highlighter.toolbar.clear = Clear Page
|
||||
bbb.highlighter.toolbar.undo = Undo Shape
|
||||
bbb.highlighter.toolbar.color = Select Color
|
||||
bbb.highlighter.toolbar.thickness = Change Thickness
|
||||
bbb.highlighter.button.toolTipShow = Show Whiteboard
|
||||
bbb.highlighter.button.toolTipHide = Hide Whiteboard
|
||||
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.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.settings.deskshare.instructions = Click Allow on the prompt that pops up to check that desktop sharing is working properly for you
|
||||
bbb.settings.deskshare.start = Check Desktop Sharing
|
||||
bbb.settings.voice.volume = Microphone Activity
|
||||
bbb.settings.voice.adjust = Adjust Volume
|
||||
bbb.settings.java.label = Java version error
|
||||
bbb.settings.java.text = You have Java {0} installed, but you need at least version {1} to use the BigBlueButton desktop sharing feature. Click on the button bellow to install the newest Java JRE version.
|
||||
bbb.settings.java.command = Install newest Java
|
||||
bbb.settings.flash.label = Flash version error
|
||||
bbb.settings.flash.text = You have Flash {0} installed, but you need at least version {1} to run BigBlueButton properly. Click on the button bellow to install the newest Adobe Flash version.
|
||||
bbb.settings.flash.command = Install newest Flash
|
||||
bbb.settings.isight.label = iSight camera error
|
||||
bbb.settings.isight.text = If you have problems with your iSight camera, 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 camera. \n To correct this, click on the link bellow to install a newer version of Flash player, or update your Mac to the newest version
|
||||
bbb.settings.isight.command = Install Flash 10.2 RC2
|
||||
bbb.settings.warning.label = Warning
|
||||
bbb.settings.warning.close = Close this Warning
|
||||
bbb.settings.noissues = No outstanding issues have been detected.
|
||||
bbb.settings.instructions = Accept the Flash prompt that asks you for camera permissions. If you can see yourself and hear yourself, your browser has been set up correctly. Other potentials issues are shown bellow. Click on each to find a possible solution.
|
||||
bbb.videodock.title = Video dock
|
||||
bbb.presentation.uploadwindow.closeLabel = Klikkaa OK sulkeaksesi ikkunan
|
||||
bbb.fileupload.title = Lähetä Esitys
|
||||
bbb.fileupload.fileLbl = Tiedost:
|
||||
bbb.fileupload.selectBtn.toolTip = Selaa tiedostoa
|
||||
bbb.fileupload.uploadBtn = Lähetä
|
||||
bbb.fileupload.uploadBtn.toolTip = Lähetä tiedosto
|
||||
bbb.fileupload.presentationNamesLbl = Lähetetyt esitykset:
|
||||
bbb.fileupload.deleteBtn.toolTip = Poista Esitys
|
||||
bbb.fileupload.showBtn = Näytä
|
||||
bbb.fileupload.showBtn.toolTip = Näytä Esitys
|
||||
bbb.fileupload.okCancelBtn = Peruuta
|
||||
bbb.fileupload.genThumbText = Luon pienoiskuvia..
|
||||
bbb.fileupload.progBarLbl = Edistyminen:
|
||||
bbb.chat.title = Keskustelu
|
||||
bbb.chat.cmpColorPicker.toolTip = Tekstin Väri
|
||||
bbb.chat.sendBtn = Lähetä
|
||||
bbb.chat.sendBtn.toolTip = Lähetä Viesti
|
||||
bbb.chat.publicChatUsername = Kaikki
|
||||
bbb.chat.publicMsgAwaiting = Julkinen viesti odottaa
|
||||
bbb.chat.publicMsgAwaiting2 = * Julkinen viesti odottaa *
|
||||
bbb.chat.privateMsgAwaiting = Privaatti viesti odottaa
|
||||
bbb.chat.privateMsgAwaiting2 = * Privaatti viesti odottaa *
|
||||
bbb.chat.privateChatSelect = Valitse henkilö jonka kanssa haluat keskustella privaatisti
|
||||
bbb.chat.chatOptions = Keskustelu Vaihtoehdot
|
||||
bbb.chat.fontSize = Fontin koko
|
||||
bbb.listeners.title = Kuuntelijat{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip = Klikkaa puhuessasi
|
||||
bbb.listeners.pushToMute.toolTip = Klikkaalla mykistät itsesi
|
||||
bbb.listeners.talk = Puhu
|
||||
bbb.listeners.mute = Mykistä
|
||||
bbb.listeners.muteAllBtn.toolTip = Mykistä kaikki
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Mykistys pois kaikille
|
||||
bbb.listeners.ejectTooltip = Potkaise Käyttäjä
|
||||
bbb.listenerItem.nameLbl.toolTip = Valitse käyttäjä ja klikkaa mykistys päälle tai pois.
|
||||
bbb.listenerItem.talkImg.toolTip = Puhuu
|
||||
bbb.listenerItem.lockImg.toolTip = Klikkaa mykistys päälle tai pois
|
||||
bbb.listenerItem.muteUnmute.toolTip = Mykistys päälle tai pois tälle kuuntelijalle
|
||||
bbb.publishVideo.title = Jaa webkamerasi
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Aloita Jakaminen
|
||||
bbb.video.publish.close.tooltip = Lopeta videon jakaminen
|
||||
bbb.video.publish.close.label = Sulje
|
||||
bbb.video.keepAspectBtn.tooltip = Pidä ikkunan suhde
|
||||
bbb.video.fitVideoBtn.tooltip = Sovita video
|
||||
bbb.video.originalSizeBtn.tooltip = Alkuperäinen koko
|
||||
bbb.video.publish.hint.noCamera = Kameraa ei saatavilla
|
||||
bbb.video.publish.hint.cantOpenCamera = En voi avata kameraasi
|
||||
bbb.video.publish.hint.waitingApproval = Odotan hyväksymistä
|
||||
bbb.video.publish.hint.videoPreview = Videon esikatselu
|
||||
bbb.video.publish.hint.openingCamera = Avataan kameraa...
|
||||
bbb.video.publish.hint.cameraDenied = Kameran käyttö estetty
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Kameraasi käyttää jokin muu ohjelma
|
||||
bbb.video.publish.hint.publishing = Julkaisee...
|
||||
bbb.desktopPublish.title = Työpöydän jako: Esittelijän esikatselu
|
||||
bbb.desktopPublish.fullscreen.tooltip = Jaa koko ruutusi
|
||||
bbb.desktopPublish.fullscreen.label = Kokonäyttö
|
||||
bbb.desktopPublish.region.tooltip = Jaa osa näytöstäsi
|
||||
bbb.desktopPublish.region.label = Alue
|
||||
bbb.desktopPublish.stop.tooltip = Sulje näytönjako
|
||||
bbb.desktopPublish.stop.label = Sulje
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip = Et voi maksimoida tätä ikkunaa.
|
||||
bbb.desktopPublish.closeBtn.toolTip = Lopeta jakaminen ja sulje tämä ikkuna
|
||||
bbb.desktopPublish.minimizeBtn.toolTip = Minimoi tämä ikkuna.
|
||||
bbb.desktopView.title = Työpöydän jako
|
||||
bbb.desktopView.fitToWindow = Sovita ikkunaan
|
||||
bbb.desktopView.actualSize = Näytä oikea koko
|
||||
bbb.toolbar.phone.toolTip = Jaa Mikrofonini
|
||||
bbb.toolbar.deskshare.toolTip = Jaa Työpöytäni
|
||||
bbb.toolbar.video.toolTip = Jaa Kamerani
|
||||
bbb.highlighter.toolbar.pencil = Korostaja
|
||||
bbb.highlighter.toolbar.ellipse = Ympyrä
|
||||
bbb.highlighter.toolbar.rectangle = Neliö
|
||||
bbb.highlighter.toolbar.clear = Tyhjennä sivu
|
||||
bbb.highlighter.toolbar.undo = Perutta muoto
|
||||
bbb.highlighter.toolbar.color = Valitse Väri
|
||||
bbb.highlighter.toolbar.thickness = Muuta koko
|
||||
bbb.highlighter.button.toolTipShow = Näytä valkotaulu
|
||||
bbb.highlighter.button.toolTipHide = Piilota valkotaulu
|
||||
bbb.logout.appshutdown = Palvelinsovellus on suljettu
|
||||
bbb.logout.asyncerror = Async virhe
|
||||
bbb.logout.connectionclosed = Yhteys palvelimeen on suljettu
|
||||
bbb.logout.connectionfailed = Yhteys palvelimeen epäonnistui
|
||||
bbb.logout.rejected = Yhteys palvelimeen on hylätty
|
||||
bbb.logout.invalidapp = red5 ohjelmaa ei löydy
|
||||
bbb.logout.unknown = Selaimesi kadotti yhteyden palvelimeen
|
||||
bbb.logout.usercommand = Kirjauduit ulos konferenssista
|
||||
bbb.settings.deskshare.instructions = Klikkaa salliaksesi ponnahdusikkunan joka tarkistaa toimiiko työpöydän jako oikein
|
||||
bbb.settings.deskshare.start = Tarkista Työpöydän Jako
|
||||
bbb.settings.voice.volume = Mikrofonin aktiviteetti
|
||||
bbb.settings.voice.adjust = Säädä Äänenvoimakkuutta
|
||||
bbb.settings.java.label = Java versio virhe
|
||||
bbb.settings.java.text = Java {0} on asennettu, mutta tarvitset vähintään version {1} käyttääksesi BigBlueButtonin työpöytäjako ominaisuuksia. Klikkaa alla olevaa nappia asentaaksesi viimeisimmän Java JRE version.
|
||||
bbb.settings.java.command = Asenna uusin Java
|
||||
bbb.settings.flash.label = Flash versio virhe
|
||||
bbb.settings.flash.text = Flash {0} on asennettu, mutta tarvitset vähintään version {1} käyttääksesi BigBlueButtonia oikein.\nKlikkaa alla olevaa nappia asentaaksesi viimeisimmät Adobe Flash version.
|
||||
bbb.settings.flash.command = Asenna uusin Flash
|
||||
bbb.settings.isight.label = iSight kamera virhe
|
||||
bbb.settings.isight.text = Jos sinulla on ongelmia iSight kamerasi kanssa, syynä voi olla se että käytät OS X 10.6.5 versiota, jolla on tunnetusti ongelmia Flash videokaappauksissa iSight kameran kanssa.\nKorjatakseni ongelman, klikkaa alla olevaa linkkiä asentaaksesi uuden Flash version, tai päivitä Mac OS X uudempaan versioon.
|
||||
bbb.settings.isight.command = Asenna Flash 10.2 RC2
|
||||
bbb.settings.warning.label = Varoitus
|
||||
bbb.settings.warning.close = Sulje tämä varoitus
|
||||
bbb.settings.noissues = Mitään suurempia ongelmia ei löytynyt.
|
||||
bbb.settings.instructions = Hyväksy Flash ponnahdus joka kysyy sinulta kameran käyttöoikeuksia. Jos näet ja kuulet itsesi, selaimesi on oikein määritetty. Muut mahdolliset ongelmat näkyvät alla. Klikkaa jokaista kohtaa löytääksesi mahdollisen ratkaisun.
|
||||
bbb.videodock.title = Videotelakka
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = Big Blue Button
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting =
|
||||
bbb.mainshell.statusProgress.loading = Chargement:
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Désolé, impossible d'établir une connexion au serveur.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2009, BigBlueButton version {0} - Pour plus d'information, visitez http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton version {0} - Pour plus d'information, visitez http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Ouvrir la fenêtre de log
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Disposition par défaut
|
||||
bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Cliquez-ici pour lever la main et demander la
|
||||
bbb.viewers.presentBtn.label = Changer de présentateur
|
||||
bbb.viewers.kickUserBtn.toolTip = Cliquer pour éjecter ce participant.
|
||||
bbb.presentation.title = Présentation
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Envoyez un document à présenter
|
||||
bbb.presentation.uploadPresBtn.toolTip = Envoyez un document à présenter
|
||||
bbb.presentation.backBtn.toolTip = Slide précédent.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Connexion au serveur
|
||||
bbb.mainshell.statusProgress.loading = Chargement de {0} modules
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Désolé, impossible de se connecter au serveur
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton version {0} - Pour plus d'information, visitez http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton version {0} - Pour plus d'information, visitez http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Ouvrir la fenêtre de log
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Disposition par défaut
|
||||
bbb.oldlocalewindow.reminder1 = La traduction française de BigBlueButton utilisée est probablement trop ancienne.
|
||||
@ -23,16 +23,18 @@ bbb.mainToolbar.settingsBtn.toolTip = Ouvrir les paramètres
|
||||
bbb.viewers.title = Utilisateurs {0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = Nom
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Vous êtes identifié(e) avec ce nom.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Accès
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Rôle
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Statut
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Main levé pour {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Double-cliquez pour voir sa Webcam.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Cliquez pour voir la caméra.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Présentateur
|
||||
bbb.viewers.presentBtn.toolTip = Sélectionnez un participant et cliquez ici pour qu'il devienne présentateur.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Cliquez ici pour lever la main et demander la parole.
|
||||
bbb.viewers.presentBtn.label = Changer de présentateur
|
||||
bbb.viewers.presentBtn.label = Nouveau présentateur
|
||||
bbb.viewers.kickUserBtn.toolTip = Expulser l'utilisateur
|
||||
bbb.presentation.title = Présentation
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Envoyer un document à présenter
|
||||
bbb.presentation.uploadPresBtn.toolTip = Envoyer un document à présenter
|
||||
bbb.presentation.backBtn.toolTip = Page précédente
|
||||
@ -54,7 +56,7 @@ bbb.presentation.error.convert.notsupported = Erreur : le format de fichier envo
|
||||
bbb.presentation.error.convert.nbpage = Erreur lors du calcul du nombre de pages du fichier envoyé. Contactez l'administrateur.
|
||||
bbb.presentation.error.convert.maxnbpagereach = Erreur : Le fichier envoyé contient trop de pages. Merci d'envoyer un fichier plus court.
|
||||
bbb.presentation.error.convert.swf = Erreur lors de la conversion du fichier. Contactez l'administrateur.
|
||||
bbb.presentation.converted = {0} diapositive (s) sur {1} convertie(s).
|
||||
bbb.presentation.converted = {0} diapositive(s) sur {1} convertie(s).
|
||||
bbb.presentation.ok = OK
|
||||
bbb.presentation.uploadwindow.presentationfile = Fichier de présentation
|
||||
bbb.presentation.uploadwindow.pdf = PDF
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = Choisissez un utilisateur avec qui discuter en priv
|
||||
bbb.chat.chatOptions = Options de discussions
|
||||
bbb.chat.fontSize = Taille de la police
|
||||
bbb.listeners.title = Conférence vocale {0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = Cliquer pour parler
|
||||
bbb.listeners.pushToMute.toolTip = Cliquer pour couper le micro
|
||||
bbb.listeners.talk = Parler
|
||||
bbb.listeners.mute = Couper le micro
|
||||
bbb.listeners.muteAllBtn.toolTip = Rendre tout le monde muet
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Redonner la parole à tout le monde
|
||||
bbb.listeners.ejectTooltip = Expulser l'utilisateur
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Fermer
|
||||
bbb.video.keepAspectBtn.tooltip = Conserver l'aspect de la fenêtre
|
||||
bbb.video.fitVideoBtn.tooltip = Adapter la taille de la vidéo
|
||||
bbb.video.originalSizeBtn.tooltip = Taille originale
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Pas de caméra disponible
|
||||
bbb.video.publish.hint.cantOpenCamera = Impossible d'ouvrir votre caméra
|
||||
bbb.video.publish.hint.waitingApproval = En attente d'approbation
|
||||
bbb.video.publish.hint.videoPreview = Prévisualisation vidéo
|
||||
bbb.video.publish.hint.openingCamera = Ouverture caméra...
|
||||
bbb.video.publish.hint.cameraDenied = Accès à la caméra interdit
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Votre caméra est utilisée par une autre application
|
||||
bbb.video.publish.hint.publishing = Publication...
|
||||
bbb.desktopPublish.title = Partage de bureau - Aperçu
|
||||
bbb.desktopPublish.fullscreen.tooltip = Partager l'intégralité de l'écran
|
||||
bbb.desktopPublish.fullscreen.label = Plein écran
|
||||
@ -166,3 +168,4 @@ 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.
|
||||
bbb.videodock.title = Conférence vidéo
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
171
bigbluebutton-client/locale/he_IL/bbbResources.properties
Normal file
171
bigbluebutton-client/locale/he_IL/bbbResources.properties
Normal file
@ -0,0 +1,171 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = מתחבר לשרת
|
||||
bbb.mainshell.statusProgress.loading = טוען {0} מודולים
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = לצערנו לא הצלחנו להתחבר לשרת
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - למידע נוסף: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = פתח חלון רשם\n
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = אפס תבנית
|
||||
bbb.oldlocalewindow.reminder1 =
|
||||
bbb.oldlocalewindow.reminder2 =
|
||||
bbb.oldlocalewindow.windowTitle =
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.cancel =
|
||||
bbb.mainToolbar.helpBtn =
|
||||
bbb.mainToolbar.logoutBtn =
|
||||
bbb.mainToolbar.logoutBtn.toolTip =
|
||||
bbb.mainToolbar.settingsBtn =
|
||||
bbb.mainToolbar.settingsBtn.toolTip =
|
||||
bbb.viewers.title =
|
||||
bbb.viewers.viewersGrid.nameItemRenderer =
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip =
|
||||
bbb.viewers.viewersGrid.roleItemRenderer =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip =
|
||||
bbb.viewers.presentBtn.toolTip =
|
||||
bbb.viewers.raiseHandBtn.toolTip =
|
||||
bbb.viewers.presentBtn.label =
|
||||
bbb.viewers.kickUserBtn.toolTip =
|
||||
bbb.presentation.title =
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn =
|
||||
bbb.presentation.uploadPresBtn.toolTip =
|
||||
bbb.presentation.backBtn.toolTip =
|
||||
bbb.presentation.slideNumLbl.toolTip =
|
||||
bbb.presentation.forwardBtn.toolTip =
|
||||
bbb.presentation.resetZoomBtn.toolTip =
|
||||
bbb.presentation.presenterNameLbl =
|
||||
bbb.presentation.clickToUpload =
|
||||
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 =
|
||||
bbb.presentation.error.security =
|
||||
bbb.presentation.error.convert.format =
|
||||
bbb.presentation.error.convert.notsupported =
|
||||
bbb.presentation.error.convert.nbpage =
|
||||
bbb.presentation.error.convert.maxnbpagereach =
|
||||
bbb.presentation.error.convert.swf =
|
||||
bbb.presentation.converted =
|
||||
bbb.presentation.ok =
|
||||
bbb.presentation.uploadwindow.presentationfile =
|
||||
bbb.presentation.uploadwindow.pdf =
|
||||
bbb.presentation.uploadwindow.word =
|
||||
bbb.presentation.uploadwindow.excel =
|
||||
bbb.presentation.uploadwindow.powerpoint =
|
||||
bbb.presentation.uploadwindow.image =
|
||||
bbb.presentation.uploadwindow.closeLabel =
|
||||
bbb.fileupload.title =
|
||||
bbb.fileupload.fileLbl =
|
||||
bbb.fileupload.selectBtn.toolTip =
|
||||
bbb.fileupload.uploadBtn =
|
||||
bbb.fileupload.uploadBtn.toolTip =
|
||||
bbb.fileupload.presentationNamesLbl =
|
||||
bbb.fileupload.deleteBtn.toolTip =
|
||||
bbb.fileupload.showBtn =
|
||||
bbb.fileupload.showBtn.toolTip =
|
||||
bbb.fileupload.okCancelBtn =
|
||||
bbb.fileupload.genThumbText =
|
||||
bbb.fileupload.progBarLbl =
|
||||
bbb.chat.title =
|
||||
bbb.chat.cmpColorPicker.toolTip =
|
||||
bbb.chat.sendBtn =
|
||||
bbb.chat.sendBtn.toolTip =
|
||||
bbb.chat.publicChatUsername =
|
||||
bbb.chat.publicMsgAwaiting =
|
||||
bbb.chat.publicMsgAwaiting2 =
|
||||
bbb.chat.privateMsgAwaiting =
|
||||
bbb.chat.privateMsgAwaiting2 =
|
||||
bbb.chat.privateChatSelect =
|
||||
bbb.chat.chatOptions =
|
||||
bbb.chat.fontSize =
|
||||
bbb.listeners.title =
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.muteAllBtn.toolTip =
|
||||
bbb.listeners.unmuteAllBtn.toolTip =
|
||||
bbb.listeners.ejectTooltip =
|
||||
bbb.listenerItem.nameLbl.toolTip =
|
||||
bbb.listenerItem.talkImg.toolTip =
|
||||
bbb.listenerItem.lockImg.toolTip =
|
||||
bbb.listenerItem.muteUnmute.toolTip =
|
||||
bbb.publishVideo.title =
|
||||
bbb.publishVideo.startPublishBtn.toolTip =
|
||||
bbb.video.publish.close.tooltip =
|
||||
bbb.video.publish.close.label =
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.desktopPublish.title =
|
||||
bbb.desktopPublish.fullscreen.tooltip =
|
||||
bbb.desktopPublish.fullscreen.label =
|
||||
bbb.desktopPublish.region.tooltip =
|
||||
bbb.desktopPublish.region.label =
|
||||
bbb.desktopPublish.stop.tooltip =
|
||||
bbb.desktopPublish.stop.label =
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip =
|
||||
bbb.desktopPublish.closeBtn.toolTip =
|
||||
bbb.desktopPublish.minimizeBtn.toolTip =
|
||||
bbb.desktopView.title =
|
||||
bbb.desktopView.fitToWindow =
|
||||
bbb.desktopView.actualSize =
|
||||
bbb.toolbar.phone.toolTip =
|
||||
bbb.toolbar.deskshare.toolTip =
|
||||
bbb.toolbar.video.toolTip =
|
||||
bbb.highlighter.toolbar.pencil =
|
||||
bbb.highlighter.toolbar.ellipse =
|
||||
bbb.highlighter.toolbar.rectangle =
|
||||
bbb.highlighter.toolbar.clear =
|
||||
bbb.highlighter.toolbar.undo =
|
||||
bbb.highlighter.toolbar.color =
|
||||
bbb.highlighter.toolbar.thickness =
|
||||
bbb.highlighter.button.toolTipShow =
|
||||
bbb.highlighter.button.toolTipHide =
|
||||
bbb.logout.appshutdown =
|
||||
bbb.logout.asyncerror =
|
||||
bbb.logout.connectionclosed =
|
||||
bbb.logout.connectionfailed =
|
||||
bbb.logout.rejected =
|
||||
bbb.logout.invalidapp =
|
||||
bbb.logout.unknown =
|
||||
bbb.logout.usercommand =
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.start =
|
||||
bbb.settings.voice.volume =
|
||||
bbb.settings.voice.adjust =
|
||||
bbb.settings.java.label =
|
||||
bbb.settings.java.text =
|
||||
bbb.settings.java.command =
|
||||
bbb.settings.flash.label =
|
||||
bbb.settings.flash.text =
|
||||
bbb.settings.flash.command =
|
||||
bbb.settings.isight.label =
|
||||
bbb.settings.isight.text =
|
||||
bbb.settings.isight.command =
|
||||
bbb.settings.warning.label =
|
||||
bbb.settings.warning.close =
|
||||
bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Povezuje se sa serverom
|
||||
bbb.mainshell.statusProgress.loading = Podiže {0} modula
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Nažalost nije moguće uspostaviti vezu sa serverom.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, CallPal by BigBlueButton - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, CallPal by BigBlueButton - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Otvori log prozor
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Resetuj izgled
|
||||
bbb.oldlocalewindow.reminder1 = Moguce imate staru verziju prevoda.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klikni da dignete ruku.
|
||||
bbb.viewers.presentBtn.label = Promeni prezentatora
|
||||
bbb.viewers.kickUserBtn.toolTip = Izbaci korisnika
|
||||
bbb.presentation.title = Prezentacija
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Prebaci dokument za prezentaciju.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Prebaci dokument za prezentaciju.
|
||||
bbb.presentation.backBtn.toolTip = Prethodni slajd.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,168 +1,171 @@
|
||||
bbb.pageTitle = BigBlueButton webapp
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.statusProgress.connecting =
|
||||
bbb.mainshell.statusProgress.loading = Betöltés:
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Sajnáljuk a szerverhez a kapcsolódás sikertelen.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton version {0} - Kérem jelentse a http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Napló ablak
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Kinézet alaphelyzetbe
|
||||
bbb.oldlocalewindow.reminder1 = Vélhetően régi nyelvi fájlja van a programhoz ( BigBlueButton).
|
||||
bbb.oldlocalewindow.reminder2 = Kérjük, ürítse ki a böngésző gyorsítótárát majd próbálja újra.
|
||||
bbb.oldlocalewindow.windowTitle = Warning: Old Language Translations
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Csatlakozás a szerverhez
|
||||
bbb.mainshell.statusProgress.loading = {0} module töltése
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Sajnos a szerverhez nem sikerült csatlakozni
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - További információk a http://www.bigbluebutton.org/ oldalon.
|
||||
bbb.mainshell.logBtn.toolTip = Naplózási ablak mengnyitása
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Kinézet visszaállítása
|
||||
bbb.oldlocalewindow.reminder1 = Valószínű régi BigBlueButton fordítsa van.
|
||||
bbb.oldlocalewindow.reminder2 = Kérem ürítse böngészője gyorsítótárát.
|
||||
bbb.oldlocalewindow.windowTitle = Figyelmeztetés: Régiek a fordítások.
|
||||
bbb.micSettings.playSound = Teszt hang lejátszása
|
||||
bbb.micSettings.hearFromHeadset = Amennyiben lehetséges fejhallgatót használjon ne hangfalat.
|
||||
bbb.micSettings.speakIntoMic = A mikrofonba beszélve mozognia kellene a sávnak.
|
||||
bbb.micSettings.changeMic = Mikrofon cseréje
|
||||
bbb.micSettings.join = Csatlakozás
|
||||
bbb.micSettings.cancel = Megszakít
|
||||
bbb.mainToolbar.helpBtn = Súgó
|
||||
bbb.mainToolbar.logoutBtn = Kilépés
|
||||
bbb.mainToolbar.logoutBtn.toolTip = Kijelentkezés
|
||||
bbb.mainToolbar.logoutBtn.toolTip = Kilépés
|
||||
bbb.mainToolbar.settingsBtn = Beállítások
|
||||
bbb.mainToolbar.settingsBtn.toolTip =
|
||||
bbb.viewers.title = Web - ({0}) résztvevő
|
||||
bbb.mainToolbar.settingsBtn.toolTip = Beállítások megnyitása
|
||||
bbb.viewers.title = Felhasználók{0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = Név
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Ezen a felhasználónéven van bejelentkezve.
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Ezen a néven jelentkezett be
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Jogosultság
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Állapot
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Kéz feltartás: {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = dupla klikk a megtekintéshez.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Státusz
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = {0} jelentkezik
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Kattints a megtekintéshez
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Előadó
|
||||
bbb.viewers.presentBtn.toolTip = Válasszon egy résztvevőt a prezentáló kijelöléséhez.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Kattintson ide a kéz feltartáshoz.
|
||||
bbb.viewers.presentBtn.label = Előadó váltása
|
||||
bbb.viewers.kickUserBtn.toolTip = Résztvevő kizárása
|
||||
bbb.presentation.title = Prezentáció
|
||||
bbb.presentation.uploadPresBtn = Töltsön fel egy dokumentumot a prezentációhoz.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Töltsön fel egy dokumentumot a prezentációhoz.
|
||||
bbb.presentation.backBtn.toolTip = Előző dia.
|
||||
bbb.presentation.slideNumLbl.toolTip = Kattintson a kiválasztandó diára.
|
||||
bbb.viewers.presentBtn.toolTip = Válassz a résztvevők közül előadót
|
||||
bbb.viewers.raiseHandBtn.toolTip = Kattints a jelentkezéshez
|
||||
bbb.viewers.presentBtn.label = Előadó cseréje
|
||||
bbb.viewers.kickUserBtn.toolTip = Felhasználó eltávolítása
|
||||
bbb.presentation.title = Előadás
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Fájl feltöltése az előadáshoz
|
||||
bbb.presentation.uploadPresBtn.toolTip = Fájl feltöltése az előadáshoz
|
||||
bbb.presentation.backBtn.toolTip = Előző dia
|
||||
bbb.presentation.slideNumLbl.toolTip = Kattints a dia kiválasztásához
|
||||
bbb.presentation.forwardBtn.toolTip = Következő dia
|
||||
bbb.presentation.resetZoomBtn.toolTip = Nagyítás alaphelyzetbe
|
||||
bbb.presentation.presenterNameLbl = {0} a prezentáló személy.
|
||||
bbb.presentation.clickToUpload = Prezentáció feltöltése
|
||||
bbb.presentation.maxUploadFileExceededAlert = Hiba: a fájl nagyobb a megengedettnél.
|
||||
bbb.presentation.uploadcomplete = Feltöltés kész. Kérem várjon az előkészítésre.
|
||||
bbb.presentation.resetZoomBtn.toolTip = Nagyítás visszaállítása
|
||||
bbb.presentation.presenterNameLbl = {0} az előadó.
|
||||
bbb.presentation.clickToUpload = Feltöltés
|
||||
bbb.presentation.maxUploadFileExceededAlert = Hiba: Túl nagy a fájl.
|
||||
bbb.presentation.uploadcomplete = Feltöltés befejeződött. Kérem várja meg a fájl átalakítását.
|
||||
bbb.presentation.uploaded = feltöltve.
|
||||
bbb.presentation.document.supported = A feltöltött dokumentum támogatott.
|
||||
bbb.presentation.document.converted = A dokumentum sikeresen előkészítve.
|
||||
bbb.presentation.error.document.convert.failed = Hiba: hiba a dokumentum előkészítésében.
|
||||
bbb.presentation.error.io = Átviteli hiba: Kérjük jelezze a MY-APP.EU ügyfélszolgálaton.
|
||||
bbb.presentation.error.security = Biztonsági hiba: Kérjük jelezze az előadás szervezőjének.
|
||||
bbb.presentation.error.convert.format = Hiiba: Kérem ellenőrizze le a fájl típusát.
|
||||
bbb.presentation.error.convert.notsupported = Hiba: A feltöltött dokumentum nem támogatott. Kérjük használjon elfogadott formátumot.
|
||||
bbb.presentation.error.convert.nbpage = Hiba: Az oldlak száma nem meghatározható a feltöltött dokumentumban.
|
||||
bbb.presentation.error.convert.maxnbpagereach = Hiba: A feltöltött dokumentum túl sok oldalból áll.
|
||||
bbb.presentation.error.convert.swf = Hiba a feltöltött dokumentum előkészítése közben. Kérjük jelezze a MY-APP.EU ügyfélszolgálaton.
|
||||
bbb.presentation.converted = Előkészítve {0} / {1} dia.
|
||||
bbb.presentation.document.supported = A feltöltött fájl konvertálható. A konvertálás elkezdődött...
|
||||
bbb.presentation.document.converted = Sikerült a konvertálás.
|
||||
bbb.presentation.error.document.convert.failed = Hiba: A fájl konvertálása nem sikerült.
|
||||
bbb.presentation.error.io = IO Hiba: Keresse a rendszergazdát.
|
||||
bbb.presentation.error.security = Biztonsági hiba: Keresse a rendszergazdát.
|
||||
bbb.presentation.error.convert.format = Hiba: Kérem ellenőrizze a feltöltött fájl kitejesztését.
|
||||
bbb.presentation.error.convert.notsupported = Hiba: A feltöltött fájl nem támogatott. Kérem, kompatibilis fájlt töltsön fel.
|
||||
bbb.presentation.error.convert.nbpage = Hiba a feltöltött dokumentum oldaszámainak meghatározásakor.
|
||||
bbb.presentation.error.convert.maxnbpagereach = Hiba: A feltöltött dokumentumnak túl sok oldala van.
|
||||
bbb.presentation.error.convert.swf = Hiba a feltöltött fájl átalakításakor. Keresse a rendszergazdát.
|
||||
bbb.presentation.converted = {0} / {1} dia átalakítva.
|
||||
bbb.presentation.ok = OK
|
||||
bbb.presentation.uploadwindow.presentationfile = Prezentációs fájl
|
||||
bbb.presentation.uploadwindow.presentationfile = Előadó fájlja
|
||||
bbb.presentation.uploadwindow.pdf = PDF
|
||||
bbb.presentation.uploadwindow.word = WORD
|
||||
bbb.presentation.uploadwindow.excel = EXCEL
|
||||
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
|
||||
bbb.presentation.uploadwindow.image = KÉP
|
||||
bbb.presentation.uploadwindow.closeLabel =
|
||||
bbb.fileupload.title = Prezentáció feltöltése
|
||||
bbb.presentation.uploadwindow.image = KÉPFÁJL
|
||||
bbb.presentation.uploadwindow.closeLabel = Kattints az OK-ra az oldal bezárásához
|
||||
bbb.fileupload.title = Feltöltött előadásfájlok
|
||||
bbb.fileupload.fileLbl = Fájl:
|
||||
bbb.fileupload.selectBtn.toolTip = Fájl tallózása
|
||||
bbb.fileupload.selectBtn.toolTip = Fájl keresése
|
||||
bbb.fileupload.uploadBtn = Feltöltés
|
||||
bbb.fileupload.uploadBtn.toolTip = Fájl feltöltése
|
||||
bbb.fileupload.presentationNamesLbl = Prezentációk feltöltése:
|
||||
bbb.fileupload.deleteBtn.toolTip = Prezentáció törlése
|
||||
bbb.fileupload.uploadBtn.toolTip = Feltöltött fájl
|
||||
bbb.fileupload.presentationNamesLbl = Feltöltött előadásfájlok:
|
||||
bbb.fileupload.deleteBtn.toolTip = Előadásfájlok törlése
|
||||
bbb.fileupload.showBtn = Mutat
|
||||
bbb.fileupload.showBtn.toolTip = Prezentáció mutatása
|
||||
bbb.fileupload.okCancelBtn = Megszakít
|
||||
bbb.fileupload.genThumbText = Segéd diák előkészítése..
|
||||
bbb.fileupload.progBarLbl = Folyamatban:
|
||||
bbb.chat.title = Csevegés
|
||||
bbb.fileupload.showBtn.toolTip = Előadás megjelenítése
|
||||
bbb.fileupload.okCancelBtn = Mégsem
|
||||
bbb.fileupload.genThumbText = Kis diák generálása..
|
||||
bbb.fileupload.progBarLbl = Folyamat:
|
||||
bbb.chat.title = Chat
|
||||
bbb.chat.cmpColorPicker.toolTip = Betűszín
|
||||
bbb.chat.sendBtn = Küld
|
||||
bbb.chat.sendBtn.toolTip = Üzenet küldése
|
||||
bbb.chat.publicChatUsername = Mindenkinek
|
||||
bbb.chat.publicMsgAwaiting = Üzenet várja (Publikus)
|
||||
bbb.chat.publicMsgAwaiting2 =
|
||||
bbb.chat.privateMsgAwaiting = Privát üzenet várja
|
||||
bbb.chat.privateMsgAwaiting2 = * Magánüzenet várja *
|
||||
bbb.chat.privateChatSelect = Válasszon egy személyt akivel privát beszélgetést kíván folytatni.
|
||||
bbb.chat.chatOptions = Csevegés beállításai
|
||||
bbb.chat.publicChatUsername = Mindenki
|
||||
bbb.chat.publicMsgAwaiting = Publikus üzenetre várakozás
|
||||
bbb.chat.publicMsgAwaiting2 = * Publikus üzenetre várakozás *
|
||||
bbb.chat.privateMsgAwaiting = Privát üzenetre várakozás
|
||||
bbb.chat.privateMsgAwaiting2 = * Privát üzenetre várakozás *
|
||||
bbb.chat.privateChatSelect = Válassz felhasználót a pirvát chateléshez
|
||||
bbb.chat.chatOptions = Chat beállítások
|
||||
bbb.chat.fontSize = Betűméret
|
||||
bbb.listeners.title = Voice - ({0}) résztvevő
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.muteAllBtn.toolTip = Mind némít
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Mind hangosít
|
||||
bbb.listeners.ejectTooltip = Résztvevő kizárása
|
||||
bbb.listenerItem.nameLbl.toolTip = Válassza ki a felhasználót majd kattintson a Némításra a némításhoz vagy visszahangosításhoz.
|
||||
bbb.listeners.title = Beszélgetők {0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip = Magamat kihangosít
|
||||
bbb.listeners.pushToMute.toolTip = Magamat némít
|
||||
bbb.listeners.talk = Hangosít
|
||||
bbb.listeners.mute = Némít
|
||||
bbb.listeners.muteAllBtn.toolTip = Mindenkit némít
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Mindenkit kihangosít
|
||||
bbb.listeners.ejectTooltip = Felhasználó eltávolítása
|
||||
bbb.listenerItem.nameLbl.toolTip = Válaszd ki ezt a beszélgetőt és kattints a némításához ill. a kihangosításához
|
||||
bbb.listenerItem.talkImg.toolTip = Beszéd
|
||||
bbb.listenerItem.lockImg.toolTip =
|
||||
bbb.listenerItem.muteUnmute.toolTip = Hallgató hangjának engedélyezése be/ki.
|
||||
bbb.publishVideo.title = Videókamera
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Kamera indítása
|
||||
bbb.video.publish.close.tooltip = Webkamera megosztás megszakítása
|
||||
bbb.video.publish.close.label = Bezár
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.desktopPublish.title = Képernyő megosztás: Az előadó képernyője
|
||||
bbb.desktopPublish.fullscreen.tooltip = az egész képernyő megosztása
|
||||
bbb.listenerItem.lockImg.toolTip = Kattints a zároláshoz és a feloldáshoz
|
||||
bbb.listenerItem.muteUnmute.toolTip = Beszélgető némítása vagy kihangosítása
|
||||
bbb.publishVideo.title = Webkamera bekapcsolása
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Bekapcsolás
|
||||
bbb.video.publish.close.tooltip = Webkamera kikapcsolása
|
||||
bbb.video.publish.close.label = Bezárás
|
||||
bbb.video.keepAspectBtn.tooltip = Arány megtartása
|
||||
bbb.video.fitVideoBtn.tooltip = Video méret
|
||||
bbb.video.originalSizeBtn.tooltip = Eredeti méret
|
||||
bbb.video.publish.hint.noCamera = Nincs elérhető webkamera
|
||||
bbb.video.publish.hint.cantOpenCamera = Webkamerát nem sikerült megnyitni
|
||||
bbb.video.publish.hint.waitingApproval = Jóváhagyásra várok
|
||||
bbb.video.publish.hint.videoPreview = Video előnézet
|
||||
bbb.video.publish.hint.openingCamera = Webkamera megnyitása...
|
||||
bbb.video.publish.hint.cameraDenied = Webkamera nincs engedélyezve
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = A webkamerát jelenleg másik alkalmazás használja
|
||||
bbb.video.publish.hint.publishing = Adásban van...
|
||||
bbb.desktopPublish.title = Képernyő megosztás: Előadó nézete
|
||||
bbb.desktopPublish.fullscreen.tooltip = Teljes képernyő megosztása
|
||||
bbb.desktopPublish.fullscreen.label = Teljes képernyő
|
||||
bbb.desktopPublish.region.tooltip = A képernyő bizonyos részének megosztása
|
||||
bbb.desktopPublish.region.label =
|
||||
bbb.desktopPublish.stop.tooltip =
|
||||
bbb.desktopPublish.region.tooltip = A képernyő egy részének megosztása
|
||||
bbb.desktopPublish.region.label = Képernyő egy része
|
||||
bbb.desktopPublish.stop.tooltip = Képernyőmegosztás bezárása
|
||||
bbb.desktopPublish.stop.label = Bezár
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip =
|
||||
bbb.desktopPublish.closeBtn.toolTip = Megosztás megszakítása és az ablak bezárása
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip = Nem lehet ezt az ablakot nagy méretűre állítani
|
||||
bbb.desktopPublish.closeBtn.toolTip = Megosztás leállítása és az ablak bezárása
|
||||
bbb.desktopPublish.minimizeBtn.toolTip = Kis méret
|
||||
bbb.desktopView.title =
|
||||
bbb.desktopView.fitToWindow = Ablakmérethez igazít
|
||||
bbb.desktopView.actualSize =
|
||||
bbb.toolbar.phone.toolTip = Mikrofonom indítása
|
||||
bbb.toolbar.deskshare.toolTip = Képernyő megosztása
|
||||
bbb.toolbar.video.toolTip = Kamerám indítása
|
||||
bbb.desktopView.title = Képernyőm megosztása
|
||||
bbb.desktopView.fitToWindow = Ablakhoz igazítása
|
||||
bbb.desktopView.actualSize = Eredeti méret
|
||||
bbb.toolbar.phone.toolTip = Hang bekapcsolása
|
||||
bbb.toolbar.deskshare.toolTip = Képernyőm megosztása
|
||||
bbb.toolbar.video.toolTip = Webkamerám bekapcsolása
|
||||
bbb.highlighter.toolbar.pencil = Kiemelő
|
||||
bbb.highlighter.toolbar.ellipse = Kör
|
||||
bbb.highlighter.toolbar.rectangle = Négyszög
|
||||
bbb.highlighter.toolbar.clear = Lap törlése
|
||||
bbb.highlighter.toolbar.undo = alakzat visszavonása
|
||||
bbb.highlighter.toolbar.color = Válasszon színt
|
||||
bbb.highlighter.toolbar.thickness = Élesség állítása
|
||||
bbb.highlighter.button.toolTipShow = Rajztábla mutatása
|
||||
bbb.highlighter.toolbar.rectangle = Téglalap
|
||||
bbb.highlighter.toolbar.clear = Rajzok törlése
|
||||
bbb.highlighter.toolbar.undo = Visszavonás
|
||||
bbb.highlighter.toolbar.color = Szín kiválasztása
|
||||
bbb.highlighter.toolbar.thickness = Vastagság változtatása
|
||||
bbb.highlighter.button.toolTipShow = Rajztábla megjelenítése
|
||||
bbb.highlighter.button.toolTipHide = Rajztábla elrejtése
|
||||
bbb.logout.appshutdown =
|
||||
bbb.logout.asyncerror =
|
||||
bbb.logout.appshutdown = A szervert lekapcsolták
|
||||
bbb.logout.asyncerror = Async hiba
|
||||
bbb.logout.connectionclosed = A szerverrel a kapcsolat lezárva
|
||||
bbb.logout.connectionfailed =
|
||||
bbb.logout.connectionfailed = A szerverrel a kapcsolat nem jött létre
|
||||
bbb.logout.rejected = A szerverrel a kapcsolat elutasítva
|
||||
bbb.logout.invalidapp = A "red5" programkomponens nem található.
|
||||
bbb.logout.unknown = Kapcsolat a szerverrel megszakadt.
|
||||
bbb.logout.usercommand = Kijelentkezett a beszélgetésből.
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.start =
|
||||
bbb.settings.voice.volume =
|
||||
bbb.logout.invalidapp = A "red5" programkomponens nem található
|
||||
bbb.logout.unknown = Kapcsolat a szerverrel megszakadt
|
||||
bbb.logout.usercommand = Kijelentkezett a beszélgetésből
|
||||
bbb.settings.deskshare.instructions = Kattints az engedélyezésre, hogy kiderüljön, a képernyőmegosztás hibátlanul fut-e.
|
||||
bbb.settings.deskshare.start = Képernyőmegosztás engedélyezése
|
||||
bbb.settings.voice.volume = Mikrofon aktivitás
|
||||
bbb.settings.voice.adjust = Hangerő állítása
|
||||
bbb.settings.java.label =
|
||||
bbb.settings.java.text =
|
||||
bbb.settings.java.label = Java verzió hiba
|
||||
bbb.settings.java.text = {0} verzió van telepítve, de {1} szükséges, hogy megoszthassa képernyőjét. \n Az alábbi gombra kattintva telepítheti a legújabb Java JRE verziót
|
||||
bbb.settings.java.command = telepítse a legújabb Java verziót
|
||||
bbb.settings.flash.label = Hibás flash verzió
|
||||
bbb.settings.flash.text = Önnek {0} flash verzió van telepítve, de az előadás terme legalább {1} flash verzióval látogatható.\nAz alábbi gombra kattintva telepítse a legújabb Adobe Flash verziót!
|
||||
bbb.settings.flash.text = {0} flash verzió van telepítve, de {1} flash verzióval szükséges a hibátlan futáshoz. \n Az alábbi gombra kattintva telepítheti a legújabb Adobe Flash verziót.
|
||||
bbb.settings.flash.command = Telepítse a legújabb Flash verziót.
|
||||
bbb.settings.isight.label =
|
||||
bbb.settings.isight.text =
|
||||
bbb.settings.isight.label = iSight camera hiba
|
||||
bbb.settings.isight.text = Ha iSight webkamerával van problémád, az valószínű azért van, mert OS X 10.6.5 fut a gépeden, aminek problémája van a Flash és az iSight webkamera között. \n A hiba javításához telepíts a legújabb Flash player-t, vagy frissítsd a Mac-edet a legújabb verzióra.
|
||||
bbb.settings.isight.command = Telepítse a Flash 10.2 RC2 változatát.
|
||||
bbb.settings.warning.label = Figyelem
|
||||
bbb.settings.warning.close =
|
||||
bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.settings.warning.close = Zárd be ezt a figyelmezetést
|
||||
bbb.settings.noissues = Nem meghatározható hiba
|
||||
bbb.settings.instructions = Engedélyezd a Flash-enk a webkamera használatát. Amennyiben látja és hallja saját magát, sikerült jól beállítania böngészőjét. Lejjebb találhatóak az egyéb lehetséges hibák. Kattintson mindegyikre a lehetséges megoldásért.
|
||||
bbb.videodock.title = Video ablak
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,19 +1,19 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Sedang membuat hubungan ke server
|
||||
bbb.mainshell.statusProgress.loading = Loading {0} modules
|
||||
bbb.mainshell.statusProgress.loading = Memuat {0} modul
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Maaf, tidak dapat terhubung ke server.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - Untuk informasi lebih lanjut, kunjungi http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - Untuk informasi lebih lanjut, kunjungi http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Buka Jendela Log
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Atur Ulang Tampilan
|
||||
bbb.oldlocalewindow.reminder1 = Penerjamah bahasa dari BigBlueButton anda mungkin sudah lawas
|
||||
bbb.oldlocalewindow.reminder2 = Harap bersihkan cache peramban anda kemudian coba lagi.
|
||||
bbb.oldlocalewindow.windowTitle = Peringatan: Penerjemahan bahasa lawas
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.playSound = Putar suara untuk percobaan
|
||||
bbb.micSettings.hearFromHeadset = Anda seharusnya mendengar suara dari headset, bukan dari pengeras suara komputer.
|
||||
bbb.micSettings.speakIntoMic = Anda seharusnya melihat batangan yang bergerak seiring anda berbicara pada headset.
|
||||
bbb.micSettings.changeMic = Ganti Mikrofon
|
||||
bbb.micSettings.join = Gabung Suara
|
||||
bbb.micSettings.cancel = Batal
|
||||
bbb.mainToolbar.helpBtn = Bantuan
|
||||
bbb.mainToolbar.logoutBtn = Keluar
|
||||
@ -31,8 +31,10 @@ bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Presenter
|
||||
bbb.viewers.presentBtn.toolTip = Pilih siapa yang akan jadi presentasi.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Klik untuk mengangkat tangan.
|
||||
bbb.viewers.presentBtn.label = Jadikan Presenter
|
||||
bbb.viewers.kickUserBtn.toolTip = Kick User
|
||||
bbb.viewers.kickUserBtn.toolTip = Usir Pengguna
|
||||
bbb.presentation.title = Presentasi
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Unggah sebuah dokumen untuk presentasi.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Unggah sebuah dokumen untuk presentasi.
|
||||
bbb.presentation.backBtn.toolTip = Slide Sebelumnya
|
||||
@ -56,7 +58,7 @@ bbb.presentation.error.convert.maxnbpagereach = Error: Dokumen yang diunggah mem
|
||||
bbb.presentation.error.convert.swf = Error saat mengkonversi file unggahan. Silahkan hubungi Administrator.
|
||||
bbb.presentation.converted = Berhasil dikonversi
|
||||
bbb.presentation.ok = OK
|
||||
bbb.presentation.uploadwindow.presentationfile = Data Presentasi
|
||||
bbb.presentation.uploadwindow.presentationfile = Berkas Presentasi
|
||||
bbb.presentation.uploadwindow.pdf = PDF
|
||||
bbb.presentation.uploadwindow.word = WORD
|
||||
bbb.presentation.uploadwindow.excel = EXCEL
|
||||
@ -64,8 +66,8 @@ bbb.presentation.uploadwindow.powerpoint = POWERPOINT
|
||||
bbb.presentation.uploadwindow.image = Citra
|
||||
bbb.presentation.uploadwindow.closeLabel = Klik OK untuk menutup jendela
|
||||
bbb.fileupload.title = Unggah Presentasi
|
||||
bbb.fileupload.fileLbl = File:
|
||||
bbb.fileupload.selectBtn.toolTip = Melihat-lihat file
|
||||
bbb.fileupload.fileLbl = Berkas:
|
||||
bbb.fileupload.selectBtn.toolTip = Cari berkas
|
||||
bbb.fileupload.uploadBtn = Unggah
|
||||
bbb.fileupload.uploadBtn.toolTip = Unggah file
|
||||
bbb.fileupload.presentationNamesLbl = Unggah Presentasi:
|
||||
@ -88,32 +90,32 @@ bbb.chat.privateChatSelect = Pilih seseorang untuk obrolan pribadi
|
||||
bbb.chat.chatOptions = Opsi Obrolan
|
||||
bbb.chat.fontSize = Ukuran Huruf
|
||||
bbb.listeners.title = Pendengar{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.muteAllBtn.toolTip = Diam semua
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Bersuara
|
||||
bbb.listeners.ejectTooltip = Kick User
|
||||
bbb.listeners.pushToTalk.toolTip = Klik untuk bicara
|
||||
bbb.listeners.pushToMute.toolTip = Klik untuk membisukan diri anda sendiri
|
||||
bbb.listeners.talk = Bicara
|
||||
bbb.listeners.mute = Bisu
|
||||
bbb.listeners.muteAllBtn.toolTip = Diamkan semua
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Suarakan semua
|
||||
bbb.listeners.ejectTooltip = Usir Pengguna
|
||||
bbb.listenerItem.nameLbl.toolTip = Pilih pengguna ini dan klik tombol untuk mengaktifkan atau menonaktifkan suara.
|
||||
bbb.listenerItem.talkImg.toolTip = Berbicara
|
||||
bbb.listenerItem.talkImg.toolTip = Sedang bicara
|
||||
bbb.listenerItem.lockImg.toolTip = Klik untuk mengaktifkan atau menonaktifkan suara
|
||||
bbb.listenerItem.muteUnmute.toolTip = Menonaktifkan atau mengaktifkan suara pendengar ini
|
||||
bbb.publishVideo.title = Bagikan Video Anda
|
||||
bbb.publishVideo.title = Bagikan Kamera Anda
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Mulai Berbagi
|
||||
bbb.video.publish.close.tooltip = Berhenti membagikan Video Anda
|
||||
bbb.video.publish.close.tooltip = Berhenti membagikan kamera anda
|
||||
bbb.video.publish.close.label = Tutup
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.keepAspectBtn.tooltip = Jaga aspek jendela
|
||||
bbb.video.fitVideoBtn.tooltip = Paskan video
|
||||
bbb.video.originalSizeBtn.tooltip = Ukuran asli
|
||||
bbb.video.publish.hint.noCamera = Tidak ada kamera tersedia
|
||||
bbb.video.publish.hint.cantOpenCamera = Tidak dapat membuka kamera anda
|
||||
bbb.video.publish.hint.waitingApproval = Menunggu persetujuan
|
||||
bbb.video.publish.hint.videoPreview = Pratinjau video
|
||||
bbb.video.publish.hint.openingCamera = Sedang membuka kamera...
|
||||
bbb.video.publish.hint.cameraDenied = Akses kamera ditolak
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Kamera anda sedang digunakan oleh aplikasi lain
|
||||
bbb.video.publish.hint.publishing = Mempublikasikan...
|
||||
bbb.desktopPublish.title = Berbagi Desktop: Pratinjau Presenter
|
||||
bbb.desktopPublish.fullscreen.tooltip = Bagikan seluruh layar anda
|
||||
bbb.desktopPublish.fullscreen.label = Layar Penuh
|
||||
@ -147,13 +149,13 @@ bbb.logout.rejected = Hubungan ke server ditolak
|
||||
bbb.logout.invalidapp = Aplikasi red5 belum terpasang
|
||||
bbb.logout.unknown = Klien anda telah kehilangan hubungan ke server.
|
||||
bbb.logout.usercommand = Anda telah keluar dari konferensi
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.instructions = Klik Ijinkan pada jendela pop up untuk memeriksa jika berbagi desktop berjalan sebagaimana mestinya.
|
||||
bbb.settings.deskshare.start = Periksa fitur Berbagi Desktop.
|
||||
bbb.settings.voice.volume = Aktifitas Mikrofon
|
||||
bbb.settings.voice.adjust = Atur Suara
|
||||
bbb.settings.java.label = Versi Java bermasalah
|
||||
bbb.settings.java.text = Anda memiliki Java {0} yang terpasang, tapi anda membutuhkan paling tidak bersi {1} untuk dapat menggunakan fitur berbagi desktop. Klik pada tombol di bawah untuk memasang versi Java JRE terbaru.
|
||||
bbb.settings.java.command = Pasang Java yang terbaru
|
||||
bbb.settings.java.text = Anda memiliki Java {0} yang terpasang, tapi anda membutuhkan paling tidak versi {1} untuk dapat menggunakan fitur berbagi desktop. Klik pada tombol di bawah untuk memasang versi Java JRE terbaru.
|
||||
bbb.settings.java.command = Pasang Java terbaru
|
||||
bbb.settings.flash.label = Kesalahan pada versi Flash
|
||||
bbb.settings.flash.text = Anda sudah memiliki Flash {0} yang terpasang, tapi anda membutuhkan paling tidak versi {1} untuk dapat menjalankan BigBlueButton dengan baik. Klik tombol di bawah untuk memasang versi Adobe Flash terbaru.
|
||||
bbb.settings.flash.command = Pasang Flash yang terbaru
|
||||
@ -162,7 +164,8 @@ bbb.settings.isight.text = Jika anda punya masalah dengan iSight kamera, mungkin
|
||||
bbb.settings.isight.command = Pasang Flash 10.2.RC2
|
||||
bbb.settings.warning.label = Peringatan
|
||||
bbb.settings.warning.close = Tutup peringatan ini
|
||||
bbb.settings.noissues = Tidak ada masalah terkemuka yang terdeteksi.
|
||||
bbb.settings.instructions = Terima konfirmasi Flash yang meminta izin atas kamera anda. Jika anda bisa melihat dan mendengar diri anda sendiri berarti peramban anda sudah diatur dengan benar. Masalah yang potensial lainnya ditampilkan di bawah. Klik untuk menemukan solusi yang mungkin dari masing-masing masalah.
|
||||
bbb.videodock.title =
|
||||
bbb.settings.noissues = Tidak ada masalah mencolok yang terdeteksi.
|
||||
bbb.settings.instructions = Terima konfirmasi Flash yang meminta izin atas kamera anda. Jika anda bisa melihat dan mendengar diri anda sendiri berarti peramban anda sudah diatur dengan benar. Masalah yang potensial lainnya ditampilkan di bawah. Klik untuk menemukan kemungkinan solusi dari masing-masing masalah.
|
||||
bbb.videodock.title = Dok video
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,19 +1,19 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Connessione al server in corso
|
||||
bbb.mainshell.statusProgress.loading = Caricamento:
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Errore di connessione.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton versione {0} - Per maggiori informazioni visita http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton versione {0} - Per maggiori informazioni visita http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Apri finestra Log
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Reimposta Layout
|
||||
bbb.oldlocalewindow.reminder1 = Potresti avere una localizzazione obsoleta.
|
||||
bbb.oldlocalewindow.reminder2 = Svuota la cache del tuo browser e riprova.
|
||||
bbb.oldlocalewindow.windowTitle = Attenzione: localizzazione obsoleta
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.playSound = Suono di prova
|
||||
bbb.micSettings.hearFromHeadset = Dovresti sentire l'audio nella cuffia, non negli altoprlanti del computer.
|
||||
bbb.micSettings.speakIntoMic = Dovresti vedere la barra muoversi mentre parli
|
||||
bbb.micSettings.changeMic = Cambia microfono
|
||||
bbb.micSettings.join = Partecipa audio
|
||||
bbb.micSettings.cancel = Annulla
|
||||
bbb.mainToolbar.helpBtn = Aiuto
|
||||
bbb.mainToolbar.logoutBtn = Disconnetti
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Clicca per alzare la mano.
|
||||
bbb.viewers.presentBtn.label = Scambia presentatore
|
||||
bbb.viewers.kickUserBtn.toolTip = Clicca per espellere.
|
||||
bbb.presentation.title = Presentazione
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Carica un documento per la presentazione.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Carica un documento per la presentazione.
|
||||
bbb.presentation.backBtn.toolTip = Slide precedente.
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = Seleziona l'interlocutore per la conversazione priv
|
||||
bbb.chat.chatOptions = Opzioni chat
|
||||
bbb.chat.fontSize = Dimensione Font
|
||||
bbb.listeners.title = Voce - ({0}) partecipanti
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = Clicca per parlare
|
||||
bbb.listeners.pushToMute.toolTip = Clicca per metterti in mute
|
||||
bbb.listeners.talk = Parla
|
||||
bbb.listeners.mute = Mute
|
||||
bbb.listeners.muteAllBtn.toolTip = Muto tutti
|
||||
bbb.listeners.unmuteAllBtn.toolTip = DeMuto tutti
|
||||
bbb.listeners.ejectTooltip = Clicca per espellere.
|
||||
@ -103,17 +105,17 @@ bbb.publishVideo.title = Streaming webcam
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Avvia streaming
|
||||
bbb.video.publish.close.tooltip = Interrompi la condivisione del tuo video
|
||||
bbb.video.publish.close.label = Chiudi
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.keepAspectBtn.tooltip = Mantieni le proporzioni della finestra
|
||||
bbb.video.fitVideoBtn.tooltip = Adatta al video
|
||||
bbb.video.originalSizeBtn.tooltip = Dimensione originale
|
||||
bbb.video.publish.hint.noCamera = Nessuna webcam disponibile
|
||||
bbb.video.publish.hint.cantOpenCamera = Impossibile aprire la webcam
|
||||
bbb.video.publish.hint.waitingApproval = In attesa dell'autorizzazione
|
||||
bbb.video.publish.hint.videoPreview = Anteprima video
|
||||
bbb.video.publish.hint.openingCamera = Accesso webcam
|
||||
bbb.video.publish.hint.cameraDenied = Accesso alla webcam negato
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = La webcam è in uso in un'altra applicazione
|
||||
bbb.video.publish.hint.publishing = Pubblicazione...
|
||||
bbb.desktopPublish.title = Condivisione Desktop: Anteprima
|
||||
bbb.desktopPublish.fullscreen.tooltip = Condividi l'intero schermo
|
||||
bbb.desktopPublish.fullscreen.label = Schermo pieno
|
||||
@ -147,7 +149,7 @@ bbb.logout.rejected = La connessione al server è stata respinta
|
||||
bbb.logout.invalidapp = L'applicazione red5 non esiste
|
||||
bbb.logout.unknown = Hai perso la connessione con il server
|
||||
bbb.logout.usercommand = Sei uscito dalla conferenza
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.instructions = Clicca Permetti alla richiesta di controllo del corretto funzionamento della condivisione del desktop
|
||||
bbb.settings.deskshare.start = Effettua un test della condivisione del desktop
|
||||
bbb.settings.voice.volume = Attività del microfono
|
||||
bbb.settings.voice.adjust = Correggi il volume
|
||||
@ -164,5 +166,6 @@ bbb.settings.warning.label = Attenzione
|
||||
bbb.settings.warning.close = Chiudi questo avviso
|
||||
bbb.settings.noissues = Non è stato individuato alcun ulteriore problema
|
||||
bbb.settings.instructions = Accetta la richiesta quando Flash ti chiede il permesso di usare la webcam. Se puoi vederti e puoi sentirti, il tuo browser è configurato correttamente. Altri problemi potenziali sono elencati qui sotto. Clicca per trovare una possibile soluzione.
|
||||
bbb.videodock.title =
|
||||
bbb.videodock.title = Parcheggio video
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,19 +1,19 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = サーバーへ接続しています。
|
||||
bbb.mainshell.statusProgress.loading = 読み込み中・・・ {0} モジュール が読み込まれました。
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = 申し訳ありません。サーバーに接続できません。
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - 詳細につきましては、http://www.bigbluebutton.org/をご覧ください。
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - 詳細につきましては、http://www.bigbluebutton.org/をご覧ください。
|
||||
bbb.mainshell.logBtn.toolTip = ログウィンドウを開く
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = レイアウトを元に戻す
|
||||
bbb.oldlocalewindow.reminder1 = BigBlueButtonの古い言語翻訳を使用しているようです。
|
||||
bbb.oldlocalewindow.reminder2 = ご使用のブラウザのキャッシュを削除した後、再度実行してみてください。
|
||||
bbb.oldlocalewindow.windowTitle = 警告:古い言語翻訳
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.playSound = テストサウンドの再生
|
||||
bbb.micSettings.hearFromHeadset = 外付けスピーカーではなく、ヘッドセットから音が聞こえます
|
||||
bbb.micSettings.speakIntoMic = ヘッドセットに声を発すると、ゲージの変動が見えるはずです
|
||||
bbb.micSettings.changeMic = マイクを変えてください
|
||||
bbb.micSettings.join = 音声機能をオン
|
||||
bbb.micSettings.cancel = キャンセル
|
||||
bbb.mainToolbar.helpBtn = ヘルプ
|
||||
bbb.mainToolbar.logoutBtn = ログアウト
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = クリックして挙手。
|
||||
bbb.viewers.presentBtn.label = プレゼンターをスイッチ
|
||||
bbb.viewers.kickUserBtn.toolTip = このユーザのマイクを停止します
|
||||
bbb.presentation.title = プレゼンテーション
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = 資料をアップロードします。
|
||||
bbb.presentation.uploadPresBtn.toolTip = 資料をアップロードします。
|
||||
bbb.presentation.backBtn.toolTip = 前のスライド
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = プライベートにチャットする個人を選
|
||||
bbb.chat.chatOptions = チャットの設定
|
||||
bbb.chat.fontSize = 文字の大きさ
|
||||
bbb.listeners.title = リスナー{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = クリックしてお話しください
|
||||
bbb.listeners.pushToMute.toolTip = クリックしてミュート(無音状態)
|
||||
bbb.listeners.talk = トーク
|
||||
bbb.listeners.mute = ミュート
|
||||
bbb.listeners.muteAllBtn.toolTip = すべてをミュート
|
||||
bbb.listeners.unmuteAllBtn.toolTip = すべてのミュートを解除
|
||||
bbb.listeners.ejectTooltip = このユーザのマイクを停止します
|
||||
@ -103,17 +105,17 @@ bbb.publishVideo.title = ウェブカメラを利用する
|
||||
bbb.publishVideo.startPublishBtn.toolTip = ウェブカメラ利用開始
|
||||
bbb.video.publish.close.tooltip = ウェブカメラの利用停止
|
||||
bbb.video.publish.close.label = 閉じる
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.keepAspectBtn.tooltip = ウィンドウ比率を保持
|
||||
bbb.video.fitVideoBtn.tooltip = ビデオをフィット
|
||||
bbb.video.originalSizeBtn.tooltip = オリジナルのサイズ
|
||||
bbb.video.publish.hint.noCamera = カメラがありません
|
||||
bbb.video.publish.hint.cantOpenCamera = あなたのカメラを有効にできません
|
||||
bbb.video.publish.hint.waitingApproval = 承認待ち
|
||||
bbb.video.publish.hint.videoPreview = ビデオのプレビュー
|
||||
bbb.video.publish.hint.openingCamera = カメラを有効にしています・・・
|
||||
bbb.video.publish.hint.cameraDenied = カメラへのアクセスが拒否されました
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = あなたのカメラは他のアプリケーションによって使用中です
|
||||
bbb.video.publish.hint.publishing = パブリッシュ中・・・
|
||||
bbb.desktopPublish.title = デスクトップ共有: プレゼンターの画面を閲覧
|
||||
bbb.desktopPublish.fullscreen.tooltip = 画面の一部を指定して共有
|
||||
bbb.desktopPublish.fullscreen.label = 全画面表示
|
||||
@ -147,7 +149,7 @@ bbb.logout.rejected = サーバーへの接続が拒否されました
|
||||
bbb.logout.invalidapp = red5アプリが存在しません
|
||||
bbb.logout.unknown = サーバとの接続が切れました
|
||||
bbb.logout.usercommand = 会議からログアウトしました
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.instructions = クリックして、デスクトップ共有が正常に機能しているかどうかを知らせるプロンプトを許可してください
|
||||
bbb.settings.deskshare.start = デスクトップ共有をチェック
|
||||
bbb.settings.voice.volume = マイクの活動
|
||||
bbb.settings.voice.adjust = ボリュームを調整
|
||||
@ -164,5 +166,6 @@ bbb.settings.warning.label = 警告
|
||||
bbb.settings.warning.close = この警告を閉じる
|
||||
bbb.settings.noissues = 未解決の問題は検出されていません。
|
||||
bbb.settings.instructions = カメラのアクセス許可を尋ねられたFlashのプロンプトを受け入れて下さい。自分自身が見えて、自分自身の声を聞くことができれば、ブラウザが正しく設定されています。その他の可能性のある問題は以下になります。可能な解決策を見つけるためそれぞれクリックしてください。
|
||||
bbb.videodock.title =
|
||||
bbb.videodock.title = ビデオ枠
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = 서버 접속중 # Connecting to the server
|
||||
bbb.mainshell.statusProgress.loading = 모듈 {0} 로딩중
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = 서버에 접속하지 못했습니다. # Sorry, we cannot connect to the server.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - 자세한 정보는 사이트에서 확인하세요. http://www.bigbluebutton.org/. # (c) 2011, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - 자세한 정보는 사이트에서 확인하세요. http://www.bigbluebutton.org/. # (c) 2011, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = 기록 보기 # Open Log Window
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = 화면 재설정 # Reset Layout
|
||||
bbb.oldlocalewindow.reminder1 = 이전 언어팩 설치되어 있습니다.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = 클릭하시면 손들기 모양이 표시됩
|
||||
bbb.viewers.presentBtn.label = 발표자변경 # Switch Presenter
|
||||
bbb.viewers.kickUserBtn.toolTip = 강퇴 # Kick User
|
||||
bbb.presentation.title = 프리젠테이션 # Presentation
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = 프리젠테이션 자료 올리기 # Upload a document for presentation.
|
||||
bbb.presentation.uploadPresBtn.toolTip = 프리젠테이션 자료 올리기 # Upload a document for presentation.
|
||||
bbb.presentation.backBtn.toolTip = 이전 슬라이드
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = 별다른 문제가 발견되지 않았습니다.
|
||||
bbb.settings.instructions = 카메라 사용허가에 대한 플래시 팝업창이 뜨면 허가를 하세요. 카메라와 스피커를 통해 자신의 모습과 목소리를 확인하셨다면 브라우저가 제대로 동작하는 것입니다. 아래와 같이 다른 문제가 발생된다면 문제 해결을 위해 각각의 내용을 클릭하세요.
|
||||
bbb.videodock.title = 비디오 도크
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting =
|
||||
bbb.mainshell.statusProgress.loading = ?k?limas:
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Atsiprašome, n?ra galimyb?s prisijungti prie serverio.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton versija {0} - Daugiau informacijos tinklalapyje http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton versija {0} - Daugiau informacijos tinklalapyje http://www.bigbluebutton.org/.
|
||||
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.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Pakelti rank?.
|
||||
bbb.viewers.presentBtn.label =
|
||||
bbb.viewers.kickUserBtn.toolTip = Išjungti bals?
|
||||
bbb.presentation.title = Prezentacija
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = ?kelti dokument? prezentacijai.
|
||||
bbb.presentation.uploadPresBtn.toolTip = ?kelti dokument? prezentacijai.
|
||||
bbb.presentation.backBtn.toolTip = Buv?s puslapis.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Pievienojas serverim
|
||||
bbb.mainshell.statusProgress.loading = IelÄdÄ“ {0} moduļus
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Atvainojiet, pieslÄ“gties serverim neizdevÄs.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Atvērt logus
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = AtiestatÄ«t izkÄrtojumu
|
||||
bbb.oldlocalewindow.reminder1 = Iespējams, ka tulkojums ir novecojis.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Spiest lai paceltu roku.
|
||||
bbb.viewers.presentBtn.label = PÄrslÄ“gt demonstrÄ“tÄju
|
||||
bbb.viewers.kickUserBtn.toolTip = Izsviest lietotÄju
|
||||
bbb.presentation.title = PrezentÄcija
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = AugÅ¡upielÄdÄ“t prezentÄciju.
|
||||
bbb.presentation.uploadPresBtn.toolTip = AugÅ¡upielÄdÄ“t prezentÄciju.
|
||||
bbb.presentation.backBtn.toolTip = Iepriekšējais slaids.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,5 +1,5 @@
|
||||
bbb.pageTitle = ТомЦэнхэрТовчлуур
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Сервер луу холбогдож байна.
|
||||
bbb.mainshell.statusProgress.loading = Нийт {0} Модуль байна
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Уучилаарай, бид сервер лүү холбогдож чадсангүй
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Энд дараад гараа өргөнө
|
||||
bbb.viewers.presentBtn.label = Танилцуулагчыг солих
|
||||
bbb.viewers.kickUserBtn.toolTip = Хэрэглэгчийг хөөх
|
||||
bbb.presentation.title = Танилцуулга файл
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Танилцуулагчын бичиг баримтыг илгээх
|
||||
bbb.presentation.uploadPresBtn.toolTip = Танилцуулагчын бичиг баримтыг илгээх
|
||||
bbb.presentation.backBtn.toolTip = Өмнөх хуудас
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Ямар нэгэн дуусгаагүй төлөв ил
|
||||
bbb.settings.instructions = Флаш таниас камерийг чинь бусдад тараах зөвшөөрөл авах цонх гарч ирнэ. Хэрвээ та өөрийнхөө камерийг харж, өөрийгөө сонсож болж байвал зүгээр байна гэсэн үг. Бусад ямар нэгэн алдаа байвал хайж олно уу
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip =
|
||||
bbb.viewers.presentBtn.label =
|
||||
bbb.viewers.kickUserBtn.toolTip =
|
||||
bbb.presentation.title =
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn =
|
||||
bbb.presentation.uploadPresBtn.toolTip =
|
||||
bbb.presentation.backBtn.toolTip =
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Verbinding aan het maken met de server
|
||||
bbb.mainshell.statusProgress.loading = Laden:
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = We kunnen geen verbinding maken met de server.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton versie {0} - Voor meer informatie ga naar http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton versie {0} - Voor meer informatie ga naar http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Open log scherm
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Herstel de scherm-indeling
|
||||
bbb.oldlocalewindow.reminder1 = U hebt misschien een verouderde vertaling van bigbluebutton.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klik om uw hand op te steken.
|
||||
bbb.viewers.presentBtn.label = Wijzig voorzitter
|
||||
bbb.viewers.kickUserBtn.toolTip = Klik om deze gebruiker uit de kamer te verwijderen
|
||||
bbb.presentation.title = Presentatie
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Verzend een document om te presenteren.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Verzend een document om te presenteren.
|
||||
bbb.presentation.backBtn.toolTip = Vorige pagina.
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = Selecteer een persoon om een privé chat mee te sta
|
||||
bbb.chat.chatOptions = Chat opties
|
||||
bbb.chat.fontSize = Tekst grootte
|
||||
bbb.listeners.title = Geluid deelnemers
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = Klik om te praten
|
||||
bbb.listeners.pushToMute.toolTip = Klik om je microfoon te dempen
|
||||
bbb.listeners.talk = Praat
|
||||
bbb.listeners.mute = Demp
|
||||
bbb.listeners.muteAllBtn.toolTip = Demp ieders stem
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Zet ieders stem aan
|
||||
bbb.listeners.ejectTooltip = Klik om deze gebruiker uit de kamer te verwijderen
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Sluit
|
||||
bbb.video.keepAspectBtn.tooltip = Behoud scherm verhoudingen
|
||||
bbb.video.fitVideoBtn.tooltip = Maak video passend
|
||||
bbb.video.originalSizeBtn.tooltip = Originele grootte
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Geen camera beschikbaar
|
||||
bbb.video.publish.hint.cantOpenCamera = Kan de camera niet openen
|
||||
bbb.video.publish.hint.waitingApproval = Wachtend op toestemming
|
||||
bbb.video.publish.hint.videoPreview = Video preview
|
||||
bbb.video.publish.hint.openingCamera = Camera aan het openen...
|
||||
bbb.video.publish.hint.cameraDenied = Camera toegang ontzegd
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Je camera wordt momenteel door een andere toepassing gebruikt
|
||||
bbb.video.publish.hint.publishing = Publiceren...
|
||||
bbb.desktopPublish.title = Desktop delen: voorbeeld voor voorzitter
|
||||
bbb.desktopPublish.fullscreen.tooltip = Deel gans uw scherm
|
||||
bbb.desktopPublish.fullscreen.label = Volledig scherm
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Geen openstaande problemen werden ontdekt.
|
||||
bbb.settings.instructions = Ga akkoord met de flash pop-up die je naar camera permissies vraagt. Als je jezelf kan zien en horen is je browser correct afgesteld. Andere mogelijke oorzaken worden onderaan weergegeven. Klik op iedere mogelijke oorzaak om een oplossing te vinden.
|
||||
bbb.videodock.title = videoschermen rangschikken
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Kobler opp til serveren
|
||||
bbb.mainshell.statusProgress.loading = Laster {0} moduler
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Beklager, vi kan ikke koble til serveren
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - Mer informasjon finnes hos http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - Mer informasjon finnes hos http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Åpne loggvindu
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Nullstill oppsett
|
||||
bbb.oldlocalewindow.reminder1 = Du har kanskje en gammel språkfil
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klikk for håndsopprekking
|
||||
bbb.viewers.presentBtn.label = Velg ny presenterer
|
||||
bbb.viewers.kickUserBtn.toolTip = Send ut bruker
|
||||
bbb.presentation.title = Presentasjon
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Last opp dokument til presentasjon.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Last opp dokument til presentasjon.
|
||||
bbb.presentation.backBtn.toolTip = Forrige lysark.
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Lukk
|
||||
bbb.video.keepAspectBtn.tooltip = Behold størrelsesforhold
|
||||
bbb.video.fitVideoBtn.tooltip = Tilpass video
|
||||
bbb.video.originalSizeBtn.tooltip = Original størrelse
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Kamera er ikke tilgjengelig
|
||||
bbb.video.publish.hint.cantOpenCamera = Kan ikke starte kamera
|
||||
bbb.video.publish.hint.waitingApproval = Venter på godkjenning
|
||||
bbb.video.publish.hint.videoPreview = Video forhåndsvisning
|
||||
bbb.video.publish.hint.openingCamera = Starter kamera...
|
||||
bbb.video.publish.hint.cameraDenied = Kamera tilgang avvist
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Kameraet er i bruk av en annen applikasjon
|
||||
bbb.video.publish.hint.publishing = Publiserer...
|
||||
bbb.desktopPublish.title = Skrivebordsdeling: Presenterers forhåndsvisning
|
||||
bbb.desktopPublish.fullscreen.tooltip = Del ut hele skjermen
|
||||
bbb.desktopPublish.fullscreen.label = Hele skjermen
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Ingen alvorlige feil er oppdaget.
|
||||
bbb.settings.instructions = Tillat at Flash vil bruke ditt kamera. Hvis du kan se og høre deg selv er din nettleser satt opp korrekt. Nedenfor er det vist noen feilsituasjoner som kan undersøkes.
|
||||
bbb.videodock.title = Video dokk
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Łączenie z serwerem
|
||||
bbb.mainshell.statusProgress.loading = Proszę czekać, ładowanie {0} modułów w toku:
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Przepraszamy, brak możliwości podłączenia do serwera.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - Więcej informacji pod adresem http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - Więcej informacji pod adresem http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Otwórz okno dziennika
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Resetuj układ
|
||||
bbb.oldlocalewindow.reminder1 = Możliwe, iż masz stare tłumaczenie dla BigBlueButton.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Kliknij, aby podnieść rękę.
|
||||
bbb.viewers.presentBtn.label = Ustaw prezentera
|
||||
bbb.viewers.kickUserBtn.toolTip = Usuń użytkownika
|
||||
bbb.presentation.title = Prezentacja
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Wgraj dokument do prezentacji.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Wgraj dokument do prezentacji.
|
||||
bbb.presentation.backBtn.toolTip = Poprzedni slajd.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Nie znaleziono żadnych problemów.
|
||||
bbb.settings.instructions = Zaakceptuj dostęp aplikacji Flash do twojej kamery. Jeśli widzisz i słyszysz siebie, oznacza to że twoja przeglądarka została skonfigurowana poprawnie. W innym wypadku sprawdź listę potencjalnych problemów, które są przedstawione poniżej. Kliknij na znalezione możliwości rozwiązań aby zobaczyć szczegóły.
|
||||
bbb.videodock.title = Dokowanie wideo
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Conectando no servidor
|
||||
bbb.mainshell.statusProgress.loading = Carregando {0} módulos
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Desculpe, não foi possível conectar no servidor.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton compilação {0} - Para mais informações, acesse http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton compilação {0} - Para mais informações, acesse http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Abrir Janela de Registro
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Restaurar layout
|
||||
bbb.oldlocalewindow.reminder1 = Você pode ter uma tradução antiga do idioma do BigBlueButton.
|
||||
@ -13,7 +13,7 @@ bbb.micSettings.playSound = Reproduzir Som de Teste
|
||||
bbb.micSettings.hearFromHeadset = Você deve ouvir o áudio no seu fone de ouvido, não nos alto-falantes do seu computador.
|
||||
bbb.micSettings.speakIntoMic = Você deve ver a barra se mover enquanto você fala no seu microfone.
|
||||
bbb.micSettings.changeMic = Modificar Microfone
|
||||
bbb.micSettings.join = Juntar Áudio
|
||||
bbb.micSettings.join = Iniciar Áudio
|
||||
bbb.micSettings.cancel = Cancelar
|
||||
bbb.mainToolbar.helpBtn = Ajuda
|
||||
bbb.mainToolbar.logoutBtn = Sair
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Clique aqui para levantar a mão e pedir a pa
|
||||
bbb.viewers.presentBtn.label = Mudar Apresentador
|
||||
bbb.viewers.kickUserBtn.toolTip = Expulsar usuário.
|
||||
bbb.presentation.title = Apresentação
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Enviar um documento para apresentação.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Enviar um documento para apresentação.
|
||||
bbb.presentation.backBtn.toolTip = Slide anterior.
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Fechar
|
||||
bbb.video.keepAspectBtn.tooltip = Manter aspecto da janela
|
||||
bbb.video.fitVideoBtn.tooltip = Ajustar vídeo
|
||||
bbb.video.originalSizeBtn.tooltip = Tamanho original
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Nenhuma câmera disponível
|
||||
bbb.video.publish.hint.cantOpenCamera = Não foi possível abrir a câmera
|
||||
bbb.video.publish.hint.waitingApproval = Aguardando aprovação
|
||||
bbb.video.publish.hint.videoPreview = Preview do vídeo
|
||||
bbb.video.publish.hint.openingCamera = Abrindo câmera...
|
||||
bbb.video.publish.hint.cameraDenied = Acesso à câmera negado
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Sua câmera está sendo usada por outro aplicativo
|
||||
bbb.video.publish.hint.publishing = Enviando vídeo...
|
||||
bbb.desktopPublish.title = Compartilhando Destop: Visualização da Apresentação
|
||||
bbb.desktopPublish.fullscreen.tooltip = Compartilhar tela inteira
|
||||
bbb.desktopPublish.fullscreen.label = Tela Cheia
|
||||
@ -146,7 +148,7 @@ bbb.logout.connectionfailed = A conexão com o servidor falhou
|
||||
bbb.logout.rejected = A conexão com o servidor foi rejeitada
|
||||
bbb.logout.invalidapp = O aplicativo red5 não existe
|
||||
bbb.logout.unknown = Seu cliente perdeu conexão com o servidor
|
||||
bbb.logout.usercommand = Você saíu da conferência
|
||||
bbb.logout.usercommand = Você saiu da conferência
|
||||
bbb.settings.deskshare.instructions = Clique em Permitir na janela que será aberta para sinalizar que o compartilhamento da área de trabalho está funcionando corretamente para você
|
||||
bbb.settings.deskshare.start = Checar Compartilhamento Da Área De Trabalho
|
||||
bbb.settings.voice.volume = Atividade Do Microfone
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Nenhum problema perceptível foi detectado.
|
||||
bbb.settings.instructions = Aceite a notificação do Flash quando ele pedir permissão para compatilhar sua câmera. Se você pode ver e ouvir a si mesmo, seu navegador foi configurado corretamente. Outros erros em potencial estão indicados abaixo. Clique em cada um para uma possível solução.
|
||||
bbb.videodock.title = Limitar vídeo
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Ligando ao Servidor
|
||||
bbb.mainshell.statusProgress.loading = Carregando {0} modulos
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Desculpe, não foi possível estabelecer ligação ao servidor.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2009, BigBlueButton versão {0} - Para mais informações, veja http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton versão {0} - Para mais informações, veja http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Abrir janela de registo
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Restaurar layout
|
||||
bbb.oldlocalewindow.reminder1 = You may have an old language translations of BigBlueButton.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Clique aqui para levantar a mão
|
||||
bbb.viewers.presentBtn.label = Trocar Apresentador
|
||||
bbb.viewers.kickUserBtn.toolTip = Clique aqui para expulsar utilizador.
|
||||
bbb.presentation.title = Apresentação
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Enviar um documento para apresentação.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Enviar um documento para apresentação.
|
||||
bbb.presentation.backBtn.toolTip = Slide anterior.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Se conectează la server
|
||||
bbb.mainshell.statusProgress.loading = Încărcare:
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Nu s-a putut realiza conexiunea cu serverul.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton versiunea {0} - Pentru mai multe informaţii, accesaţi http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton versiunea {0} - Pentru mai multe informaţii, accesaţi http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Afişaţi Jurnalul
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Reiniţializare Pagină
|
||||
bbb.oldlocalewindow.reminder1 = S-ar putea să aveţi traduceri vechi a BigBlueButton
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Cereţi cuvântul.
|
||||
bbb.viewers.presentBtn.label = Schimbă Prezentatorul
|
||||
bbb.viewers.kickUserBtn.toolTip = Daţi clic pentru a exclude participantul.
|
||||
bbb.presentation.title = Prezentare
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Încărcaţi un document în prezentare.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Încărcaţi un document în prezentare.
|
||||
bbb.presentation.backBtn.toolTip = Slide-ul anterior.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = N-au fost identificate probleme deosebite.
|
||||
bbb.settings.instructions = Acceptați cererea de acces la camera video facută de Flash. Dacă vă puteți vedea și auzi, browserul dvs. a fost setat curect. Alte probleme probabile sunt afișate dedesubt. Faceți click pe fiecare pentru a găsi o posibilă soluție.
|
||||
bbb.videodock.title = Andocare video
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,19 +1,19 @@
|
||||
bbb.pageTitle = Конференции BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Идёт подключение к серверу
|
||||
bbb.mainshell.statusProgress.loading = Идёт загрузка {0} модулей
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = К сожалению, мы не можем подключиться к серверу.
|
||||
bbb.mainshell.copyrightLabel2 = © 2011, BigBlueButton, версия {0}, дополнительная информация на сайте: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = © 2012, BigBlueButton, версия {0}, дополнительная информация на сайте: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Открыть окно журнала
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Сбросить расположение окон
|
||||
bbb.oldlocalewindow.reminder1 = Возможно, у вас устаревшая версия перевода BigBlueButton.
|
||||
bbb.oldlocalewindow.reminder2 = Очистите кэш браузера и попробуйте снова.
|
||||
bbb.oldlocalewindow.windowTitle = Внимание: устаревшая версия перевода.
|
||||
bbb.micSettings.playSound = Воспроизвести тестовый звук
|
||||
bbb.micSettings.hearFromHeadset = Вы должны услышать звук в гарнитуре, а не с динамиков компьютера.
|
||||
bbb.micSettings.speakIntoMic = Вы должны увидеть, что деления двигаются, когда Вы говорите в гарнитуру
|
||||
bbb.micSettings.hearFromHeadset = Вы должны услышать звук в гарнитуре, а не из динамиков компьютера.
|
||||
bbb.micSettings.speakIntoMic = Вы должны увидеть колебания индикатора микрофона, когда начнете говорить
|
||||
bbb.micSettings.changeMic = Сменить микрофон
|
||||
bbb.micSettings.join = Регистрация в аудио трансляции
|
||||
bbb.micSettings.join = Присоединиться к аудио конференции
|
||||
bbb.micSettings.cancel = Отменить
|
||||
bbb.mainToolbar.helpBtn = Помощь
|
||||
bbb.mainToolbar.logoutBtn = Выйти
|
||||
@ -25,7 +25,7 @@ bbb.viewers.viewersGrid.nameItemRenderer = Имя
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Вы вошли под этим именем.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Роль
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Статус
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = {0} просит слова.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Рука поднята в: {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Щелкните для просмотра
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Ведущий
|
||||
bbb.viewers.presentBtn.toolTip = Выберите участника, чтобы сделать его ведущим.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Попросить слова
|
||||
bbb.viewers.presentBtn.label = Переключить ведущего
|
||||
bbb.viewers.kickUserBtn.toolTip = Исключить из конференции
|
||||
bbb.presentation.title = Презентация
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Загрузить документ для показа.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Загрузить документ для показа.
|
||||
bbb.presentation.backBtn.toolTip = Предыдущий слайд.
|
||||
@ -88,8 +90,8 @@ bbb.chat.privateChatSelect = Выберите пользователя для о
|
||||
bbb.chat.chatOptions = Настройка чата
|
||||
bbb.chat.fontSize = Размер шрифта
|
||||
bbb.listeners.title = Аудиоконференция: {0} участников
|
||||
bbb.listeners.pushToTalk.toolTip = Нажмите для заговора
|
||||
bbb.listeners.pushToMute.toolTip = Нажмите для отключения себе микрофона
|
||||
bbb.listeners.pushToTalk.toolTip = Нажмите для разговора
|
||||
bbb.listeners.pushToMute.toolTip = Нажмите для отключения своего микрофона
|
||||
bbb.listeners.talk = Разговор
|
||||
bbb.listeners.mute = Отключить микрофон
|
||||
bbb.listeners.muteAllBtn.toolTip = Отключить все микрофоны
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Закрыть
|
||||
bbb.video.keepAspectBtn.tooltip = Сохранить соотношение окна
|
||||
bbb.video.fitVideoBtn.tooltip = Подогнать размер видео
|
||||
bbb.video.originalSizeBtn.tooltip = Оригинальный размер
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Камера не доступна
|
||||
bbb.video.publish.hint.cantOpenCamera = Невозможно открыть камеру
|
||||
bbb.video.publish.hint.waitingApproval = Ожидаем подтверждения
|
||||
bbb.video.publish.hint.videoPreview = Предварительный просмотр видео
|
||||
bbb.video.publish.hint.openingCamera = Запуск камеры...
|
||||
bbb.video.publish.hint.cameraDenied = Доступ к камере запрещен
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Ваша камера используется другим приложением
|
||||
bbb.video.publish.hint.publishing = Публикация...
|
||||
bbb.desktopPublish.title = Трансляция рабочего стола
|
||||
bbb.desktopPublish.fullscreen.tooltip = Транслировать весь экран
|
||||
bbb.desktopPublish.fullscreen.label = Полноэкранный режим
|
||||
@ -147,12 +149,12 @@ bbb.logout.rejected = Отказано в соединении с серверо
|
||||
bbb.logout.invalidapp = Приложение red5 не найдено
|
||||
bbb.logout.unknown = Соединение с сервером потеряно
|
||||
bbb.logout.usercommand = Вы вышли из конференции
|
||||
bbb.settings.deskshare.instructions = Нажмите кнопку Разрешить на всплывающий запрос, что бы проверить, что у Вас трансляция рабочего стола работает корректно
|
||||
bbb.settings.deskshare.instructions = Нажмите кнопку Разрешить, когда появится диалоговое окно, чтобы удостовериться, что трансляция рабочего стола работает корректно
|
||||
bbb.settings.deskshare.start = Проверить трансляцию рабочего стола
|
||||
bbb.settings.voice.volume = Активность микрофона
|
||||
bbb.settings.voice.adjust = Настроить звук
|
||||
bbb.settings.voice.adjust = Настроить громкость
|
||||
bbb.settings.java.label = Ошибка в версии Java
|
||||
bbb.settings.java.text = Для корректной работы BigBlueButton необходима версия {1} Java (у вас установлена версия {0}). Обновите Flash Player.
|
||||
bbb.settings.java.text = Для корректной работы BigBlueButton необходима версия {1} Java (у вас установлена версия {0}). Обновите версию Java JRE
|
||||
bbb.settings.java.command = Обновить Java
|
||||
bbb.settings.flash.label = Ошибка версии Flash
|
||||
bbb.settings.flash.text = Для корректной работы BigBlueButton необходима версия {1} Flash (у вас установлена версия {0}). Обновите Flash Player.
|
||||
@ -163,6 +165,7 @@ bbb.settings.isight.command = Установить Flash 10.2 RC2
|
||||
bbb.settings.warning.label = Предупреждение
|
||||
bbb.settings.warning.close = Закрыть это предупреждение
|
||||
bbb.settings.noissues = Ошибок не найдено
|
||||
bbb.settings.instructions = Разрешите Flash Player обращение к камере. Если вы видите и слышите себя, то ваш браузер настроен корректно. Другие возможные ошибки и их решения приведены ниже.
|
||||
bbb.videodock.title = Видео Док
|
||||
bbb.settings.instructions = Разрешите Flash Player обращаться к камере. Если вы видите и слышите себя, то ваш браузер настроен корректно. Другие возможные ошибки и их решения приведены ниже. Нажмите на каждую из них, чтобы выявить возможное решение.
|
||||
bbb.videodock.title = Видеотрансляции
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
171
bigbluebutton-client/locale/si_LK/bbbResources.properties
Normal file
171
bigbluebutton-client/locale/si_LK/bbbResources.properties
Normal file
@ -0,0 +1,171 @@
|
||||
bbb.pageTitle =
|
||||
bbb.mainshell.locale.version =
|
||||
bbb.mainshell.statusProgress.connecting =
|
||||
bbb.mainshell.statusProgress.loading =
|
||||
bbb.mainshell.statusProgress.cannotConnectServer =
|
||||
bbb.mainshell.copyrightLabel2 =
|
||||
bbb.mainshell.logBtn.toolTip =
|
||||
bbb.mainshell.resetLayoutBtn.toolTip =
|
||||
bbb.oldlocalewindow.reminder1 =
|
||||
bbb.oldlocalewindow.reminder2 =
|
||||
bbb.oldlocalewindow.windowTitle =
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.cancel =
|
||||
bbb.mainToolbar.helpBtn =
|
||||
bbb.mainToolbar.logoutBtn =
|
||||
bbb.mainToolbar.logoutBtn.toolTip =
|
||||
bbb.mainToolbar.settingsBtn =
|
||||
bbb.mainToolbar.settingsBtn.toolTip =
|
||||
bbb.viewers.title =
|
||||
bbb.viewers.viewersGrid.nameItemRenderer =
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip =
|
||||
bbb.viewers.viewersGrid.roleItemRenderer =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip =
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip =
|
||||
bbb.viewers.presentBtn.toolTip =
|
||||
bbb.viewers.raiseHandBtn.toolTip =
|
||||
bbb.viewers.presentBtn.label =
|
||||
bbb.viewers.kickUserBtn.toolTip =
|
||||
bbb.presentation.title =
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn =
|
||||
bbb.presentation.uploadPresBtn.toolTip =
|
||||
bbb.presentation.backBtn.toolTip =
|
||||
bbb.presentation.slideNumLbl.toolTip =
|
||||
bbb.presentation.forwardBtn.toolTip =
|
||||
bbb.presentation.resetZoomBtn.toolTip =
|
||||
bbb.presentation.presenterNameLbl =
|
||||
bbb.presentation.clickToUpload =
|
||||
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 =
|
||||
bbb.presentation.error.security =
|
||||
bbb.presentation.error.convert.format =
|
||||
bbb.presentation.error.convert.notsupported =
|
||||
bbb.presentation.error.convert.nbpage =
|
||||
bbb.presentation.error.convert.maxnbpagereach =
|
||||
bbb.presentation.error.convert.swf =
|
||||
bbb.presentation.converted =
|
||||
bbb.presentation.ok =
|
||||
bbb.presentation.uploadwindow.presentationfile =
|
||||
bbb.presentation.uploadwindow.pdf =
|
||||
bbb.presentation.uploadwindow.word =
|
||||
bbb.presentation.uploadwindow.excel =
|
||||
bbb.presentation.uploadwindow.powerpoint =
|
||||
bbb.presentation.uploadwindow.image =
|
||||
bbb.presentation.uploadwindow.closeLabel =
|
||||
bbb.fileupload.title =
|
||||
bbb.fileupload.fileLbl =
|
||||
bbb.fileupload.selectBtn.toolTip =
|
||||
bbb.fileupload.uploadBtn =
|
||||
bbb.fileupload.uploadBtn.toolTip =
|
||||
bbb.fileupload.presentationNamesLbl =
|
||||
bbb.fileupload.deleteBtn.toolTip =
|
||||
bbb.fileupload.showBtn =
|
||||
bbb.fileupload.showBtn.toolTip =
|
||||
bbb.fileupload.okCancelBtn =
|
||||
bbb.fileupload.genThumbText =
|
||||
bbb.fileupload.progBarLbl =
|
||||
bbb.chat.title =
|
||||
bbb.chat.cmpColorPicker.toolTip =
|
||||
bbb.chat.sendBtn =
|
||||
bbb.chat.sendBtn.toolTip =
|
||||
bbb.chat.publicChatUsername =
|
||||
bbb.chat.publicMsgAwaiting =
|
||||
bbb.chat.publicMsgAwaiting2 =
|
||||
bbb.chat.privateMsgAwaiting =
|
||||
bbb.chat.privateMsgAwaiting2 =
|
||||
bbb.chat.privateChatSelect =
|
||||
bbb.chat.chatOptions =
|
||||
bbb.chat.fontSize =
|
||||
bbb.listeners.title =
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.muteAllBtn.toolTip =
|
||||
bbb.listeners.unmuteAllBtn.toolTip =
|
||||
bbb.listeners.ejectTooltip =
|
||||
bbb.listenerItem.nameLbl.toolTip =
|
||||
bbb.listenerItem.talkImg.toolTip =
|
||||
bbb.listenerItem.lockImg.toolTip =
|
||||
bbb.listenerItem.muteUnmute.toolTip =
|
||||
bbb.publishVideo.title =
|
||||
bbb.publishVideo.startPublishBtn.toolTip =
|
||||
bbb.video.publish.close.tooltip =
|
||||
bbb.video.publish.close.label =
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.desktopPublish.title =
|
||||
bbb.desktopPublish.fullscreen.tooltip =
|
||||
bbb.desktopPublish.fullscreen.label =
|
||||
bbb.desktopPublish.region.tooltip =
|
||||
bbb.desktopPublish.region.label =
|
||||
bbb.desktopPublish.stop.tooltip =
|
||||
bbb.desktopPublish.stop.label =
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip =
|
||||
bbb.desktopPublish.closeBtn.toolTip =
|
||||
bbb.desktopPublish.minimizeBtn.toolTip =
|
||||
bbb.desktopView.title =
|
||||
bbb.desktopView.fitToWindow =
|
||||
bbb.desktopView.actualSize =
|
||||
bbb.toolbar.phone.toolTip =
|
||||
bbb.toolbar.deskshare.toolTip =
|
||||
bbb.toolbar.video.toolTip =
|
||||
bbb.highlighter.toolbar.pencil =
|
||||
bbb.highlighter.toolbar.ellipse =
|
||||
bbb.highlighter.toolbar.rectangle =
|
||||
bbb.highlighter.toolbar.clear =
|
||||
bbb.highlighter.toolbar.undo =
|
||||
bbb.highlighter.toolbar.color =
|
||||
bbb.highlighter.toolbar.thickness =
|
||||
bbb.highlighter.button.toolTipShow =
|
||||
bbb.highlighter.button.toolTipHide =
|
||||
bbb.logout.appshutdown =
|
||||
bbb.logout.asyncerror =
|
||||
bbb.logout.connectionclosed =
|
||||
bbb.logout.connectionfailed =
|
||||
bbb.logout.rejected =
|
||||
bbb.logout.invalidapp =
|
||||
bbb.logout.unknown =
|
||||
bbb.logout.usercommand =
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.start =
|
||||
bbb.settings.voice.volume =
|
||||
bbb.settings.voice.adjust =
|
||||
bbb.settings.java.label =
|
||||
bbb.settings.java.text =
|
||||
bbb.settings.java.command =
|
||||
bbb.settings.flash.label =
|
||||
bbb.settings.flash.text =
|
||||
bbb.settings.flash.command =
|
||||
bbb.settings.isight.label =
|
||||
bbb.settings.isight.text =
|
||||
bbb.settings.isight.command =
|
||||
bbb.settings.warning.label =
|
||||
bbb.settings.warning.close =
|
||||
bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
171
bigbluebutton-client/locale/sk_SK/bbbResources.properties
Normal file
171
bigbluebutton-client/locale/sk_SK/bbbResources.properties
Normal file
@ -0,0 +1,171 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Pripája sa ku serveru
|
||||
bbb.mainshell.statusProgress.loading = Nahráva {0} modulov
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Ľutujeme, nepodarilo sa pripojiť k serveru.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton revízia {0} - Pre viac informácii navštívte http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Otvoriť okno záznamov
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Resetovať rozmiestnenie
|
||||
bbb.oldlocalewindow.reminder1 = Je možné že máte starý preklad BigBlueButton-u.
|
||||
bbb.oldlocalewindow.reminder2 = Vyčistite vyrovnávaciu pamäť vášho prehliadača a skúste znova.
|
||||
bbb.oldlocalewindow.windowTitle = Upozornenie: Starý preklad
|
||||
bbb.micSettings.playSound = Prehrať testovací zvuk
|
||||
bbb.micSettings.hearFromHeadset = Odporúčame prehrať audio nahrávky na vašich slúchadlách, nie reproduktoroch.
|
||||
bbb.micSettings.speakIntoMic = Mali by ste vidieť pohyb ukazovateľa, keď hovoríte do mikrofónu.
|
||||
bbb.micSettings.changeMic = Vymeniť mikrofón.
|
||||
bbb.micSettings.join = Pripojiť zvuk.
|
||||
bbb.micSettings.cancel = Zrušiť
|
||||
bbb.mainToolbar.helpBtn = Nápoveda
|
||||
bbb.mainToolbar.logoutBtn = Odhlásiť
|
||||
bbb.mainToolbar.logoutBtn.toolTip = Odhláste sa
|
||||
bbb.mainToolbar.settingsBtn = Nastavenia
|
||||
bbb.mainToolbar.settingsBtn.toolTip = Otvoriť nastavenia
|
||||
bbb.viewers.title = Užívatelia{0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = Meno
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Prihlásili ste sa ako tento užívateľ.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Pozícia
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Stav
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Zdvihnutá ruka pre {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Kliknite pre zobrazenie.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Moderátor
|
||||
bbb.viewers.presentBtn.toolTip = Označte webového účastníka, ktorý ma byť Moderátor.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Kliknite pre Zdvihnutie ruky.
|
||||
bbb.viewers.presentBtn.label = Vymeniť Moderátora.
|
||||
bbb.viewers.kickUserBtn.toolTip = Vyhodiť užívateľa
|
||||
bbb.presentation.title = Prezentácia
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Nahrať dokument pre prezetáciu.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Tu môžete nahrať dokument, ktorý chcete pripojiť ku prezentácii.
|
||||
bbb.presentation.backBtn.toolTip = Predchádzajúca roleta.
|
||||
bbb.presentation.slideNumLbl.toolTip = Kliknite pre zvolenie rolety.
|
||||
bbb.presentation.forwardBtn.toolTip = Ďalšia roleta.
|
||||
bbb.presentation.resetZoomBtn.toolTip = Resetovať priblíženie.
|
||||
bbb.presentation.presenterNameLbl = {0} momentálne prezentuje.
|
||||
bbb.presentation.clickToUpload = Nahrať prezentáciu.
|
||||
bbb.presentation.maxUploadFileExceededAlert = Chyba: Súbor presahuje povolenú veľkosť.
|
||||
bbb.presentation.uploadcomplete = Nahrávanie dokončené. Prosím čakajte prebieha konvertovanie dokumentu.
|
||||
bbb.presentation.uploaded = nahrané.
|
||||
bbb.presentation.document.supported = Nahratý súbor je podporovaný. Začína sa konvertovať...
|
||||
bbb.presentation.document.converted = Office dokument bol úspešne zkonvertovaný.
|
||||
bbb.presentation.error.document.convert.failed = Chyba: Neúspešné konvertovanie office dokumentu.
|
||||
bbb.presentation.error.io = IO Chyba: Kontaktuje administrátora.
|
||||
bbb.presentation.error.security = Bezpečnostná chyba: Kontaktuje administrátora.
|
||||
bbb.presentation.error.convert.format = Chyba: Skontrolujte či nahrávaný súbor má správnu príponu.
|
||||
bbb.presentation.error.convert.notsupported = Chyba: Nahraný súbor nie je podporovaný. Nahrajte kompaktibilný súbor.
|
||||
bbb.presentation.error.convert.nbpage = Chyba: Nepodarilo sa určiť počet strán v nahranom dokumente.
|
||||
bbb.presentation.error.convert.maxnbpagereach = Chyba: Nahraný súbor ma príliš veľa strán.
|
||||
bbb.presentation.error.convert.swf = Nastala chyba pri konvertovaní nahraného súboru. Kontaktujte administrátora.
|
||||
bbb.presentation.converted = Zkonvertované {0} z {1} roliet.
|
||||
bbb.presentation.ok = OK
|
||||
bbb.presentation.uploadwindow.presentationfile = Prezentačný súbor
|
||||
bbb.presentation.uploadwindow.pdf = PDF
|
||||
bbb.presentation.uploadwindow.word = WORD
|
||||
bbb.presentation.uploadwindow.excel = EXCEL
|
||||
bbb.presentation.uploadwindow.powerpoint = POWERPOINT
|
||||
bbb.presentation.uploadwindow.image = OBRÁZOK
|
||||
bbb.presentation.uploadwindow.closeLabel = Kliknite na OK ak chcete zatvoriť okno.
|
||||
bbb.fileupload.title = Nahrať prezentáciu.
|
||||
bbb.fileupload.fileLbl = Súbor:
|
||||
bbb.fileupload.selectBtn.toolTip = Nájsť súbor
|
||||
bbb.fileupload.uploadBtn = Nahrať
|
||||
bbb.fileupload.uploadBtn.toolTip = Nahrať súbor
|
||||
bbb.fileupload.presentationNamesLbl = Nahrané prezentácie:
|
||||
bbb.fileupload.deleteBtn.toolTip = Odstrániť prezentáciu
|
||||
bbb.fileupload.showBtn = Ukázať
|
||||
bbb.fileupload.showBtn.toolTip = Ukázať prezentáciu
|
||||
bbb.fileupload.okCancelBtn = Zrušiť
|
||||
bbb.fileupload.genThumbText = Vytváranie náhľadu...
|
||||
bbb.fileupload.progBarLbl = Priebeh:
|
||||
bbb.chat.title = Pokec
|
||||
bbb.chat.cmpColorPicker.toolTip = Farba textu
|
||||
bbb.chat.sendBtn = Odoslať
|
||||
bbb.chat.sendBtn.toolTip = Odoslať správu
|
||||
bbb.chat.publicChatUsername = Všetky
|
||||
bbb.chat.publicMsgAwaiting = Čakajúca Verejná správa
|
||||
bbb.chat.publicMsgAwaiting2 = * Čakajúca Verejná správa *
|
||||
bbb.chat.privateMsgAwaiting = Čakajúca Súkromná správa
|
||||
bbb.chat.privateMsgAwaiting2 = * Čakajúca Súkromná správa *
|
||||
bbb.chat.privateChatSelect = Označte osobu s ktorou chcete zaviesť osobný Pokec.
|
||||
bbb.chat.chatOptions = Možnosti Pokecu
|
||||
bbb.chat.fontSize = Veľkosť písma
|
||||
bbb.listeners.title = Poslucháči{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip = Kliknite pre diskusiu
|
||||
bbb.listeners.pushToMute.toolTip = Kliknite pre stlmenie vášho mikrofónu
|
||||
bbb.listeners.talk = Diskutovať
|
||||
bbb.listeners.mute = Stlmiť
|
||||
bbb.listeners.muteAllBtn.toolTip = Stlmiť všetko
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Nahlas všetko
|
||||
bbb.listeners.ejectTooltip = Vykopnúť užívateľa
|
||||
bbb.listenerItem.nameLbl.toolTip = Označte tohto užívateľa a kliknite na tlačidlo pre Stlmiť alebo Nahlas.
|
||||
bbb.listenerItem.talkImg.toolTip = Distkutuje
|
||||
bbb.listenerItem.lockImg.toolTip = Kliknite pre udržanie Stlmiť alebo Nahlas
|
||||
bbb.listenerItem.muteUnmute.toolTip = Stlmiť alebo Pustiť Nahlas tohto užívateľa
|
||||
bbb.publishVideo.title = Zdieľať vašu webkameru
|
||||
bbb.publishVideo.startPublishBtn.toolTip = Začať zdieľanie
|
||||
bbb.video.publish.close.tooltip = Zastaviť zdieľanie vášho videa
|
||||
bbb.video.publish.close.label = Zatvoriť
|
||||
bbb.video.keepAspectBtn.tooltip = Ponechať vzhľad okna
|
||||
bbb.video.fitVideoBtn.tooltip = Prispôsobenie videa
|
||||
bbb.video.originalSizeBtn.tooltip = Originálny rozmer
|
||||
bbb.video.publish.hint.noCamera = Žiadna dostupná kamera
|
||||
bbb.video.publish.hint.cantOpenCamera = Nemôže načítať vašu kameru
|
||||
bbb.video.publish.hint.waitingApproval = Čakajúce na potvrdenie
|
||||
bbb.video.publish.hint.videoPreview = Náhľad videa
|
||||
bbb.video.publish.hint.openingCamera = Načítava kameru
|
||||
bbb.video.publish.hint.cameraDenied = Prístup kamery bol zamietnutý
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Vaša kamera je používaná inou aplikáciou
|
||||
bbb.video.publish.hint.publishing = Zverejňovanie...
|
||||
bbb.desktopPublish.title = Zdieľanie Plochy: Náhľad Moderátora
|
||||
bbb.desktopPublish.fullscreen.tooltip = Zdieľať celú vašu obrazovku
|
||||
bbb.desktopPublish.fullscreen.label = Celá obrazovka
|
||||
bbb.desktopPublish.region.tooltip = Zdieľať časť vašej obrazovky
|
||||
bbb.desktopPublish.region.label = Región
|
||||
bbb.desktopPublish.stop.tooltip = Zavrieť zdieľanie obrazovky
|
||||
bbb.desktopPublish.stop.label = Zavrieť
|
||||
bbb.desktopPublish.maximizeRestoreBtn.toolTip = Nemôžete maximalizovať toto okno.
|
||||
bbb.desktopPublish.closeBtn.toolTip = Zastaviť zdieľanie a zatvoriť toto okno.
|
||||
bbb.desktopPublish.minimizeBtn.toolTip = Minimalizovať toto okno.
|
||||
bbb.desktopView.title = Zdieľanie plochy
|
||||
bbb.desktopView.fitToWindow = Prispôsobiť do okna
|
||||
bbb.desktopView.actualSize = Zobraziť aktuálnu veľkosť
|
||||
bbb.toolbar.phone.toolTip = Zdieľať váš mikrofón
|
||||
bbb.toolbar.deskshare.toolTip = Zdieľať vašu plochu
|
||||
bbb.toolbar.video.toolTip = Zdieľať vašu kameru
|
||||
bbb.highlighter.toolbar.pencil = Zvýrazňovač
|
||||
bbb.highlighter.toolbar.ellipse = Kruh
|
||||
bbb.highlighter.toolbar.rectangle = Obdĺžnik
|
||||
bbb.highlighter.toolbar.clear = Zmazať obsah strany
|
||||
bbb.highlighter.toolbar.undo = Vrátiť tvar
|
||||
bbb.highlighter.toolbar.color = Označiť farbu
|
||||
bbb.highlighter.toolbar.thickness = Zmeniť hrúbku
|
||||
bbb.highlighter.button.toolTipShow = Ukázať tabuľu
|
||||
bbb.highlighter.button.toolTipHide = Skyť tabuľu
|
||||
bbb.logout.appshutdown = Serverová aplikácia bola vypnutá.
|
||||
bbb.logout.asyncerror = Vyskytla sa Async chyba
|
||||
bbb.logout.connectionclosed = Pripojenie k serveru bolo ukončené
|
||||
bbb.logout.connectionfailed = Pripojenie k serveru bolo neúspešné
|
||||
bbb.logout.rejected = Pripojenie k serveru bolo odmietnuté
|
||||
bbb.logout.invalidapp = Nenašla sa žiadna red5 aplikácia
|
||||
bbb.logout.unknown = Váš klient stratil pripojenie so serverom
|
||||
bbb.logout.usercommand = Boli ste odhlásený z konferencie
|
||||
bbb.settings.deskshare.instructions = Kliknite na tlačidlo Povoliť v riadku, ktorý sa objaví pre uistenie, že zdieľanie pracovnej plochy funguje správne pre Vás
|
||||
bbb.settings.deskshare.start = Skontrolovať Zdieľanie plochy
|
||||
bbb.settings.voice.volume = Aktivita mikrofónu
|
||||
bbb.settings.voice.adjust = Prispôsobiť hlasitosť
|
||||
bbb.settings.java.label = Chybná verzia Javy
|
||||
bbb.settings.java.text = Máte nainštalovanú Java {0}, ale potrebujete minimálne verziu {1} aby ste mohli používať funkciu Zdieľanie Plochy v BigBlueButton. Kliknite na tlačítko nižšie pre inštaláciu najnovšej Java JRE verzie.
|
||||
bbb.settings.java.command = Nainštalovať najnovšiu verziu Javy
|
||||
bbb.settings.flash.label = Chybná verzia Flashového prehrávača
|
||||
bbb.settings.flash.text = Máte nainštalovaný Flash prehrávač {0}, ale potrebujete minimálne verziu {1} aby ste prehrať BigBlueButton. Kliknite na tlačítko nižšie pre inštaláciu najnovšieho Adobe Flash prehrávača.
|
||||
bbb.settings.flash.command = Nainštalovať najnovší Flash player
|
||||
bbb.settings.isight.label = Chyba iSight kamery
|
||||
bbb.settings.isight.text = Ak máte problém s vašou iSight camerou, dôvodom môže byť pravdepodobne to, že používate OS X 10.6.5, u ktorého je známe že má problémy s nahrávaním Flash videa z iSight kamery. \nPre napravenie chyby kliknite na odkaz nižšie pre nainštalovanie najnovšej verzie Flash prehrávača alebo aktualizujte váš Mac na najnovšiu verziu.
|
||||
bbb.settings.isight.command = Nainštalovať Flash 10.2 RC2
|
||||
bbb.settings.warning.label = Upozornenie
|
||||
bbb.settings.warning.close = Zavrieť toto upozornenie
|
||||
bbb.settings.noissues = Neboli nájdené žiadne výnimočné problémy\n
|
||||
bbb.settings.instructions = Prijmite výzvu Flash-u, ktorý od vás pýta povolenie prístupu na kameru. Ak môžete vidieť sami seba a počuje sa, tak váš prehliadač je správne nastavený. Iné možné problémy sú uvedené nižšie. Kliknite na každý aby ste našli možné riešenie.
|
||||
bbb.videodock.title = Základňa videa
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Povezujem se s strežnikom
|
||||
bbb.mainshell.statusProgress.loading = Nalaganje {0} modulov
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Oprostite, ne moremo se povezati s strežnikom.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton različica {0} - Za več informacij obiščite http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton različica {0} - Za več informacij obiščite http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Odpri beležno okno
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Ponastavite razporeditev
|
||||
bbb.oldlocalewindow.reminder1 = Mogoče imate stare prevode BigBlueButton-a.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Kliknite za dvig roke.
|
||||
bbb.viewers.presentBtn.label = Zamenjajte moderatorja
|
||||
bbb.viewers.kickUserBtn.toolTip = Kick User
|
||||
bbb.presentation.title = Predstavitev
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Naložite dokument za predstavitev.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Naložite dokument za predstavitev.
|
||||
bbb.presentation.backBtn.toolTip = Prejšnji diapozitiv.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Zasledene ni bilo nobene izjemne težave.
|
||||
bbb.settings.instructions = Accept the Flash prompt that asks you for camera permissions. If you can see yourself and hear yourself, your browser has been set up correctly. Other potentials issues are shown bellow. Click on each to find a possible solution.
|
||||
bbb.videodock.title = Video dock
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Povezuje se sa serverom
|
||||
bbb.mainshell.statusProgress.loading = Podiže {0} modula
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Nažalost nije moguće uspostaviti vezu sa serverom.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, CallPal by BigBlueButton - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton - For more information see http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Otvori log prozor
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Resetuj izgled
|
||||
bbb.oldlocalewindow.reminder1 = Moguće imate staru verziju prevoda.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klikni da dignete ruku.
|
||||
bbb.viewers.presentBtn.label = Promeni prezentatora
|
||||
bbb.viewers.kickUserBtn.toolTip = Izbaci korisnika
|
||||
bbb.presentation.title = Prezentacija
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Prebaci dokument za prezentaciju.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Prebaci dokument za prezentaciju.
|
||||
bbb.presentation.backBtn.toolTip = Prethodni slajd.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Nema pronađenih otvorenih stavki.
|
||||
bbb.settings.instructions = Prihvatite Flash zahtev koji Vas pita za dozvolu korišćenja kamere. Ako možete da vidite i čujete sebe, Vaš pretraživač je podešen kako treba. Druge potencijalne mogućnosti su prikazane dole. Kliknite na svaku da bi našli moguće rešenje.
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Успостављање везу са сервером
|
||||
bbb.mainshell.statusProgress.loading = Покреће {0} компонената
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Извините, не можемо да успоставимо везу са сервером
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton верзија {0} - за више информација погледајте http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton верзија {0} - за више информација погледајте http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Отвори лог прозор
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Ресетуј распоред
|
||||
bbb.oldlocalewindow.reminder1 = Могуће је да имате стари превод BigBlueButton-а.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Притисни да подигнеш рук
|
||||
bbb.viewers.presentBtn.label = Промените предавача
|
||||
bbb.viewers.kickUserBtn.toolTip = Избаците учесника
|
||||
bbb.presentation.title = Презентација
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Пребаци документ за презентацију.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Пребаци документ за презентацију.
|
||||
bbb.presentation.backBtn.toolTip = Претходни слајд
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Нема пронађених предстојећих
|
||||
bbb.settings.instructions = Прихвати Flash захтев који пита за приступ камери. Ако можеш себе да видиш и чујеш, претраживач је исправно подешен. Друге потенцијалне могућности су приказане доле. Кликни на сваку да видиш решење.
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting =
|
||||
bbb.mainshell.statusProgress.loading = H
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Tyv
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton build {0} - bes
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - bes
|
||||
bbb.mainshell.logBtn.toolTip =
|
||||
bbb.mainshell.resetLayoutBtn.toolTip =
|
||||
bbb.oldlocalewindow.reminder1 = Du kan ha en
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Klicka f
|
||||
bbb.viewers.presentBtn.label = Byt presentat
|
||||
bbb.viewers.kickUserBtn.toolTip = Klicka f
|
||||
bbb.presentation.title = Presentation
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Ladda upp ett dokument f
|
||||
bbb.presentation.uploadPresBtn.toolTip = Ladda upp ett dokument f
|
||||
bbb.presentation.backBtn.toolTip = F
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = กำลังเชื่อมต่อเครื่องแม่ข่าย
|
||||
bbb.mainshell.statusProgress.loading = กำลังโหลด {0} โมดูล
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = ขออภัยเราไม่สามารถติดต่อเครื่องแม่ข่ายได้ในขณะนี้
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton build {0} - ข้อมูลเพิ่มเติมไปที่ http://www.bigbluebutton.org
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton build {0} - ข้อมูลเพิ่มเติมไปที่ http://www.bigbluebutton.org
|
||||
bbb.mainshell.logBtn.toolTip = เปิดการทำงาน
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = จัดตั้งเค้าโครงใหม่
|
||||
bbb.oldlocalewindow.reminder1 = คุณอาจจะมีการแปลภาษาเก่าของ BigBlueButton
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = คลิกเพื่อยกมือ
|
||||
bbb.viewers.presentBtn.label = เปลื่ยนผู้นำเสนอ
|
||||
bbb.viewers.kickUserBtn.toolTip = กำจัดผู้ใช้งาน
|
||||
bbb.presentation.title = การนำเสนอ
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = อัปโหลดเอกสารเพื่อการนำเสนอ
|
||||
bbb.presentation.uploadPresBtn.toolTip = อัปโหลดเอกสารเพื่อการนำเสนอ
|
||||
bbb.presentation.backBtn.toolTip = ภาพสไลด์ก่อนหน้านี้
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues =
|
||||
bbb.settings.instructions =
|
||||
bbb.videodock.title =
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Sunucuya bağlanıyor
|
||||
bbb.mainshell.statusProgress.loading = {0} bileşen yükleniyor
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Üzgünüz, sunucuya bağlanamıyoruz.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton sürüm {0} -- Daha fazla bilgi için http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton sürüm {0} -- Daha fazla bilgi için http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Sistem Kayıtlarını Aç
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Yerleşimi sıfırla
|
||||
bbb.oldlocalewindow.reminder1 = BigBlueButton dil çeviriniz eski olabilir.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = El kaldırmak için tıklayın.
|
||||
bbb.viewers.presentBtn.label = Konuşmacıyı Değiştir
|
||||
bbb.viewers.kickUserBtn.toolTip = Kullanıcıyı At
|
||||
bbb.presentation.title = Sunum
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Sunum için bir doküman yükleyin.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Sunum için bir doküman yükleyin.
|
||||
bbb.presentation.backBtn.toolTip = Önceki slayt.
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = Özel görüşme yapacağınız kişiyi seçin
|
||||
bbb.chat.chatOptions = Sohbet Seçenekleri
|
||||
bbb.chat.fontSize = Font Büyüklüğü
|
||||
bbb.listeners.title = Dinleyicler{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = Konuşmak için tıklayın
|
||||
bbb.listeners.pushToMute.toolTip = Kendinizi sessiz yapmak için tıklayın
|
||||
bbb.listeners.talk = Konuşun
|
||||
bbb.listeners.mute = Sessiz yap
|
||||
bbb.listeners.muteAllBtn.toolTip = Tümünü sessiz yap.
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Tümünü sesli yap.
|
||||
bbb.listeners.ejectTooltip = Kullanıcıyı At
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Kapat
|
||||
bbb.video.keepAspectBtn.tooltip = Pencere boyutunu koru
|
||||
bbb.video.fitVideoBtn.tooltip = Video'yu sığdır
|
||||
bbb.video.originalSizeBtn.tooltip = Orjinal boyut
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Kamera bulunamadı
|
||||
bbb.video.publish.hint.cantOpenCamera = Kameranız başlatılamıyor
|
||||
bbb.video.publish.hint.waitingApproval = Onay bekleniyor
|
||||
bbb.video.publish.hint.videoPreview = Video önizleme
|
||||
bbb.video.publish.hint.openingCamera = Kamera başlatılıyor
|
||||
bbb.video.publish.hint.cameraDenied = Kamera erişimi reddedildi
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Kameranız başka bir uygulama tarafından kullanılıyor
|
||||
bbb.video.publish.hint.publishing = Yayınlanıyor
|
||||
bbb.desktopPublish.title = Masaüstü Paylaşımı: Konuşmacı Önizlemesi
|
||||
bbb.desktopPublish.fullscreen.tooltip = Ekranınızın tamamını paylaşın
|
||||
bbb.desktopPublish.fullscreen.label = Tam Ekran
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Çözümlenmemiş soruna rastlanmadı.
|
||||
bbb.settings.instructions = Flash'ın kamera kullanım izni isteğini onaylayın. Eğer kendinizi görebiliyor ve duyabiliyorsanız tarayıcınız düzgün bir şekilde ayarlanmıştır. Diğer potansiyel sorunlar aşağıda sıralanmıştır. Olası çözümleri bulabilmek için her birine tıklayın.
|
||||
bbb.videodock.title = Video havuzu
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = Конференції BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Під'єднуюсь до сервера
|
||||
bbb.mainshell.statusProgress.loading = Завантажується {0} модулів
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Співчуваємо, ми не змогли з'єднатися з сервером.
|
||||
bbb.mainshell.copyrightLabel2 = © 2011, BigBlueButton версія {0}, додаткова інформація на сайті: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = © 2012, BigBlueButton версія {0}, додаткова інформація на сайті: http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Відкрити вікно журналу
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Скинути розташування вікон
|
||||
bbb.oldlocalewindow.reminder1 = Можливо, що у вас застаріла версія перекладу BigBlueButton.
|
||||
@ -13,7 +13,7 @@ bbb.micSettings.playSound = Відтворити тестовий звук
|
||||
bbb.micSettings.hearFromHeadset = Ви маєте чути звук з гарнітури, а не з динаміків комп'ютера.
|
||||
bbb.micSettings.speakIntoMic = Коли ви говорите у мікрофон, то повинні побачити, як рухаються поділки.
|
||||
bbb.micSettings.changeMic = Змінити мікрофон
|
||||
bbb.micSettings.join = Реєстрація в аудіо трансляції
|
||||
bbb.micSettings.join = Приєднатися до аудіо конференції
|
||||
bbb.micSettings.cancel = Скасувати
|
||||
bbb.mainToolbar.helpBtn = Допомога
|
||||
bbb.mainToolbar.logoutBtn = Вийти
|
||||
@ -25,14 +25,16 @@ bbb.viewers.viewersGrid.nameItemRenderer = Ім'я
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = Ви увійшли під цим іменем.
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = Роль
|
||||
bbb.viewers.viewersGrid.statusItemRenderer = Статус
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = {0} просить надати слово.
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.raiseHand.toolTip = Рука піднята в {0}
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.streamIcon.toolTip = Клацніть для перегляду
|
||||
bbb.viewers.viewersGrid.statusItemRenderer.presIcon.toolTip = Ведучий
|
||||
bbb.viewers.presentBtn.toolTip = Призначити учасника ведучим.
|
||||
bbb.viewers.raiseHandBtn.toolTip = Просити надати слово
|
||||
bbb.viewers.raiseHandBtn.toolTip = Просити надати слово.
|
||||
bbb.viewers.presentBtn.label = Перемкнути ведучого
|
||||
bbb.viewers.kickUserBtn.toolTip = Видалити з конференції
|
||||
bbb.presentation.title = Презентація
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Завантажити документ для показу.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Завантажити документ для показу.
|
||||
bbb.presentation.backBtn.toolTip = Попередній слайд.
|
||||
@ -96,7 +98,7 @@ bbb.listeners.muteAllBtn.toolTip = Вимкнути всі мікрофони
|
||||
bbb.listeners.unmuteAllBtn.toolTip = Увімкнути всі мікрофони
|
||||
bbb.listeners.ejectTooltip = Видалити учасника
|
||||
bbb.listenerItem.nameLbl.toolTip = Виберіть цього учасника і клацніть, щоби вимкнути або увімкнути його мікрофон.
|
||||
bbb.listenerItem.talkImg.toolTip = Розмова
|
||||
bbb.listenerItem.talkImg.toolTip = Розмовляє
|
||||
bbb.listenerItem.lockImg.toolTip = Клацніть, щоби залишити вимкненим або увімкненим
|
||||
bbb.listenerItem.muteUnmute.toolTip = Вимкнути/увімкнути мікрофон
|
||||
bbb.publishVideo.title = Розпочати відеотрансляцію
|
||||
@ -106,14 +108,14 @@ bbb.video.publish.close.label = Закрити
|
||||
bbb.video.keepAspectBtn.tooltip = Зберегти розміри вікна
|
||||
bbb.video.fitVideoBtn.tooltip = Підігнати розмір відео
|
||||
bbb.video.originalSizeBtn.tooltip = Оригінальний розмір
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.publish.hint.noCamera = Камера не доступна
|
||||
bbb.video.publish.hint.cantOpenCamera = Неможливо відкрити камеру
|
||||
bbb.video.publish.hint.waitingApproval = Очікуємо затвердження
|
||||
bbb.video.publish.hint.videoPreview = Попередній перегляд відео
|
||||
bbb.video.publish.hint.openingCamera = Відкриття камери...
|
||||
bbb.video.publish.hint.cameraDenied = Доступ до камери заборонений
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = Ваша камера використовується іншою програмою
|
||||
bbb.video.publish.hint.publishing = Публікація...
|
||||
bbb.desktopPublish.title = Трансляція робочего столу: Попердній перегляд
|
||||
bbb.desktopPublish.fullscreen.tooltip = Транслювати весь екран
|
||||
bbb.desktopPublish.fullscreen.label = Повноекранний режим
|
||||
@ -164,5 +166,6 @@ bbb.settings.warning.label = Попередження
|
||||
bbb.settings.warning.close = Закрити це попередження
|
||||
bbb.settings.noissues = Невирішених питань не виявлено.
|
||||
bbb.settings.instructions = Прийняти Flash-запит про надання дозволу веб-камері. Якщо ви бачите і чуєте себе, то це означає, що ваш браузер був правильно налаштований. Інші варіанти наведені нижче. Пошукайте там можливі рішення.
|
||||
bbb.videodock.title = Відео Док
|
||||
bbb.videodock.title = Відеотрансляції
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,9 +1,9 @@
|
||||
bbb.pageTitle = Đào tạo từ xa
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = Kết nối tới máy chủ
|
||||
bbb.mainshell.statusProgress.loading = Đang nạp {0} mô đun
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = Xin lỗi, không thể kết nối tới máy chủ.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2011, BigBlueButton phiên bản {0} - Thông tin chi tiết xem tại http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton phiên bản {0} - Thông tin chi tiết xem tại http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = Mở cửa sổ Nhật ký
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = Đặt lại Bố cục
|
||||
bbb.oldlocalewindow.reminder1 = Có thể bạn đang dùng bản dịch cũ của BigBlueButton.
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = Nhấn để xin phát biểu.
|
||||
bbb.viewers.presentBtn.label = Chuyển người Trình bày
|
||||
bbb.viewers.kickUserBtn.toolTip = Nhấn để mời ra ngoài.
|
||||
bbb.presentation.title = Trình bày
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = Tải lên một tệp tài liệu để trình diễn.
|
||||
bbb.presentation.uploadPresBtn.toolTip = Tải lên một tệp tài liệu để trình diễn.
|
||||
bbb.presentation.backBtn.toolTip = Trang trước.
|
||||
@ -166,3 +168,4 @@ bbb.settings.noissues = Không có vấn đề nào được phát hiện.
|
||||
bbb.settings.instructions = Chấp nhận nhắc nhở của Flash đề nghị quyền truy xuất camera của bạn. Nếu bạn có thể nghe và thấy bản thân bạn qua webcam và micro, trình duyệt của bạn đã cài đặt thành công. Một số vấn đề tiềm tàng khác được trình bày bên dưới. Nhấn vào từng mục để tìm giải pháp phù hợp.
|
||||
bbb.videodock.title = Bám dính Video
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,19 +1,19 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = 正在连接到服务器
|
||||
bbb.mainshell.statusProgress.loading = 载入 {0} 模块
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = 抱歉,无法连接到服务器.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton 版本 {0} - 请登陆官方网站查看详情 http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton 版本 {0} - 请登陆官方网站查看详情 http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = 打开日志
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = 重置布局
|
||||
bbb.oldlocalewindow.reminder1 = 您可能正在使用旧版的BigBlueButton界面翻译.
|
||||
bbb.oldlocalewindow.reminder2 = 请清空浏览器缓存并重试.
|
||||
bbb.oldlocalewindow.windowTitle = 警告: 旧的语言文件!
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.playSound = 测试语音
|
||||
bbb.micSettings.hearFromHeadset = 你应该从你的耳麦听到声音,而不是从电脑的音箱
|
||||
bbb.micSettings.speakIntoMic = 当你对着耳麦讲话时,应该看到音量指标在变动
|
||||
bbb.micSettings.changeMic = 更换麦克风
|
||||
bbb.micSettings.join = 加入语音会议
|
||||
bbb.micSettings.cancel = 取消
|
||||
bbb.mainToolbar.helpBtn = 帮助
|
||||
bbb.mainToolbar.logoutBtn = 退出
|
||||
@ -33,6 +33,8 @@ bbb.viewers.raiseHandBtn.toolTip = 举手
|
||||
bbb.viewers.presentBtn.label = 切换演讲人
|
||||
bbb.viewers.kickUserBtn.toolTip = 踢出用户
|
||||
bbb.presentation.title = 幻灯片演示
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = 上传演示文件
|
||||
bbb.presentation.uploadPresBtn.toolTip = 上传演示文件
|
||||
bbb.presentation.backBtn.toolTip = 上一页
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = 选择私聊对象
|
||||
bbb.chat.chatOptions = 聊天选项
|
||||
bbb.chat.fontSize = 字体大小
|
||||
bbb.listeners.title = 听众{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = 点击讲话
|
||||
bbb.listeners.pushToMute.toolTip = 点击静音
|
||||
bbb.listeners.talk = 讲话
|
||||
bbb.listeners.mute = 静音
|
||||
bbb.listeners.muteAllBtn.toolTip = 全部静音
|
||||
bbb.listeners.unmuteAllBtn.toolTip = 取消静音
|
||||
bbb.listeners.ejectTooltip = 踢出用户
|
||||
@ -103,17 +105,17 @@ bbb.publishVideo.title = 共享视频
|
||||
bbb.publishVideo.startPublishBtn.toolTip = 开始共享视频
|
||||
bbb.video.publish.close.tooltip = 停止共享视频
|
||||
bbb.video.publish.close.label = 关闭
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.keepAspectBtn.tooltip = 保持窗口外观
|
||||
bbb.video.fitVideoBtn.tooltip = 调整视频大小
|
||||
bbb.video.originalSizeBtn.tooltip = 原来大小
|
||||
bbb.video.publish.hint.noCamera = 没有摄像头
|
||||
bbb.video.publish.hint.cantOpenCamera = 打不开摄像头
|
||||
bbb.video.publish.hint.waitingApproval = 等候批准
|
||||
bbb.video.publish.hint.videoPreview = 视频预览
|
||||
bbb.video.publish.hint.openingCamera = 摄像头开启中...
|
||||
bbb.video.publish.hint.cameraDenied = 请求摄像头被拒绝
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = 摄像头已被使用
|
||||
bbb.video.publish.hint.publishing = 发布中...
|
||||
bbb.desktopPublish.title = 桌面共享: 演讲人预览
|
||||
bbb.desktopPublish.fullscreen.tooltip = 全屏共享
|
||||
bbb.desktopPublish.fullscreen.label = 全屏
|
||||
@ -147,7 +149,7 @@ bbb.logout.rejected = 连接被服务器拒绝
|
||||
bbb.logout.invalidapp = Red5应用不存在
|
||||
bbb.logout.unknown = 您已掉线
|
||||
bbb.logout.usercommand = 您已从会议中登出
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.instructions = 在弹出窗口中,点击同意来启动桌面共享程序
|
||||
bbb.settings.deskshare.start = 检查桌面共享
|
||||
bbb.settings.voice.volume = 麦克风状态
|
||||
bbb.settings.voice.adjust = 调整音量
|
||||
@ -158,11 +160,12 @@ 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 =
|
||||
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.videodock.title =
|
||||
bbb.videodock.title = 视频区
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,26 +1,26 @@
|
||||
bbb.pageTitle = BigBlueButton
|
||||
bbb.mainshell.locale.version = 0.8-beta2
|
||||
bbb.mainshell.locale.version = 0.8-beta4
|
||||
bbb.mainshell.statusProgress.connecting = 正在連接到伺服器
|
||||
bbb.mainshell.statusProgress.loading = 載入 {0} 模組
|
||||
bbb.mainshell.statusProgress.cannotConnectServer = 抱歉,無法連接到伺服器.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2010, BigBlueButton 版本 {0} - 請登入官方網站查看詳細資料 http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.copyrightLabel2 = (c) 2012, BigBlueButton 版本 {0} - 請登入官方網站查看詳細資料 http://www.bigbluebutton.org/.
|
||||
bbb.mainshell.logBtn.toolTip = 打開日誌
|
||||
bbb.mainshell.resetLayoutBtn.toolTip = 重新設定版面
|
||||
bbb.oldlocalewindow.reminder1 = 您可能正在使用舊版的BigBlueButton語言翻譯.
|
||||
bbb.oldlocalewindow.reminder2 = 請清除流覽器暫存檔、流覽歷程後再重試.
|
||||
bbb.oldlocalewindow.windowTitle = 警告: 舊版的語言翻譯
|
||||
bbb.micSettings.playSound =
|
||||
bbb.micSettings.hearFromHeadset =
|
||||
bbb.micSettings.speakIntoMic =
|
||||
bbb.micSettings.changeMic =
|
||||
bbb.micSettings.join =
|
||||
bbb.micSettings.playSound = 測試語音
|
||||
bbb.micSettings.hearFromHeadset = 妳應該從妳的耳麥聽到聲音,而不是從電腦的音箱
|
||||
bbb.micSettings.speakIntoMic = 當妳對著耳麥講話時,會看到音量指標在變動
|
||||
bbb.micSettings.changeMic = 更換麥克風
|
||||
bbb.micSettings.join = 加入語音會議
|
||||
bbb.micSettings.cancel = 取消
|
||||
bbb.mainToolbar.helpBtn = 幫助
|
||||
bbb.mainToolbar.logoutBtn = 退出
|
||||
bbb.mainToolbar.logoutBtn.toolTip = 退出
|
||||
bbb.mainToolbar.settingsBtn = 选项
|
||||
bbb.mainToolbar.settingsBtn.toolTip = 开启选项
|
||||
bbb.viewers.title = 網路參與人員
|
||||
bbb.mainToolbar.settingsBtn = 選項
|
||||
bbb.mainToolbar.settingsBtn.toolTip = 開啟選項
|
||||
bbb.viewers.title = 用戶{0} {1}
|
||||
bbb.viewers.viewersGrid.nameItemRenderer = 使用者
|
||||
bbb.viewers.viewersGrid.nameItemRenderer.nameLabel.toolTip = 您以使用者登入
|
||||
bbb.viewers.viewersGrid.roleItemRenderer = 角色
|
||||
@ -33,10 +33,12 @@ bbb.viewers.raiseHandBtn.toolTip = 舉手
|
||||
bbb.viewers.presentBtn.label = 切换主講者
|
||||
bbb.viewers.kickUserBtn.toolTip = 踢出用户
|
||||
bbb.presentation.title = 投影片演示
|
||||
bbb.presentation.fitToWidth.toolTip =
|
||||
bbb.presentation.fitToPage.toolTip =
|
||||
bbb.presentation.uploadPresBtn = 上傳投影片檔案
|
||||
bbb.presentation.uploadPresBtn.toolTip = 上傳投影片檔案
|
||||
bbb.presentation.backBtn.toolTip = 上一頁
|
||||
bbb.presentation.slideNumLbl.toolTip =
|
||||
bbb.presentation.slideNumLbl.toolTip = 選擇壹頁
|
||||
bbb.presentation.forwardBtn.toolTip = 下一張
|
||||
bbb.presentation.resetZoomBtn.toolTip = 重新設定
|
||||
bbb.presentation.presenterNameLbl = 當前主講者為 {0}
|
||||
@ -88,10 +90,10 @@ bbb.chat.privateChatSelect = 選擇私聊對象
|
||||
bbb.chat.chatOptions = 聊天選項
|
||||
bbb.chat.fontSize = 字體大小
|
||||
bbb.listeners.title = 聽眾{0} {1}
|
||||
bbb.listeners.pushToTalk.toolTip =
|
||||
bbb.listeners.pushToMute.toolTip =
|
||||
bbb.listeners.talk =
|
||||
bbb.listeners.mute =
|
||||
bbb.listeners.pushToTalk.toolTip = 點擊講話
|
||||
bbb.listeners.pushToMute.toolTip = 點擊靜音
|
||||
bbb.listeners.talk = 講話
|
||||
bbb.listeners.mute = 靜音
|
||||
bbb.listeners.muteAllBtn.toolTip = 全部靜音
|
||||
bbb.listeners.unmuteAllBtn.toolTip = 取消靜音
|
||||
bbb.listeners.ejectTooltip = 踢出用户
|
||||
@ -103,17 +105,17 @@ bbb.publishVideo.title = 攝影機
|
||||
bbb.publishVideo.startPublishBtn.toolTip = 開始視訊
|
||||
bbb.video.publish.close.tooltip = 停止視訊
|
||||
bbb.video.publish.close.label = 關閉
|
||||
bbb.video.keepAspectBtn.tooltip =
|
||||
bbb.video.fitVideoBtn.tooltip =
|
||||
bbb.video.originalSizeBtn.tooltip =
|
||||
bbb.video.publish.hint.noCamera =
|
||||
bbb.video.publish.hint.cantOpenCamera =
|
||||
bbb.video.publish.hint.waitingApproval =
|
||||
bbb.video.publish.hint.videoPreview =
|
||||
bbb.video.publish.hint.openingCamera =
|
||||
bbb.video.publish.hint.cameraDenied =
|
||||
bbb.video.publish.hint.cameraIsBeingUsed =
|
||||
bbb.video.publish.hint.publishing =
|
||||
bbb.video.keepAspectBtn.tooltip = 保持窗口外貌
|
||||
bbb.video.fitVideoBtn.tooltip = 調整視頻大小
|
||||
bbb.video.originalSizeBtn.tooltip = 原來大小
|
||||
bbb.video.publish.hint.noCamera = 沒有攝像頭
|
||||
bbb.video.publish.hint.cantOpenCamera = 打不開攝像頭
|
||||
bbb.video.publish.hint.waitingApproval = 等候批准
|
||||
bbb.video.publish.hint.videoPreview = 視頻預覽
|
||||
bbb.video.publish.hint.openingCamera = 攝像頭開啓中...
|
||||
bbb.video.publish.hint.cameraDenied = 請求攝像頭被拒絕
|
||||
bbb.video.publish.hint.cameraIsBeingUsed = 攝像頭已被使用
|
||||
bbb.video.publish.hint.publishing = 發布中...
|
||||
bbb.desktopPublish.title = 桌面共享: 主講人預覽
|
||||
bbb.desktopPublish.fullscreen.tooltip = 全螢幕共享
|
||||
bbb.desktopPublish.fullscreen.label = 全螢幕
|
||||
@ -139,30 +141,31 @@ bbb.highlighter.toolbar.color = 選擇顏色
|
||||
bbb.highlighter.toolbar.thickness = 修改線條粗細
|
||||
bbb.highlighter.button.toolTipShow = 顯示白板
|
||||
bbb.highlighter.button.toolTipHide = 隠藏白板
|
||||
bbb.logout.appshutdown = 服务器程序已关闭
|
||||
bbb.logout.asyncerror =
|
||||
bbb.logout.connectionclosed = 同服务器连接已关闭
|
||||
bbb.logout.connectionfailed = 连接服务器失败
|
||||
bbb.logout.rejected = 连接服务器被回绝
|
||||
bbb.logout.appshutdown = 服務器程序已關閉
|
||||
bbb.logout.asyncerror = 同步錯誤
|
||||
bbb.logout.connectionclosed = 同服務器連接已關閉
|
||||
bbb.logout.connectionfailed = 連接服務器失敗
|
||||
bbb.logout.rejected = 連接服務器被回絕
|
||||
bbb.logout.invalidapp = red5 程序未安装
|
||||
bbb.logout.unknown =
|
||||
bbb.logout.usercommand = 你已经登出会议
|
||||
bbb.settings.deskshare.instructions =
|
||||
bbb.settings.deskshare.start = 检查桌面分享
|
||||
bbb.settings.voice.volume =
|
||||
bbb.settings.voice.adjust = 调正音量
|
||||
bbb.settings.java.label = Java 版本错误
|
||||
bbb.settings.java.text =
|
||||
bbb.logout.unknown = 您已掉線
|
||||
bbb.logout.usercommand = 妳已經登出會議
|
||||
bbb.settings.deskshare.instructions = 在彈出窗口中,點擊同意來啓動桌面共享程序
|
||||
bbb.settings.deskshare.start = 檢查桌面分享
|
||||
bbb.settings.voice.volume = 麥克風狀態
|
||||
bbb.settings.voice.adjust = 調正音量
|
||||
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 =
|
||||
bbb.settings.flash.text = 您安裝的Flash爲{0},BigBlueButton需要{1}以上版本才能正常運行。點擊下面的鏈接安裝最新的Flash Player
|
||||
bbb.settings.flash.command = 安装最新Flash
|
||||
bbb.settings.isight.label = iSight 镜头错误
|
||||
bbb.settings.isight.text =
|
||||
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 =
|
||||
bbb.videodock.title =
|
||||
bbb.settings.instructions = 在彈出的Flash設置對話框中“接受”Flash使用您的攝像頭。若您能夠看到和聽到自己,說明浏覽器已設置正確。其他可能存在的問題顯示如下。依次點擊以找到可行的解決方案。
|
||||
bbb.videodock.title = 視頻區
|
||||
bbb.zzzzz.yyyy =
|
||||
=
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" ?>
|
||||
<config>
|
||||
<localeversion suppressWarning="false">0.8-beta2</localeversion>
|
||||
<localeversion suppressWarning="false">0.8-beta4</localeversion>
|
||||
<version>VERSION</version>
|
||||
<help url="http://HOST/help.html"/>
|
||||
<porttest host="HOST" application="video"/>
|
||||
@ -42,7 +42,7 @@
|
||||
|
||||
<module name="PhoneModule" url="PhoneModule.swf?v=VERSION"
|
||||
uri="rtmp://HOST/sip"
|
||||
autoJoin="false"
|
||||
autoJoin="true"
|
||||
skipCheck="false"
|
||||
showButton="true"
|
||||
enabledEchoCancel="true"
|
||||
@ -51,23 +51,23 @@
|
||||
|
||||
<module name="VideoconfModule" url="VideoconfModule.swf?v=VERSION"
|
||||
uri="rtmp://HOST/video"
|
||||
dependsOn="ViewersModule"
|
||||
videoQuality="70"
|
||||
presenterShareOnly="false"
|
||||
resolutions="320x240,640x480,1280x720"
|
||||
autoStart="false"
|
||||
showButton="true"
|
||||
showCloseButton="true"
|
||||
publishWindowVisible="true"
|
||||
viewerWindowMaxed="false"
|
||||
viewerWindowLocation="top"
|
||||
camKeyFrameInterval="5"
|
||||
camModeFps="15"
|
||||
camQualityBandwidth="0"
|
||||
camQualityPicture="50"
|
||||
enableH264="false"
|
||||
h264Level="2.1"
|
||||
h264Profile="main"
|
||||
dependson = "ViewersModule"
|
||||
videoQuality = "100"
|
||||
presenterShareOnly = "false"
|
||||
resolutions = "320x240,640x480,1280x720"
|
||||
autoStart = "false"
|
||||
showButton = "true"
|
||||
showCloseButton = "true"
|
||||
publishWindowVisible = "true"
|
||||
viewerWindowMaxed = "false"
|
||||
viewerWindowLocation = "top"
|
||||
camKeyFrameInterval = "30"
|
||||
camModeFps = "10"
|
||||
camQualityBandwidth = "0"
|
||||
camQualityPicture = "90"
|
||||
enableH264 = "false"
|
||||
h264Level = "2.1"
|
||||
h264Profile = "main"
|
||||
/>
|
||||
|
||||
<module name="WhiteboardModule" url="WhiteboardModule.swf?v=VERSION"
|
||||
@ -79,6 +79,7 @@
|
||||
uri="rtmp://HOST/bigbluebutton"
|
||||
host="http://HOST"
|
||||
showPresentWindow="true"
|
||||
showWindowControls="true"
|
||||
dependsOn="ViewersModule"
|
||||
/>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<style type="text/css" media="screen">
|
||||
html, body, #content { height:100%; }
|
||||
body { margin:0; padding:0; overflow:auto; }
|
||||
body { margin:0; padding:0; overflow:hidden; }
|
||||
#altContent { /* style alt content */ }
|
||||
</style>
|
||||
<script type="text/javascript" src="swfobject/swfobject.js"></script>
|
||||
|
Binary file not shown.
1
bigbluebutton-client/resources/prod/lib/bbb_deskshare.js
Normal file → Executable file
1
bigbluebutton-client/resources/prod/lib/bbb_deskshare.js
Normal file → Executable file
@ -8,6 +8,7 @@ function startApplet(IP, roomNumber, fullScreen)
|
||||
"id=\"DeskShareApplet\" width=\"0\" height=\"1\" archive=\"bbb-deskshare-applet-0.71.jar\">" +
|
||||
"<param name=\"ROOM\" value=\"" + roomNumber + "\"/>" +
|
||||
"<param name=\"IP\" value=\"" + IP + "\"/>" +
|
||||
"<param name=\"PORT\" value=\"9123\"/>" +
|
||||
"<param name=\"FULL_SCREEN\" value=\"" + fullScreen + "\"/>" +
|
||||
"</applet>"
|
||||
);
|
||||
|
@ -26,7 +26,7 @@
|
||||
xmlns:mate="http://mate.asfusion.com/"
|
||||
xmlns:m="library://melomel/2010"
|
||||
pageTitle="BigBlueButton"
|
||||
layout="absolute" creationComplete="init()"
|
||||
layout="absolute" preinitialize="init()"
|
||||
preloader="org.bigbluebutton.main.model.BigBlueButtonPreloader">
|
||||
|
||||
<mx:Script>
|
||||
|
@ -30,8 +30,8 @@ package org.bigbluebutton.common
|
||||
function removeRawChild(child:DisplayObject):void;
|
||||
function doesContain(child:DisplayObject):Boolean;
|
||||
function acceptOverlayCanvas(overlay:IBbbCanvas):void;
|
||||
function moveCanvas(x:int, y:int):void;
|
||||
function zoomCanvas(width:int, height:int):void;
|
||||
function moveCanvas(x:Number, y:Number):void;
|
||||
function zoomCanvas(width:Number, height:Number):void;
|
||||
function showCanvas(show:Boolean):void;
|
||||
}
|
||||
}
|
@ -21,6 +21,12 @@ package org.bigbluebutton.common
|
||||
[Bindable]
|
||||
public class Images
|
||||
{
|
||||
[Embed(source="assets/images/fit-to-page.png")]
|
||||
public var fitToPage:Class;
|
||||
|
||||
[Embed(source="assets/images/fit-to-width.png")]
|
||||
public var fitToWidth:Class;
|
||||
|
||||
[Embed(source="assets/images/green-circle.png")]
|
||||
public var greenCircle:Class;
|
||||
|
||||
@ -63,10 +69,10 @@ package org.bigbluebutton.common
|
||||
[Embed(source="assets/images/raisehand.png")]
|
||||
public var raisehand:Class;
|
||||
|
||||
[Embed(source="assets/images/sound_mute.png")]
|
||||
[Embed(source="assets/images/mic_muted.png")]
|
||||
public var sound_mute:Class;
|
||||
|
||||
[Embed(source="assets/images/sound_none.png")]
|
||||
[Embed(source="assets/images/mic_unmuted.png")]
|
||||
public var sound_none:Class;
|
||||
|
||||
[Embed(source="assets/images/sound.png")]
|
||||
|
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/fit-to-page.png
Executable file
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/fit-to-page.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 440 B |
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/fit-to-width.png
Executable file
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/fit-to-width.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 485 B |
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/mic_muted.png
Executable file
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/mic_muted.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/mic_unmuted.png
Executable file
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/mic_unmuted.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user