Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
f2b5a7e359
@ -51,6 +51,7 @@ public class ESLEventListener implements IEslEventListener {
|
||||
|
||||
private static final Pattern GLOBAL_AUDION_PATTERN = Pattern.compile("(GLOBAL_AUDIO)_(.*)$");
|
||||
private static final Pattern CALLERNAME_PATTERN = Pattern.compile("(.*)-bbbID-(.*)$");
|
||||
private static final Pattern CALLERNAME_WITH_SESS_INFO_PATTERN = Pattern.compile("^(.*)_(\\d+)-bbbID-(.*)$");
|
||||
|
||||
@Override
|
||||
public void conferenceEventJoin(String uniqueId, String confName, int confSize, EslEvent event) {
|
||||
@ -77,7 +78,11 @@ public class ESLEventListener implements IEslEventListener {
|
||||
conferenceEventListener.handleConferenceEvent(dsStart);
|
||||
} else {
|
||||
Matcher matcher = CALLERNAME_PATTERN.matcher(callerIdName);
|
||||
if (matcher.matches()) {
|
||||
Matcher callWithSess = CALLERNAME_WITH_SESS_INFO_PATTERN.matcher(callerIdName);
|
||||
if (callWithSess.matches()) {
|
||||
voiceUserId = callWithSess.group(1).trim();
|
||||
callerIdName = callWithSess.group(3).trim();
|
||||
} else if (matcher.matches()) {
|
||||
voiceUserId = matcher.group(1).trim();
|
||||
callerIdName = matcher.group(2).trim();
|
||||
} else {
|
||||
|
@ -16,9 +16,22 @@ const IPV4_FALLBACK_DOMAIN = Meteor.settings.public.app.ipv4FallbackDomain;
|
||||
const ICE_NEGOTIATION_FAILED = ['iceConnectionFailed'];
|
||||
const CALL_CONNECT_TIMEOUT = 15000;
|
||||
const ICE_NEGOTIATION_TIMEOUT = 20000;
|
||||
const AUDIO_SESSION_NUM_KEY = 'AudioSessionNumber';
|
||||
|
||||
|
||||
const getAudioSessionNumber = () => {
|
||||
let currItem = parseInt(sessionStorage.getItem(AUDIO_SESSION_NUM_KEY), 10);
|
||||
if (!currItem) {
|
||||
currItem = 0;
|
||||
}
|
||||
|
||||
currItem += 1;
|
||||
sessionStorage.setItem(AUDIO_SESSION_NUM_KEY, currItem);
|
||||
return currItem;
|
||||
};
|
||||
|
||||
class SIPSession {
|
||||
constructor(user, userData, protocol, hostname,
|
||||
constructor(user, userData, protocol, hostname,
|
||||
baseCallStates, baseErrorCodes, reconnectAttempt) {
|
||||
this.user = user;
|
||||
this.userData = userData;
|
||||
@ -83,7 +96,7 @@ class SIPSession {
|
||||
} = this.user;
|
||||
|
||||
const callerIdName = [
|
||||
userId,
|
||||
`${userId}_${getAudioSessionNumber()}`,
|
||||
'bbbID',
|
||||
isListenOnly ? `LISTENONLY-${name}` : name,
|
||||
].join('-').replace(/"/g, "'");
|
||||
|
@ -23,10 +23,14 @@ import id from 'react-intl/locale-data/id';
|
||||
import it from 'react-intl/locale-data/it';
|
||||
import ja from 'react-intl/locale-data/ja';
|
||||
import km from 'react-intl/locale-data/km';
|
||||
import ko from 'react-intl/locale-data/ko';
|
||||
import nl from 'react-intl/locale-data/nl';
|
||||
import pl from 'react-intl/locale-data/pl';
|
||||
import pt from 'react-intl/locale-data/pt';
|
||||
import ro from 'react-intl/locale-data/ro';
|
||||
import ru from 'react-intl/locale-data/ru';
|
||||
import sk from 'react-intl/locale-data/sk';
|
||||
import sr from 'react-intl/locale-data/sr';
|
||||
import sv from 'react-intl/locale-data/sv';
|
||||
import tr from 'react-intl/locale-data/tr';
|
||||
import uk from 'react-intl/locale-data/uk';
|
||||
@ -53,10 +57,14 @@ addLocaleData([
|
||||
...it,
|
||||
...ja,
|
||||
...km,
|
||||
...ko,
|
||||
...nl,
|
||||
...pl,
|
||||
...pt,
|
||||
...ro,
|
||||
...ru,
|
||||
...sk,
|
||||
...sr,
|
||||
...sv,
|
||||
...tr,
|
||||
...uk,
|
||||
|
@ -20,6 +20,14 @@ const LOG_CONFIG = Meteor.settings.public.clientLog || { console: { enabled: tru
|
||||
|
||||
// Custom stream that logs to an end-point
|
||||
class ServerLoggerStream extends ServerStream {
|
||||
constructor(params) {
|
||||
super(params);
|
||||
|
||||
if (params.logTag) {
|
||||
this.logTagString = params.logTag;
|
||||
}
|
||||
}
|
||||
|
||||
write(rec) {
|
||||
const { fullInfo } = Auth;
|
||||
|
||||
@ -28,6 +36,9 @@ class ServerLoggerStream extends ServerStream {
|
||||
this.rec.userInfo = fullInfo;
|
||||
}
|
||||
this.rec.clientBuild = Meteor.settings.public.app.html5ClientBuild;
|
||||
if (this.logTagString) {
|
||||
this.rec.logTag = this.logTagString;
|
||||
}
|
||||
return super.write(this.rec);
|
||||
}
|
||||
}
|
||||
|
@ -303,7 +303,7 @@ public:
|
||||
clientLog:
|
||||
server: { enabled: true, level: info }
|
||||
console: { enabled: true, level: debug }
|
||||
external: { enabled: false, level: info, url: https://LOG_HOST/html5Log, method: POST, throttleInterval: 400, flushOnClose: true }
|
||||
external: { enabled: false, level: info, url: https://LOG_HOST/html5Log, method: POST, throttleInterval: 400, flushOnClose: true, logTag: "" }
|
||||
private:
|
||||
app:
|
||||
host: 127.0.0.1
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"app.home.greeting": "سيبدأ عرضك التقديمي قريبا ...",
|
||||
"app.chat.submitLabel": "إرسال رسالة",
|
||||
"app.chat.submitLabel": "أرسل رسالة",
|
||||
"app.chat.errorMinMessageLength": "الرسالة هي {0} حرف (أحرف) قصيرة جدًا",
|
||||
"app.chat.errorMaxMessageLength": "الرسالة هي {0} حرف (أحرف) طويلة جدا",
|
||||
"app.chat.disconnected": "أنت غير متصل ، لا يمكن إرسال الرسائل",
|
||||
@ -21,6 +21,9 @@
|
||||
"app.chat.offline": "غير متصل",
|
||||
"app.chat.emptyLogLabel": "سجل دردشة فارغة",
|
||||
"app.chat.clearPublicChatMessage": "تم مسح تاريخ الدردشة من قبل المشرف",
|
||||
"app.chat.multi.typing": " العديد من المستخدمين يكتبون",
|
||||
"app.chat.one.typing": "{0} يكتب",
|
||||
"app.chat.two.typing": " {0} و {1} يكتبان",
|
||||
"app.captions.label": "التعليقات",
|
||||
"app.captions.menu.close": "غلق",
|
||||
"app.captions.menu.start": "بدأ",
|
||||
@ -112,6 +115,10 @@
|
||||
"app.media.screenshare.safariNotSupported": "مشاركة الشاشة غير مدعومة حاليًا بواسطة سفاري. من فضلك ، استخدم فايرفوكس أو جوجل كروم.",
|
||||
"app.media.screenshare.autoplayBlockedDesc": "نحن بحاجة إلى إذنك لتظهر لك شاشة مقدم العرض.",
|
||||
"app.media.screenshare.autoplayAllowLabel": "عرض الشاشة المشتركة",
|
||||
"app.screenshare.notAllowed": "خطأ: لم يتم منح إذن الدخول إلى الشاشة.",
|
||||
"app.screenshare.notSupportedError": "خطأ: لا يُسمح بمشاركة الشاشة إلا في المجالات الآمنة (SSL)",
|
||||
"app.screenshare.notReadableError": "خطأ: حدث فشل أثناء محاولة التقاط شاشتك",
|
||||
"app.screenshare.genericError": "خطأ: حدث خطأ في مشاركة الشاشة ، يرجى المحاولة مرة أخرى",
|
||||
"app.meeting.ended": "إنتهت هذه الجلسة",
|
||||
"app.meeting.meetingTimeRemaining": "الوقت المتبقي للاجتماع: {0}",
|
||||
"app.meeting.meetingTimeHasEnded": "انتهى الوقت. سيتم إغلاق الاجتماع قريبًا",
|
||||
@ -149,7 +156,7 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "المناسبة للصفحة",
|
||||
"app.presentation.presentationToolbar.goToSlide": "شريحة {0}",
|
||||
"app.presentationUploder.title": "عرض",
|
||||
"app.presentationUploder.message": "كمقدم لديك لديك القدرة على تحميل أي وثيقة مكتب أو ملف PDF. نوصي ملف PDF للحصول على أفضل النتائج. يرجى التأكد من تحديد عرض تقديمي باستخدام مربع الاختيار الدائرة على الجانب الأيسر.",
|
||||
"app.presentationUploder.message": "كمقدم لديك القدرة على تحميل أي وثيقة مكتب أو ملف PDF. نوصي بملف PDF للحصول على أفضل النتائج. يرجى التأكد من تحديد عرض تقديمي باستخدام مربع الاختيار على الجانب الأيمن.",
|
||||
"app.presentationUploder.uploadLabel": "رفع",
|
||||
"app.presentationUploder.confirmLabel": "موافقة",
|
||||
"app.presentationUploder.confirmDesc": "حفظ التغييرات وبدء العرض",
|
||||
@ -164,13 +171,14 @@
|
||||
"app.presentationUploder.genericError": "عفوا، حدث خطأ ما",
|
||||
"app.presentationUploder.rejectedError": "تم رفض الملف (الملفات) المحدد(ة). يرجى التحقق من نوع (أنواع) الملف (الملفات).",
|
||||
"app.presentationUploder.upload.progress": "رفع ({0}٪)",
|
||||
"app.presentationUploder.upload.413": "الملف كبير جدا",
|
||||
"app.presentationUploder.upload.413": " الملف كبير جدا. يرجى تقسيمه إلى ملفات متعددة.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "معالجة الصفحة {0} من {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "تحويل ملف ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "إنشاء صور مصغرة ...",
|
||||
"app.presentationUploder.conversion.generatedSlides": "الشرائح المنشأة...",
|
||||
"app.presentationUploder.conversion.generatingSvg": "إنشاء صور SVG ...",
|
||||
"app.presentationUploder.conversion.pageCountExceeded": "عفوا, عدد الصفحات تجاوز الحد الأقصى",
|
||||
"app.presentationUploder.conversion.pdfHasBigPage": " لم نتمكن من تحويل ملف PDF ، يرجى محاولة تحسينه",
|
||||
"app.presentationUploder.conversion.timeout": "مكتب خدمات المشاريع, تحويل يستغرق وقتا اطول",
|
||||
"app.presentationUploder.isDownloadableLabel": "عدم السماح بتحميل العرض",
|
||||
"app.presentationUploder.isNotDownloadableLabel": "السماح بتحميل العرض",
|
||||
@ -186,6 +194,7 @@
|
||||
"app.poll.quickPollInstruction": "اختر خيارا أسفله لبدء التصويت.",
|
||||
"app.poll.customPollLabel": "تصويت مخصص",
|
||||
"app.poll.startCustomLabel": "بدء تصويت مخصص",
|
||||
"app.poll.activePollInstruction": "اترك هذه اللوحة مفتوحة لمشاهدة الردود المباشرة على الاستطلاع الخاص بك. عندما تكون جاهزًا ، حدد 'نشر نتائج الاقتراع' لنشر النتائج وإنهاء الاستطلاع.",
|
||||
"app.poll.publishLabel": "نشر نتائج التصويت",
|
||||
"app.poll.backLabel": "العودة إلى خيارات التصويت",
|
||||
"app.poll.closeLabel": "غلق",
|
||||
@ -246,6 +255,7 @@
|
||||
"app.navBar.recording": "يتم تسجيل هذه الجلسة",
|
||||
"app.navBar.recording.on": "تسجيل",
|
||||
"app.navBar.recording.off": "لا يتم التسجيل",
|
||||
"app.navBar.emptyAudioBrdige": "لا ميكروفون نشط. شارك الميكروفون الخاص بك لإضافة صوت إلى هذا التسجيل.",
|
||||
"app.leaveConfirmation.confirmLabel": "غادر",
|
||||
"app.leaveConfirmation.confirmDesc": "تسجيل خروجك من الاجتماع",
|
||||
"app.endMeeting.title": "إنهاء الاجتماع",
|
||||
@ -390,6 +400,7 @@
|
||||
"app.audioModal.settingsTitle": "قم بتغيير إعدادات الصوت لديك",
|
||||
"app.audioModal.helpTitle": "كانت هناك مشكلة مع الوسائط الخاصة بك",
|
||||
"app.audioModal.helpText": "هل أعطيت الإذن للوصول إلى الميكروفون الخاص بك؟ لاحظ أنه يجب أن يظهر مربع حوار عند محاولة الانضمام إلى الصوت ، يطلب أذونات وسائل الإعلام الخاصة بك ، الرجاء قبول ذلك للانضمام إلى المؤتمر الصوتي. إذا لم يكن الأمر كذلك ، فجرّب تغيير أذونات الميكروفون في إعدادات المتصفح.",
|
||||
"app.audioModal.help.noSSL": "هذه الصفحة غير آمنة. للسماح بالوصول إلى الميكروفون ، يجب تقديم الصفحة عبر HTTPS. يرجى الاتصال بمسؤول الخادم.",
|
||||
"app.audioModal.audioDialTitle": "الانظمام عبر الهاتف",
|
||||
"app.audioDial.audioDialDescription": "الهاتف",
|
||||
"app.audioDial.audioDialConfrenceText": "ثم أدخل رقم PIN للاجتماع:",
|
||||
|
@ -171,7 +171,7 @@
|
||||
"app.presentationUploder.genericError": "Ups, irgendwas ist schief gelaufen",
|
||||
"app.presentationUploder.rejectedError": "Die ausgewählten Dateien wurden zurückgewiesen. Bitte prüfen Sie die zulässigen Dateitypen.",
|
||||
"app.presentationUploder.upload.progress": "Hochladen ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Datei zu groß, Limit von 200 Seiten erreicht",
|
||||
"app.presentationUploder.upload.413": "Die Datei ist zu groß. Bitte teilen Sie sie in mehrere kleinere Dateien auf.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Verarbeite Seite {0} von {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Konvertiere Datei...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Erstelle Miniaturbilder...",
|
||||
@ -255,6 +255,7 @@
|
||||
"app.navBar.recording": "Diese Konferenz wird aufgezeichnet",
|
||||
"app.navBar.recording.on": "Aufzeichnung läuft",
|
||||
"app.navBar.recording.off": "Keine Aufnahme",
|
||||
"app.navBar.emptyAudioBrdige": "Kein aktives Mikrofon. Bitte erlauben Sie Zugriff auf Ihr Mikrofon, um in der Aufzeichnung auch Ihr Audio zu hören.",
|
||||
"app.leaveConfirmation.confirmLabel": "Verlassen",
|
||||
"app.leaveConfirmation.confirmDesc": "Hiermit verlassen Sie Konferenz",
|
||||
"app.endMeeting.title": "Beende Konferenz",
|
||||
@ -281,6 +282,8 @@
|
||||
"app.submenu.application.animationsLabel": "Animationen",
|
||||
"app.submenu.application.audioAlertLabel": "Audiowarnungen für Chat",
|
||||
"app.submenu.application.pushAlertLabel": "Popupwarnungen für Chat",
|
||||
"app.submenu.application.userJoinAudioAlertLabel": "Audiowarnton wenn neue Teilnehmer den Raum betreten",
|
||||
"app.submenu.application.userJoinPushAlertLabel": "Popupnachricht wenn neue Teilnehmer den Raum betreten",
|
||||
"app.submenu.application.fontSizeControlLabel": "Schriftgröße",
|
||||
"app.submenu.application.increaseFontBtnLabel": "Schriftgröße erhöhen",
|
||||
"app.submenu.application.decreaseFontBtnLabel": "Schriftgröße verringern",
|
||||
@ -485,6 +488,7 @@
|
||||
"app.notification.recordingStop": "Diese Konferenz wird nicht aufgezeichnet",
|
||||
"app.notification.recordingPaused": "Die Konferenz wird nicht mehr aufgezeichnet",
|
||||
"app.notification.recordingAriaLabel": "Aufgezeichnete Zeit",
|
||||
"app.notification.userJoinPushAlert": "{0} hat den Raum betreten",
|
||||
"app.shortcut-help.title": "Tastaturkürzel",
|
||||
"app.shortcut-help.accessKeyNotAvailable": "Zugriffsschlüssel sind nicht verfügbar",
|
||||
"app.shortcut-help.comboLabel": "Tastenkombination",
|
||||
|
@ -143,7 +143,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Ajustar a la página",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Diapositiva {0}",
|
||||
"app.presentationUploder.title": "Presentación",
|
||||
"app.presentationUploder.message": "Como presentador, tiene la capacidad de cargar cualquier documento de Office o archivo PDF. Recomendamos archivos PDF para obtener los mejores resultados. Asegúrese de seleccionar una presentación utilizando la casilla de verificación en forma de círculo en el lado derecho.",
|
||||
"app.presentationUploder.uploadLabel": "Cargar",
|
||||
"app.presentationUploder.confirmLabel": "Confirmar",
|
||||
"app.presentationUploder.confirmDesc": "Grardar los cambios e iniciar la presentación",
|
||||
@ -158,7 +157,6 @@
|
||||
"app.presentationUploder.genericError": "Ups, algo salio mal",
|
||||
"app.presentationUploder.rejectedError": "El(los) archivo(s) seleccionado(s) ha(n) sido rechazado(s). Por favor, revise el(los) tipo(s) de archivo.",
|
||||
"app.presentationUploder.upload.progress": "Cargando ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Archivo muy grande, se ha alcanzado el máximo de 200 páginas",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Procesando página {0} de {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Convirtiendo archivos ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Generando miniaturas ...",
|
||||
|
@ -119,7 +119,6 @@
|
||||
"app.presentationUploder.currentBadge": "Acual",
|
||||
"app.presentationUploder.genericError": "Ups, algo salio mal",
|
||||
"app.presentationUploder.upload.progress": "Cargando ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Archivo demasiado grande pasa el máximo de 200 páginas.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Procesando página {0} de {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Convirtiendo archivos ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Generando miniaturas ...",
|
||||
|
@ -143,7 +143,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Doitu orrira",
|
||||
"app.presentation.presentationToolbar.goToSlide": "{0}. diapositiba",
|
||||
"app.presentationUploder.title": "Aurkezpena",
|
||||
"app.presentationUploder.message": "Aurkezle moduan edozein PDFa edo bulegoko dokumentua karga dezakezu. Emaitza onenak izateko PDF fitxategiak gomendatzen ditugu. Ziurtatu aurkezpen bat hautatuta dagoela eskuin aldeko kontrol zirkulua erabiliz.",
|
||||
"app.presentationUploder.uploadLabel": "Kargatu",
|
||||
"app.presentationUploder.confirmLabel": "Berretsi",
|
||||
"app.presentationUploder.confirmDesc": "Gorde aldaketak eta hasi aurkezpena",
|
||||
@ -158,7 +157,6 @@
|
||||
"app.presentationUploder.genericError": "Ops, zerbait oker joan da",
|
||||
"app.presentationUploder.rejectedError": "Hautatutako fitxategia(k) baztertu egin d(ir)a. Egiaztatu fitxategi mota(k).",
|
||||
"app.presentationUploder.upload.progress": "Kargatzen (%{0})",
|
||||
"app.presentationUploder.upload.413": "Fitxategi handiegia, 200 orriko maximoa gainditu du",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "{1} orritatik {0} prozesatzen",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Fitxategia bihurtzen...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Miniaturak sortzen...",
|
||||
|
@ -149,7 +149,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "اندازه تصویر را متناسب با عرض صفحه کن",
|
||||
"app.presentation.presentationToolbar.goToSlide": "اسلاید {0}",
|
||||
"app.presentationUploder.title": "ارائه",
|
||||
"app.presentationUploder.message": "به عنوان ارائه دهنده شما امکان بارگزاری هر نوع مستند مبتنی بر افیس یا PDF را خواهید داشت، مطمئن شوید که فایل ارائه توسط دگمه چک باکس در بخش سمت راست آن انتخاب شده باشد.",
|
||||
"app.presentationUploder.uploadLabel": "بارگزاری",
|
||||
"app.presentationUploder.confirmLabel": "تایید",
|
||||
"app.presentationUploder.confirmDesc": "تغییرات خود را ذخیره کنید و ارائه را آغاز نمایید.",
|
||||
@ -164,7 +163,6 @@
|
||||
"app.presentationUploder.genericError": "اوپس، خطایی رخ داد",
|
||||
"app.presentationUploder.rejectedError": "فایل(های) انتخاب شده رد شدند. لطفا نوع فایل(ها) را بررسی کنید",
|
||||
"app.presentationUploder.upload.progress": "در حال بارگزاری ({0}%)",
|
||||
"app.presentationUploder.upload.413": "اندازه فایل بسیار بزرگ است، به ماکسیمم تعداد 200 صفحه رسید",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "در حال پردازش صفحه {0} از {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "در حال تبدیل فایل ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "در حال تولید تصاویر کوچک ...",
|
||||
|
@ -135,7 +135,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Sovita sivulle",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Dia {0}",
|
||||
"app.presentationUploder.title": "Esitys",
|
||||
"app.presentationUploder.message": "Esittäjänä sinulla on mahdollisuus ladata tietokoneeltasi Office-dokumentti tai PDF-tiedosto Esitykseesi. Suosittelemme käyttämään PDF-tiedostoa parhaimman yhteensopivuuden takaamiseksi. Kun olet valinnut tiedoston tietokoneeltasi valitse tämä esitys/tiedosto merkitsemällä ruksi esityksen rivillä ympyrä-ruutuun ja painamalla lataa-painiketta.",
|
||||
"app.presentationUploder.uploadLabel": "Lataa",
|
||||
"app.presentationUploder.confirmLabel": "Vahvista",
|
||||
"app.presentationUploder.confirmDesc": "Tallenna muutokset ja aloita esitys",
|
||||
@ -150,7 +149,6 @@
|
||||
"app.presentationUploder.genericError": "Jotain meni pieleen.",
|
||||
"app.presentationUploder.rejectedError": "Valittu tiedosto(t) hylättiin. Ole hyvä tarkitsa tiedostotyyppi(t).",
|
||||
"app.presentationUploder.upload.progress": "Lähettää ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Tiedosto on liian suuri, 200 sivun maksimikoko saavutettiin",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Prosessoi sivua {0} / {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Muuntaa tiedostoa...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Luo esikatselukuvia ...",
|
||||
|
@ -149,7 +149,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Ajuster à la page",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Diapositive {0}",
|
||||
"app.presentationUploder.title": "Présentation",
|
||||
"app.presentationUploder.message": "En tant que présentateur, vous pouvez téléverser n'importe quel document ou fichier PDF. Nous recommandons un fichier PDF pour de meilleurs résultats. Veuillez vous assurer qu'une présentation est sélectionnée en utilisant la coche ronde à droite.",
|
||||
"app.presentationUploder.uploadLabel": "Télécharger",
|
||||
"app.presentationUploder.confirmLabel": "Confirmer",
|
||||
"app.presentationUploder.confirmDesc": "Sauvegardez vos modifications et lancez la présentation",
|
||||
@ -164,7 +163,6 @@
|
||||
"app.presentationUploder.genericError": "Oups, quelque chose s'est mal passé",
|
||||
"app.presentationUploder.rejectedError": "Le(s) fichier(s) sélectionné(s) a été rejeté(s). Veuillez vérifier le format de ce(s) fichier(s).",
|
||||
"app.presentationUploder.upload.progress": "Chargement ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Le fichier est trop volumineux, 200 pages maximum atteintes",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Traitement de la page {0} sur {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Conversion de fichier...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Génération des vignettes...",
|
||||
|
@ -119,7 +119,6 @@
|
||||
"app.presentationUploder.currentBadge": "वर्तमान",
|
||||
"app.presentationUploder.genericError": "ओह! कुछ गलत हो गया है",
|
||||
"app.presentationUploder.upload.progress": "अपलोड करना ({0}%)",
|
||||
"app.presentationUploder.upload.413": "फ़ाइल बहुत बड़ी है, अधिकतम 200 पृष्ठ पहुंच गए हैं",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "प्रोसेसिंग पेज {0} का {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "फ़ाइल परिवर्तित कर रहा है ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "थंबनेल बनाए जा रहे हैं ...",
|
||||
|
@ -156,7 +156,7 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Az oldalhoz illeszkedjen",
|
||||
"app.presentation.presentationToolbar.goToSlide": "{0}. dia",
|
||||
"app.presentationUploder.title": "Prezentáció",
|
||||
"app.presentationUploder.message": "Előadóként tetszőleges office dokumentumot, illetve PDF fájlt fel tudsz tölteni. A legjobb eredmény érdekében javasoljuk PDF fájl használatát. Kérjük, ellenőrizd, hogy egy prezentációt kiválasztottál a jobb oldalon lévő jelölővel.",
|
||||
"app.presentationUploder.message": "Előadóként tetszőleges office dokumentumot, illetve PDF fájlt fel tudsz tölteni. A legjobb eredmény érdekében javasoljuk PDF fájl használatát. Kérjük, ellenőrizd, hogy egy prezentációt kiválasztottál a jobb oldalon lévő jelölővel. ",
|
||||
"app.presentationUploder.uploadLabel": "Feltöltés",
|
||||
"app.presentationUploder.confirmLabel": "Jóváhagyás",
|
||||
"app.presentationUploder.confirmDesc": "Mentsd a módosításaidat és indítsd a prezentációt",
|
||||
@ -171,13 +171,14 @@
|
||||
"app.presentationUploder.genericError": "Sajnáljuk, hiba történt",
|
||||
"app.presentationUploder.rejectedError": "A kiválasztott fájl(oka)t visszautasítottuk. Kérjük, ellenőrizd a fájl(ok) típusát.",
|
||||
"app.presentationUploder.upload.progress": "({0}%) feltöltve",
|
||||
"app.presentationUploder.upload.413": "A fájl túl nagy, az maximum 200 oldalt tartalmazhat",
|
||||
"app.presentationUploder.upload.413": "A fájl túl nagy. Kérjük, szedd szét több darabra.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "{0} / {1} oldal folyamatban",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Fájl átalakítása ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Miniatűrök létrehozása ...",
|
||||
"app.presentationUploder.conversion.generatedSlides": "Diák létrehozása ...",
|
||||
"app.presentationUploder.conversion.generatingSvg": "SVG képek létrehozása ...",
|
||||
"app.presentationUploder.conversion.pageCountExceeded": "Sajnáljuk, a oldalszámláló elérte a maximális 200 oldalt",
|
||||
"app.presentationUploder.conversion.pdfHasBigPage": "A PDF fájl átalakítása sikertelen. Kérjük, próbáld optimalizálni.",
|
||||
"app.presentationUploder.conversion.timeout": "Sajnáljuk, az átalakítás túl sokáig tartott",
|
||||
"app.presentationUploder.isDownloadableLabel": "A prezentáció letöltésének tiltása",
|
||||
"app.presentationUploder.isNotDownloadableLabel": "A prezentáció letöltésének engedélyezése",
|
||||
@ -193,6 +194,7 @@
|
||||
"app.poll.quickPollInstruction": "Válassz egy beállítást a szavazás indításához",
|
||||
"app.poll.customPollLabel": "Egyéni szavazás",
|
||||
"app.poll.startCustomLabel": "Egyéni szavazás indítása",
|
||||
"app.poll.activePollInstruction": "Ennek a panelnek a megnyitásával megtekintheted szavazásod élő állását. Amikor készen állsz, nyomd meg a szavazás lezárásához és a végeredmény közzétételéhez a 'Szavazás eredményének közzététele' gombot.",
|
||||
"app.poll.publishLabel": "Szavazás eredményének közzététele",
|
||||
"app.poll.backLabel": "Vissza a szavazás beállításaihoz",
|
||||
"app.poll.closeLabel": "Bezárás",
|
||||
@ -253,6 +255,7 @@
|
||||
"app.navBar.recording": "Ezt a munkamenetet rögzítjük",
|
||||
"app.navBar.recording.on": "Felvétel",
|
||||
"app.navBar.recording.off": "Nem készül felvétel",
|
||||
"app.navBar.emptyAudioBrdige": "Egyik mikrofon sem aktív. Oszd meg a mikrofonod, hogy legyen hangja a felvételenek.",
|
||||
"app.leaveConfirmation.confirmLabel": "Kilépés",
|
||||
"app.leaveConfirmation.confirmDesc": "Kiléptél az előadásból",
|
||||
"app.endMeeting.title": "Előadás befejezése",
|
||||
@ -397,6 +400,8 @@
|
||||
"app.audioModal.settingsTitle": "Hangbeállításaim módosítása",
|
||||
"app.audioModal.helpTitle": "Hiba történt a médiaeszközöddel",
|
||||
"app.audioModal.helpText": "Adtál engedélyt a mikrofonod eléréséhez? Amikor csatlakozol egy beszélgetéshez, egy felugró ablak jelenik meg, melyben engedélyt tudsz adni a médiaeszközöd használatához. Kérjük, engedélyezd, hogy csatlakozhass a beszélgetéshez. Amennyiben nincs ilyen ablak, a böngésződ beállításaiban módosítsd a mikrofonod használatához az engedélyt.",
|
||||
"app.audioModal.help.noSSL": "Ez az oldal nem biztonságos. A mikrofon használatának engedélyezéséhez HTTPS kapcsolat szükséges a szerverrel. Kérjük, keresd meg a szerver üzemeltetőjét.",
|
||||
"app.audioModal.help.macNotAllowed": "Úgy látszik, hogy a Mac Rendszerbeállítások blokkolják a hozzáférést a mikrofonhoz. Nyisd meg a Rendszerbeállítások > Biztonság és adatvédelem > Adatvédelem > Mikrofon lehetőséget és ellenőrizd, hogy a böngészőnél van pipa.",
|
||||
"app.audioModal.audioDialTitle": "Csatlakozás telefon használatával",
|
||||
"app.audioDial.audioDialDescription": "Tárcsázás",
|
||||
"app.audioDial.audioDialConfrenceText": "és add meg a megbeszélés PIN számát: ",
|
||||
@ -648,6 +653,7 @@
|
||||
"app.createBreakoutRoom.addParticipantLabel": "+ Résztvevő hozzáadása",
|
||||
"app.createBreakoutRoom.freeJoin": "A felhasználók maguk választhatnak csapatszobát",
|
||||
"app.createBreakoutRoom.leastOneWarnBreakout": "Minden csapatszobába legalább egy felhasználónak kell kerülnie.",
|
||||
"app.createBreakoutRoom.modalDesc": "Tipp: Fogd-és-vidd a felhasználó nevét a kívánt csapatszobára.",
|
||||
"app.createBreakoutRoom.roomTime": "{0} perc",
|
||||
"app.createBreakoutRoom.numberOfRoomsError": "A szobák száma érvénytelen.",
|
||||
"app.externalVideo.start": "Egy új videó megosztása",
|
||||
@ -656,8 +662,10 @@
|
||||
"app.externalVideo.urlInput": "Videó URL hozzáadása",
|
||||
"app.externalVideo.urlError": "Ez a videó URL nem támogatott",
|
||||
"app.externalVideo.close": "Bezárás",
|
||||
"app.externalVideo.autoPlayWarning": "Játszd le a videót a médiaszinkronizáció engedélyezéséhez",
|
||||
"app.network.connection.effective.slow": "Kapcsolódási problémát érzékeltünk.",
|
||||
"app.network.connection.effective.slow.help": "További információ",
|
||||
"app.externalVideo.noteLabel": "Megjegyzés: A megosztott külső videó nem jelenik meg a felvételen. A YouTube, Vimeo, Instructure Media, Twitch és a Daily Motion URL-ek támogatottak.",
|
||||
"app.actionsBar.actionsDropdown.shareExternalVideo": "Egy külső videó megosztása",
|
||||
"app.actionsBar.actionsDropdown.stopShareExternalVideo": "Külső videó megosztásának befejezése",
|
||||
"app.iOSWarning.label": "Frissíts iOS 12.2-re vagy újabbra",
|
||||
|
@ -153,7 +153,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Adatta alla pagina",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Slide {0}",
|
||||
"app.presentationUploder.title": "Presentazione",
|
||||
"app.presentationUploder.message": "Come presentatore hai la possibilità di caricare documenti di Office o PDF. Si raccomanda di utilizzare i file PDF per i migliori risultati. Assicurarsi che la presentazione sia selezionata utilizzando la casella di controllo sulla destra.",
|
||||
"app.presentationUploder.uploadLabel": "Carica",
|
||||
"app.presentationUploder.confirmLabel": "Conferma",
|
||||
"app.presentationUploder.confirmDesc": "Salva modifiche e avvia presentazione",
|
||||
@ -168,7 +167,6 @@
|
||||
"app.presentationUploder.genericError": "Dannazione, qualcosa è andato storto",
|
||||
"app.presentationUploder.rejectedError": "Il file selezionato è stato rifiutato. controllare il tipo di file.",
|
||||
"app.presentationUploder.upload.progress": "Caricamento ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Il file è troppo grande, il numero massimo di 200 pagine è stato raggiunto",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Elaborazione pagina {0} di {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Conversione file...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Elaborazione anteprima...",
|
||||
|
@ -156,7 +156,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "ページに合わせる",
|
||||
"app.presentation.presentationToolbar.goToSlide": "スライド {0}",
|
||||
"app.presentationUploder.title": "プレゼンテーション",
|
||||
"app.presentationUploder.message": "プレゼンターはドキュメントをアップロードすることができます。お勧めのファイル形式はPDFファイルです。右側のチェックボックスをクリックし、プレゼンテーションが選択されていることを確認してください。",
|
||||
"app.presentationUploder.uploadLabel": "アップロード",
|
||||
"app.presentationUploder.confirmLabel": "確認",
|
||||
"app.presentationUploder.confirmDesc": "変更を保存してプレゼンテーションを開始する",
|
||||
@ -171,7 +170,6 @@
|
||||
"app.presentationUploder.genericError": "エラーが発生しました",
|
||||
"app.presentationUploder.rejectedError": "選択ファイルが拒否されました。ファイル形式を確認してください。",
|
||||
"app.presentationUploder.upload.progress": "アップロード中({0}%)",
|
||||
"app.presentationUploder.upload.413": "ファイルが大きすぎます。200ページを超えています。",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "{1}ページ中{0}ページ目を処理中",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "ファイル変換中…",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "サムネイル作成中…",
|
||||
|
@ -126,7 +126,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "ページに合わせる",
|
||||
"app.presentation.presentationToolbar.goToSlide": "スライド {0}",
|
||||
"app.presentationUploder.title": "プレゼンテーション",
|
||||
"app.presentationUploder.message": "プレゼンターはドキュメントをアップロードすることができます。お勧めのファイル形式はPDFファイルです。右側のチェックボックスをクリックし、プレゼンテーションが選択されていることを確認してください。",
|
||||
"app.presentationUploder.uploadLabel": "アップロード",
|
||||
"app.presentationUploder.confirmLabel": "確認",
|
||||
"app.presentationUploder.confirmDesc": "変更を保存してプレゼンテーションを開始する",
|
||||
@ -141,7 +140,6 @@
|
||||
"app.presentationUploder.genericError": "エラーが発生しました",
|
||||
"app.presentationUploder.rejectedError": "選択ファイルが拒否されました。ファイル形式を確認してください。",
|
||||
"app.presentationUploder.upload.progress": "アップロード中 ({0}%)",
|
||||
"app.presentationUploder.upload.413": "ファイルが大きすぎます。200ページを超えています。",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "{1}ページ中{0}ページ目を処理中",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "ファイル変換中…",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "サムネイル作成中…",
|
||||
|
@ -149,7 +149,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "ទំហំសមនឹងទំព័រស្លាយ",
|
||||
"app.presentation.presentationToolbar.goToSlide": "ស្លាយ {0}",
|
||||
"app.presentationUploder.title": "បទបង្ហាញ",
|
||||
"app.presentationUploder.message": "អ្នកអាចផ្ទុកឡើងនូវឯកសារការិយាល័យឬឯកសារ PDF ណាមួយ ។ ដើម្បីបានគុណភាពល្អ សូមប្រើឯកសារ PDF។ អ្នកចាំបាច់ត្រូវជ្រើសរើសឯកសារបទបង្ហាញមួយដោយសញ្ញាធីកលើរង្វង់នៅផ្នែកខាងស្តាំដៃ។",
|
||||
"app.presentationUploder.uploadLabel": "ផ្ទុកឡើង",
|
||||
"app.presentationUploder.confirmLabel": "បញ្ជាក់",
|
||||
"app.presentationUploder.confirmDesc": "រក្សាទុកការកែប្រែ ហើយចាប់ផ្តើមបទបង្ហាញ",
|
||||
@ -164,7 +163,6 @@
|
||||
"app.presentationUploder.genericError": "អុញ! មានបញ្ហាអ្វីមួយហើយ",
|
||||
"app.presentationUploder.rejectedError": "ឯកសារដែលបានជ្រើសបានត្រូវបានបដិសេធ។ សូមពិនិត្យមើលប្រភេទរបស់ឯកសារនេះ។",
|
||||
"app.presentationUploder.upload.progress": "កំពុងផ្ទុកឡើង ({0}%)",
|
||||
"app.presentationUploder.upload.413": "ឯកសារធំពេក (កម្រិតទំព័រត្រឹម ២០០)",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "កំពុងពិនិត្យទំព័រ {0} ក្នុងចំណោម {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "កំពុងបម្លែងឯកសារ ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "កំពុងបង្កើតរូបភាពតូច ...",
|
||||
|
675
bigbluebutton-html5/private/locales/ko_KR.json
Normal file
675
bigbluebutton-html5/private/locales/ko_KR.json
Normal file
@ -0,0 +1,675 @@
|
||||
{
|
||||
"app.home.greeting": "프리젠테이션은 바로 시작될것입니다 ",
|
||||
"app.chat.submitLabel": "메시지 보내기",
|
||||
"app.chat.errorMinMessageLength": "메시지가 {0}글자(들이) 부족합니다 ",
|
||||
"app.chat.errorMaxMessageLength": "메시지가 {0} 글자(들이) 깁니다 ",
|
||||
"app.chat.disconnected": "연결이 끊어졌습니다. 메시지는 보내지지 않습니다 ",
|
||||
"app.chat.locked": "채팅은 막혔습니다. 메시지는 보내지지 않습니다 ",
|
||||
"app.chat.inputLabel": "채팅을 위해 메시지를 {0}입력 하세요 ",
|
||||
"app.chat.inputPlaceholder": "{0} 에게 메시지를 보내세요 ",
|
||||
"app.chat.titlePublic": "공개 채팅",
|
||||
"app.chat.titlePrivate": "{0} 와 개인채팅",
|
||||
"app.chat.partnerDisconnected": "{0} 가 미팅을 마쳤습니다 ",
|
||||
"app.chat.closeChatLabel": "{0} 닫기 ",
|
||||
"app.chat.hideChatLabel": "{0} 숨기기",
|
||||
"app.chat.moreMessages": "아래쪽에 더많은 메시지",
|
||||
"app.chat.dropdown.options": "채팅 옵션",
|
||||
"app.chat.dropdown.clear": "비우기",
|
||||
"app.chat.dropdown.copy": "복사",
|
||||
"app.chat.dropdown.save": "저장",
|
||||
"app.chat.label": "채팅",
|
||||
"app.chat.offline": "오프라인",
|
||||
"app.chat.emptyLogLabel": "채팅 기록 지우기",
|
||||
"app.chat.clearPublicChatMessage": "공개채팅기록이 주관자에 의해 지워졌습니다 ",
|
||||
"app.chat.multi.typing": "다수의 사용자가 타이핑중입니다 ",
|
||||
"app.chat.one.typing": "{0} 가 타이핑중입니다 ",
|
||||
"app.chat.two.typing": "{0} 과 {1} 이 타이핑중입니다",
|
||||
"app.captions.label": "자막",
|
||||
"app.captions.menu.close": "닫기",
|
||||
"app.captions.menu.start": "시작",
|
||||
"app.captions.menu.ariaStart": "자막 쓰기 시작",
|
||||
"app.captions.menu.ariaStartDesc": "캡션 에디터 열고 창 닫기 ",
|
||||
"app.captions.menu.select": "가능한 언어 선택",
|
||||
"app.captions.menu.ariaSelect": "자막 언어",
|
||||
"app.captions.menu.subtitle": "당신의 세션중에 마감된 자막을 위한 언어와 스타일을 선택하세요",
|
||||
"app.captions.menu.title": "마감된 자막",
|
||||
"app.captions.menu.fontSize": "사이즈",
|
||||
"app.captions.menu.fontColor": "글자색",
|
||||
"app.captions.menu.fontFamily": "폰트",
|
||||
"app.captions.menu.backgroundColor": "배경색",
|
||||
"app.captions.menu.previewLabel": "미리보기",
|
||||
"app.captions.menu.cancelLabel": "취소",
|
||||
"app.captions.pad.hide": "마감된 자막 숨기기",
|
||||
"app.captions.pad.tip": "에디터 툴바에 포커스를 위해 ESC 를 누르세요",
|
||||
"app.captions.pad.ownership": "인수받기",
|
||||
"app.captions.pad.ownershipTooltip": "당신은 {0} 자막의 소유자로 지정되셨습니다 ",
|
||||
"app.captions.pad.interimResult": "중간 결과",
|
||||
"app.captions.pad.dictationStart": "받아쓰기 시작",
|
||||
"app.captions.pad.dictationStop": "받아쓰기 중지",
|
||||
"app.captions.pad.dictationOnDesc": "발음 인식 켜기 ",
|
||||
"app.captions.pad.dictationOffDesc": "발음 인식 끄기",
|
||||
"app.note.title": "노트 공유",
|
||||
"app.note.label": "노트",
|
||||
"app.note.hideNoteLabel": "노트 숨기기",
|
||||
"app.user.activityCheck": "사용자 활동 체크",
|
||||
"app.user.activityCheck.label": "사용자가 ({0})미팅에 아직 있는지 체크",
|
||||
"app.user.activityCheck.check": "체크",
|
||||
"app.note.tipLabel": "에디터 툴바에 포커스를 위해 ESC 를 누르세요",
|
||||
"app.userList.usersTitle": "사용자",
|
||||
"app.userList.participantsTitle": "참가자",
|
||||
"app.userList.messagesTitle": "메시지",
|
||||
"app.userList.notesTitle": "노트",
|
||||
"app.userList.notesListItem.unreadContent": "공유노트섹션 안에 새로운 컨텐츠가 사용가능합니다 ",
|
||||
"app.userList.captionsTitle": "자막",
|
||||
"app.userList.presenter": "발표자",
|
||||
"app.userList.you": "당신",
|
||||
"app.userList.locked": "잠김",
|
||||
"app.userList.label": "사용자 리스트",
|
||||
"app.userList.toggleCompactView.label": "간단한 보기로 전환",
|
||||
"app.userList.guest": "손님",
|
||||
"app.userList.menuTitleContext": "가능한 옵션",
|
||||
"app.userList.chatListItem.unreadSingular": "{0} 개 새로운 메시지",
|
||||
"app.userList.chatListItem.unreadPlural": "{0} 개 새로운 메시지들",
|
||||
"app.userList.menu.chat.label": "개인채팅 시작",
|
||||
"app.userList.menu.clearStatus.label": "상태 정리 ",
|
||||
"app.userList.menu.removeUser.label": "사용자 지우기",
|
||||
"app.userList.menu.muteUserAudio.label": "사용자 음소거",
|
||||
"app.userList.menu.unmuteUserAudio.label": "사용자 음소거 취소",
|
||||
"app.userList.userAriaLabel": "{0}{1}{2} 상태 {3}",
|
||||
"app.userList.menu.promoteUser.label": "주관자로 승격",
|
||||
"app.userList.menu.demoteUser.label": "관람자로 강등",
|
||||
"app.userList.menu.unlockUser.label": "{0} 해제",
|
||||
"app.userList.menu.lockUser.label": "{0} 잠금",
|
||||
"app.userList.menu.directoryLookup.label": "디렉토리 검색",
|
||||
"app.userList.menu.makePresenter.label": "발표자 만들기",
|
||||
"app.userList.userOptions.manageUsersLabel": "사용자 만들기",
|
||||
"app.userList.userOptions.muteAllLabel": "모든 사용자 음소거",
|
||||
"app.userList.userOptions.muteAllDesc": "미팅안의 모든 사용자 음소거",
|
||||
"app.userList.userOptions.clearAllLabel": "모든 상태 아이콘 지우기",
|
||||
"app.userList.userOptions.clearAllDesc": "사용자의 상태 아이콘 지우기",
|
||||
"app.userList.userOptions.muteAllExceptPresenterLabel": "발표자를 제외한 모든 사용자 음소거",
|
||||
"app.userList.userOptions.muteAllExceptPresenterDesc": "미팅안에 발표자를 제외한 모든 사용자 음소거",
|
||||
"app.userList.userOptions.unmuteAllLabel": "미팅 음소거 끄기",
|
||||
"app.userList.userOptions.unmuteAllDesc": "미팅 음소거 제거",
|
||||
"app.userList.userOptions.lockViewersLabel": "관람자 잠그기",
|
||||
"app.userList.userOptions.lockViewersDesc": "미팅의 참석자 기능들을 잠그기",
|
||||
"app.userList.userOptions.disableCam": "관람자의 웹캠은 불가능",
|
||||
"app.userList.userOptions.disableMic": "관람자의 마이크는 불가능",
|
||||
"app.userList.userOptions.disablePrivChat": "개인적 채팅은 금지",
|
||||
"app.userList.userOptions.disablePubChat": "공개 채팅은 금지",
|
||||
"app.userList.userOptions.disableNote": "공유노트는 잠겼습니다 ",
|
||||
"app.userList.userOptions.hideUserList": "관람자에게 사용자 리스트는 감춰집니다 ",
|
||||
"app.userList.userOptions.webcamsOnlyForModerator": "주관자만 관람자의 웹캠을 볼 수 있습니다 (잠금세팅으로)",
|
||||
"app.userList.content.participants.options.clearedStatus": "모든 사용자 상태 비우기",
|
||||
"app.userList.userOptions.enableCam": "관람자 웹캠사용 가능",
|
||||
"app.userList.userOptions.enableMic": "관람자 마이크 사용 가능",
|
||||
"app.userList.userOptions.enablePrivChat": "개인적 채팅 가능",
|
||||
"app.userList.userOptions.enablePubChat": "공개 채팅 가능",
|
||||
"app.userList.userOptions.enableNote": "공유노트 사용 가능",
|
||||
"app.userList.userOptions.showUserList": "사용자 리스트가 관람자에게 보여짐",
|
||||
"app.userList.userOptions.enableOnlyModeratorWebcam": "웹캠 사용이 가능합니다. 모든 사람이 당신을 보게 됩니다 ",
|
||||
"app.media.label": "미디어",
|
||||
"app.media.autoplayAlertDesc": "접속 허가",
|
||||
"app.media.screenshare.start": "스크린 공유 시작",
|
||||
"app.media.screenshare.end": "스크린공유 종료 ",
|
||||
"app.media.screenshare.safariNotSupported": "스크린 공유는 사파리 브라우저에서 불가능합니다. 파이어폭스나 크롬을 사용하세요 ",
|
||||
"app.media.screenshare.autoplayBlockedDesc": "발표자의 스크린을 보여주기 위해 당신의 허가가 필요합니다 ",
|
||||
"app.media.screenshare.autoplayAllowLabel": "공유스크린 보기",
|
||||
"app.screenshare.notAllowed": "에러: 스크린에 접근하기 위한 권한이 아직 없습니다 ",
|
||||
"app.screenshare.notSupportedError": "에러: 스크린공유는 안전한 도메인 연결(SSL) 에서만 가능합니다 ",
|
||||
"app.screenshare.notReadableError": "에러: 당신의 스크린을 캡쳐 하는데서 에러가 발생했습니다 ",
|
||||
"app.screenshare.genericError": "에러: 스크린 공유에서 에러가 발생했습니다. 다시 시도해 보세요",
|
||||
"app.meeting.ended": "이 세션은 종료 되었습니다 ",
|
||||
"app.meeting.meetingTimeRemaining": "미팅시간은 {0} 남았습니다 ",
|
||||
"app.meeting.meetingTimeHasEnded": "시간종료. 미팅은 조만간 종료 됩니다 ",
|
||||
"app.meeting.endedMessage": "홈화면으로 돌아갑니다 ",
|
||||
"app.meeting.alertMeetingEndsUnderOneMinute": "미팅은 몇분후 마감됩니다 ",
|
||||
"app.meeting.alertBreakoutEndsUnderOneMinute": "브레이크아웃이 몇분내로 종료됩니다 ",
|
||||
"app.presentation.hide": "프리젠테이션 숨기기",
|
||||
"app.presentation.notificationLabel": "현재 프리젠테이션",
|
||||
"app.presentation.slideContent": "슬라이드 컨텐츠",
|
||||
"app.presentation.startSlideContent": "슬라이드 컨텐츠 시작",
|
||||
"app.presentation.endSlideContent": "슬라이드 컨텐츠 종료",
|
||||
"app.presentation.emptySlideContent": "현재의 슬라이드에대한 컨텐츠 없음",
|
||||
"app.presentation.presentationToolbar.noNextSlideDesc": "프리젠테이션 끝",
|
||||
"app.presentation.presentationToolbar.noPrevSlideDesc": "프리젠테이션 시작",
|
||||
"app.presentation.presentationToolbar.selectLabel": "슬라이드 선택",
|
||||
"app.presentation.presentationToolbar.prevSlideLabel": "이전 슬라이드",
|
||||
"app.presentation.presentationToolbar.prevSlideDesc": "이전 슬라이드로 프리젠테이션 변경",
|
||||
"app.presentation.presentationToolbar.nextSlideLabel": "다음 슬라이드",
|
||||
"app.presentation.presentationToolbar.nextSlideDesc": "다음 슬라이드로 프리젠테이션 변경",
|
||||
"app.presentation.presentationToolbar.skipSlideLabel": "슬라이드 건너뛰기",
|
||||
"app.presentation.presentationToolbar.skipSlideDesc": "특정 슬라이드로 프리젠테이션 변경",
|
||||
"app.presentation.presentationToolbar.fitWidthLabel": "너비 맞추기",
|
||||
"app.presentation.presentationToolbar.fitWidthDesc": "슬라이드의 총 너비 보이기 ",
|
||||
"app.presentation.presentationToolbar.fitScreenLabel": "스크린 맞추기",
|
||||
"app.presentation.presentationToolbar.fitScreenDesc": "모든 슬라이드 보이기",
|
||||
"app.presentation.presentationToolbar.zoomLabel": "확대",
|
||||
"app.presentation.presentationToolbar.zoomDesc": "프리젠테이션의 확대 레벨 조정",
|
||||
"app.presentation.presentationToolbar.zoomInLabel": "확대",
|
||||
"app.presentation.presentationToolbar.zoomInDesc": "프리젠테이션 확대",
|
||||
"app.presentation.presentationToolbar.zoomOutLabel": "축소",
|
||||
"app.presentation.presentationToolbar.zoomOutDesc": "프리젠테이션 축소",
|
||||
"app.presentation.presentationToolbar.zoomReset": "확대 초기화",
|
||||
"app.presentation.presentationToolbar.zoomIndicator": "현재 확대율",
|
||||
"app.presentation.presentationToolbar.fitToWidth": "너비 맞추기",
|
||||
"app.presentation.presentationToolbar.fitToPage": "페이지 맞추기",
|
||||
"app.presentation.presentationToolbar.goToSlide": "슬라이드 {0}",
|
||||
"app.presentationUploder.title": "프리젠테이션",
|
||||
"app.presentationUploder.uploadLabel": "업로드",
|
||||
"app.presentationUploder.confirmLabel": "확인",
|
||||
"app.presentationUploder.confirmDesc": "변경된것을 저장하고 프리젠테이션을 시작",
|
||||
"app.presentationUploder.dismissLabel": "취소",
|
||||
"app.presentationUploder.dismissDesc": "창을 닫고, 변경을 저장하지 않음",
|
||||
"app.presentationUploder.dropzoneLabel": "업로드를 위해 파일을 이곳에 드래그 하여 넣으세요 ",
|
||||
"app.presentationUploder.dropzoneImagesLabel": "업로드 하기 위해 이미지파일을 이곳에 드래그 하여 넣으세요 ",
|
||||
"app.presentationUploder.browseFilesLabel": "혹은 파일탐색기 열기 ",
|
||||
"app.presentationUploder.browseImagesLabel": "혹은 이미지 파일을 열거나 캡쳐 ",
|
||||
"app.presentationUploder.fileToUpload": "업로드 될 예정",
|
||||
"app.presentationUploder.currentBadge": "지금",
|
||||
"app.presentationUploder.genericError": "어머나 ! 뭔가 잘못 되었어요 ",
|
||||
"app.presentationUploder.rejectedError": "선택한 파일(들)이 거절 되었습니다. 파일 종류(들)를 살펴 보세요 ",
|
||||
"app.presentationUploder.upload.progress": "업로드중 ({0}%)",
|
||||
"app.presentationUploder.upload.413": "파일이 너무 큽니다. 여러파일로 나누세요 ",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "{1} 중 {0} 페이지 진행 ",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "파일 변환",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "썸네일 생성중",
|
||||
"app.presentationUploder.conversion.generatedSlides": "슬라이드 생성중",
|
||||
"app.presentationUploder.conversion.generatingSvg": "SVG 이미지 생성중",
|
||||
"app.presentationUploder.conversion.pageCountExceeded": "어머나! 페이지가 200 페이지 제한을 넘었습니다 ",
|
||||
"app.presentationUploder.conversion.pdfHasBigPage": "PDF 파일을 변환할 수 없습니다. 최적화를 시도 해 보세요 ",
|
||||
"app.presentationUploder.conversion.timeout": "어머나! 변환이 너무 오래 걸리네요 ",
|
||||
"app.presentationUploder.isDownloadableLabel": "프리젠테이션 다운로드는 금지됩니다 ",
|
||||
"app.presentationUploder.isNotDownloadableLabel": "프리젠테이션 다운로드 허가",
|
||||
"app.presentationUploder.removePresentationLabel": "프리젠테이션 제거 ",
|
||||
"app.presentationUploder.setAsCurrentPresentation": "프리젠테이션 현행화",
|
||||
"app.presentationUploder.tableHeading.filename": "파일 이름",
|
||||
"app.presentationUploder.tableHeading.options": "옵션",
|
||||
"app.presentationUploder.tableHeading.status": "상태",
|
||||
"app.poll.pollPaneTitle": "설문조사",
|
||||
"app.poll.quickPollTitle": "빠른설문",
|
||||
"app.poll.hidePollDesc": "설문메뉴 숨기기",
|
||||
"app.poll.customPollInstruction": "맞춤형 설문조사를 생성하기 위해, 선택버튼으로 당신의 옵션을 넣으세요 ",
|
||||
"app.poll.quickPollInstruction": "설문조사 시작을 위해 옵션을 선택 하세요 ",
|
||||
"app.poll.customPollLabel": "맞춤형 설문조사",
|
||||
"app.poll.startCustomLabel": "맞춤형 설문조사 시작",
|
||||
"app.poll.activePollInstruction": "설문조사에 대한 실시간 반응을 보려면, 이 패널을 오픈해 놓으세요. 당신이 준비 되면, 설문을 끝내고 결과를 공개 하기 위해 '공개 설문 결과' 를 선택 하세요 ",
|
||||
"app.poll.publishLabel": "공개 설문 결과",
|
||||
"app.poll.backLabel": "설문옵션으로 돌아가기",
|
||||
"app.poll.closeLabel": "닫기",
|
||||
"app.poll.waitingLabel": "응답대기 ({0}/{1})",
|
||||
"app.poll.ariaInputCount": "맞춤형 설문 옵션 {1} 중 {0}",
|
||||
"app.poll.customPlaceholder": "설문 옵션 추가 ",
|
||||
"app.poll.noPresentationSelected": "프리젠테이션이 선택되지 않았습니다. 하나를 선택 하세요 ",
|
||||
"app.poll.clickHereToSelect": "선택하려면 클릭하세요 ",
|
||||
"app.poll.t": "참",
|
||||
"app.poll.f": "거짓",
|
||||
"app.poll.tf": "참 / 거짓",
|
||||
"app.poll.y": "예",
|
||||
"app.poll.n": "아니요",
|
||||
"app.poll.yn": "예 / 아니요",
|
||||
"app.poll.a2": "A / B",
|
||||
"app.poll.a3": "A / B / C",
|
||||
"app.poll.a4": "A / B / C / D",
|
||||
"app.poll.a5": "A / B / C / D / E",
|
||||
"app.poll.answer.true": "참",
|
||||
"app.poll.answer.false": "거짓",
|
||||
"app.poll.answer.yes": "예",
|
||||
"app.poll.answer.no": "아니요",
|
||||
"app.poll.answer.a": "A",
|
||||
"app.poll.answer.b": "B",
|
||||
"app.poll.answer.c": "C",
|
||||
"app.poll.answer.d": "D",
|
||||
"app.poll.answer.e": "E",
|
||||
"app.poll.liveResult.usersTitle": "사용자",
|
||||
"app.poll.liveResult.responsesTitle": "응답",
|
||||
"app.polling.pollingTitle": "설문 옵션",
|
||||
"app.polling.pollAnswerLabel": "설문 응답 {0}",
|
||||
"app.polling.pollAnswerDesc": "{0} 에 투표 하기 위한 옵션 선택",
|
||||
"app.failedMessage": "죄송합니다 . 서버접속에 문제가 있습니다 ",
|
||||
"app.downloadPresentationButton.label": "원본 프리젠테이션 다운로드",
|
||||
"app.connectingMessage": "접속중 ...",
|
||||
"app.waitingMessage": "접속끊김. 재접속 시도 {0} 초 ...",
|
||||
"app.retryNow": "다시 해 보세요 ",
|
||||
"app.navBar.settingsDropdown.optionsLabel": "옵션",
|
||||
"app.navBar.settingsDropdown.fullscreenLabel": "큰화면으로 ",
|
||||
"app.navBar.settingsDropdown.settingsLabel": "설정",
|
||||
"app.navBar.settingsDropdown.aboutLabel": "개요",
|
||||
"app.navBar.settingsDropdown.leaveSessionLabel": "로그아웃",
|
||||
"app.navBar.settingsDropdown.exitFullscreenLabel": "큰화면 해제",
|
||||
"app.navBar.settingsDropdown.fullscreenDesc": "설정메뉴를 큰화면으로 ",
|
||||
"app.navBar.settingsDropdown.settingsDesc": "일반설정 변경",
|
||||
"app.navBar.settingsDropdown.aboutDesc": "클라이언트 정보 보기 ",
|
||||
"app.navBar.settingsDropdown.leaveSessionDesc": "미팅 끝내기",
|
||||
"app.navBar.settingsDropdown.exitFullscreenDesc": "꽉찬화면 나가기",
|
||||
"app.navBar.settingsDropdown.hotkeysLabel": "키보드 바로가기",
|
||||
"app.navBar.settingsDropdown.hotkeysDesc": "가능한 키보드 바로가기 리스트",
|
||||
"app.navBar.settingsDropdown.helpLabel": "도움말",
|
||||
"app.navBar.settingsDropdown.helpDesc": "비디오 도움말로 사용자 연결 (새로운탭 열어서)",
|
||||
"app.navBar.settingsDropdown.endMeetingDesc": "현재 미팅 끝내기",
|
||||
"app.navBar.settingsDropdown.endMeetingLabel": "미팅 끝",
|
||||
"app.navBar.userListToggleBtnLabel": "사용자 리스트 띄우기",
|
||||
"app.navBar.toggleUserList.ariaLabel": "사용자와 메시지 띄우기 ",
|
||||
"app.navBar.toggleUserList.newMessages": "새로운 메시지 알림과 함께",
|
||||
"app.navBar.recording": "이 세션은 녹화중입니다 ",
|
||||
"app.navBar.recording.on": "녹화",
|
||||
"app.navBar.recording.off": "녹화 안됨 ",
|
||||
"app.leaveConfirmation.confirmLabel": "떠나기",
|
||||
"app.leaveConfirmation.confirmDesc": "미팅없이 로그 기록 ",
|
||||
"app.endMeeting.title": "미팅 끝",
|
||||
"app.endMeeting.description": "이 세션을 종료 하시겠습니까 ?",
|
||||
"app.endMeeting.yesLabel": "예",
|
||||
"app.endMeeting.noLabel": "아니요",
|
||||
"app.about.title": "개요",
|
||||
"app.about.version": "사용자 빌드:",
|
||||
"app.about.copyright": "저작권:",
|
||||
"app.about.confirmLabel": "예",
|
||||
"app.about.confirmDesc": "예",
|
||||
"app.about.dismissLabel": "취소",
|
||||
"app.about.dismissDesc": "사용자 정보 닫기 ",
|
||||
"app.actionsBar.changeStatusLabel": "상태 변경",
|
||||
"app.actionsBar.muteLabel": "음소거",
|
||||
"app.actionsBar.unmuteLabel": "음소거 해제",
|
||||
"app.actionsBar.camOffLabel": "카메라 끄기",
|
||||
"app.actionsBar.raiseLabel": "올리기",
|
||||
"app.actionsBar.label": "액션바",
|
||||
"app.actionsBar.actionsDropdown.restorePresentationLabel": "프리젠테이션 복구",
|
||||
"app.actionsBar.actionsDropdown.restorePresentationDesc": "프리젠테이션이 끝나고 복원하는 버튼",
|
||||
"app.screenshare.screenShareLabel" : "화면 공유",
|
||||
"app.submenu.application.applicationSectionTitle": "신청",
|
||||
"app.submenu.application.animationsLabel": "애니메이션",
|
||||
"app.submenu.application.audioAlertLabel": "채팅을 위한 오디오 알림",
|
||||
"app.submenu.application.pushAlertLabel": "채팅을 위한 팝업 알림",
|
||||
"app.submenu.application.fontSizeControlLabel": "글자 크기",
|
||||
"app.submenu.application.increaseFontBtnLabel": "신청 글자크기 확대",
|
||||
"app.submenu.application.decreaseFontBtnLabel": "신청 글자 크기 줄임",
|
||||
"app.submenu.application.currentSize": "현재 {0}",
|
||||
"app.submenu.application.languageLabel": "신청 언어",
|
||||
"app.submenu.application.languageOptionLabel": "언어 선택",
|
||||
"app.submenu.application.noLocaleOptionLabel": "활성 로케일 없음",
|
||||
"app.submenu.audio.micSourceLabel": "마이크 소스 ",
|
||||
"app.submenu.audio.speakerSourceLabel": "스피커 소스 ",
|
||||
"app.submenu.audio.streamVolumeLabel": "당신의 소리 볼륨",
|
||||
"app.submenu.video.title": "비디오",
|
||||
"app.submenu.video.videoSourceLabel": "소스 보기",
|
||||
"app.submenu.video.videoOptionLabel": "소스 보기 선택",
|
||||
"app.submenu.video.videoQualityLabel": "비디오 품질",
|
||||
"app.submenu.video.qualityOptionLabel": "비디오 품질 선택",
|
||||
"app.submenu.video.participantsCamLabel": "관람 참가자 웹캠",
|
||||
"app.settings.applicationTab.label": "신청",
|
||||
"app.settings.audioTab.label": "오디오",
|
||||
"app.settings.videoTab.label": "비디오",
|
||||
"app.settings.usersTab.label": "참가자",
|
||||
"app.settings.main.label": "설정",
|
||||
"app.settings.main.cancel.label": "취소",
|
||||
"app.settings.main.cancel.label.description": "저장하지 않고 설정메뉴 닫기 ",
|
||||
"app.settings.main.save.label": "저장",
|
||||
"app.settings.main.save.label.description": "변경을 저장하고 설정메뉴 닫기 ",
|
||||
"app.settings.dataSavingTab.label": "데이터 절약",
|
||||
"app.settings.dataSavingTab.webcam": "웹캠 사용 가능",
|
||||
"app.settings.dataSavingTab.screenShare": "데스크탑 공유 사용 가능 ",
|
||||
"app.settings.dataSavingTab.description": "네트워크 절약을 위해 현재 보이는것을 조정",
|
||||
"app.settings.save-notification.label": "설정이 저장되었습니다 ",
|
||||
"app.switch.onLabel": "켜기 ",
|
||||
"app.switch.offLabel": "끄기",
|
||||
"app.actionsBar.actionsDropdown.actionsLabel": "활동",
|
||||
"app.actionsBar.actionsDropdown.presentationLabel": "프리젠테이션 업로드",
|
||||
"app.actionsBar.actionsDropdown.initPollLabel": "설문조사 초기화",
|
||||
"app.actionsBar.actionsDropdown.desktopShareLabel": "화면 공유",
|
||||
"app.actionsBar.actionsDropdown.lockedDesktopShareLabel": "화면 공유 잠금",
|
||||
"app.actionsBar.actionsDropdown.stopDesktopShareLabel": "화면 공유 중지",
|
||||
"app.actionsBar.actionsDropdown.presentationDesc": "프리젠테이션 업로드",
|
||||
"app.actionsBar.actionsDropdown.initPollDesc": "설문조사 초기화",
|
||||
"app.actionsBar.actionsDropdown.desktopShareDesc": "다른사람과 화면 공유",
|
||||
"app.actionsBar.actionsDropdown.stopDesktopShareDesc": "화면 공유 중지",
|
||||
"app.actionsBar.actionsDropdown.pollBtnLabel": "설문 시작",
|
||||
"app.actionsBar.actionsDropdown.pollBtnDesc": "설문조사 창 띄우기",
|
||||
"app.actionsBar.actionsDropdown.saveUserNames": "이름 저장",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoom": "브레이크아웃 룸 생성",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoomDesc": "현재의 미팅을 나눠 브레이크아웃 생성",
|
||||
"app.actionsBar.actionsDropdown.captionsLabel": "감춰진 자막 쓰기",
|
||||
"app.actionsBar.actionsDropdown.captionsDesc": "자막창 띄우기",
|
||||
"app.actionsBar.actionsDropdown.takePresenter": "발표자 수락",
|
||||
"app.actionsBar.actionsDropdown.takePresenterDesc": "새로운 발표자로 자신을 임명",
|
||||
"app.actionsBar.emojiMenu.statusTriggerLabel": "상태 설정",
|
||||
"app.actionsBar.emojiMenu.awayLabel": "부재중",
|
||||
"app.actionsBar.emojiMenu.awayDesc": "부재중으로 전환",
|
||||
"app.actionsBar.emojiMenu.raiseHandLabel": "올리기",
|
||||
"app.actionsBar.emojiMenu.raiseHandDesc": "질문을 위해 손 들기",
|
||||
"app.actionsBar.emojiMenu.neutralLabel": "미결정",
|
||||
"app.actionsBar.emojiMenu.neutralDesc": "미결정으로 상태 변경",
|
||||
"app.actionsBar.emojiMenu.confusedLabel": "혼란함",
|
||||
"app.actionsBar.emojiMenu.confusedDesc": "혼란함으로 상태 변경",
|
||||
"app.actionsBar.emojiMenu.sadLabel": "슬픔",
|
||||
"app.actionsBar.emojiMenu.sadDesc": "슬픔으로 상태 변경",
|
||||
"app.actionsBar.emojiMenu.happyLabel": "행복함",
|
||||
"app.actionsBar.emojiMenu.happyDesc": "행복함으로 상태 변경",
|
||||
"app.actionsBar.emojiMenu.noneLabel": "상태 비우기",
|
||||
"app.actionsBar.emojiMenu.noneDesc": "상태 비우기 ",
|
||||
"app.actionsBar.emojiMenu.applauseLabel": "박수",
|
||||
"app.actionsBar.emojiMenu.applauseDesc": "박수로 상태를 변경",
|
||||
"app.actionsBar.emojiMenu.thumbsUpLabel": "엄지척",
|
||||
"app.actionsBar.emojiMenu.thumbsUpDesc": "엄지척으로 상태를 변경",
|
||||
"app.actionsBar.emojiMenu.thumbsDownLabel": "비공감",
|
||||
"app.actionsBar.emojiMenu.thumbsDownDesc": "비공감으로 상태를 변경",
|
||||
"app.actionsBar.currentStatusDesc": "현재 상태 {0}",
|
||||
"app.actionsBar.captions.start": "감춘 자막 보기 시작",
|
||||
"app.actionsBar.captions.stop": "감춘 자막 보기 중지 ",
|
||||
"app.audioNotification.audioFailedError1001": "에러 1001: 웹소켓 접속불가",
|
||||
"app.audioNotification.audioFailedError1002": "에러 1002: 웹소켓 생성 불가 ",
|
||||
"app.audioNotification.audioFailedError1003": "에러 1003: 지원하지 않는 웹브라우저",
|
||||
"app.audioNotification.audioFailedError1004": "에러 1004: 호출 실패 (이유={0})",
|
||||
"app.audioNotification.audioFailedError1005": "에러 1005: 호출이 예기치 못하게 중단됨 ",
|
||||
"app.audioNotification.audioFailedError1006": "에러 1006: 호출 시간 초과 ",
|
||||
"app.audioNotification.audioFailedError1007": "에러 1007: ICE 통신 실패 ",
|
||||
"app.audioNotification.audioFailedError1008": "에러 1008: 전송 실패 ",
|
||||
"app.audioNotification.audioFailedError1009": "에러 1009: STUN/TURN 서버 정보 수집 실패 ",
|
||||
"app.audioNotification.audioFailedError1010": "에러 1010 : ICE 통신 시간초과",
|
||||
"app.audioNotification.audioFailedError1011": "에러 1011: ICE 수집 시간초과",
|
||||
"app.audioNotification.audioFailedError1012": "에러 1012 : ICE 접속 종료 ",
|
||||
"app.audioNotification.audioFailedMessage": "오디오 접속이 끊어졌습니다 ",
|
||||
"app.audioNotification.mediaFailedMessage": "마이크정보 가져오기가 실패. 보안상태만 허가됨",
|
||||
"app.audioNotification.closeLabel": "닫기",
|
||||
"app.audioNotificaion.reconnectingAsListenOnly": "관람자의 마이크는 잠깁니다. 듣기만 가능한 상태로 접속 되었습니다 ",
|
||||
"app.breakoutJoinConfirmation.title": "브레이크아웃 룸 들어가기",
|
||||
"app.breakoutJoinConfirmation.message": "합류 하시겠습니까 ?",
|
||||
"app.breakoutJoinConfirmation.confirmDesc": "브레이크아웃 룸에 합류하기",
|
||||
"app.breakoutJoinConfirmation.dismissLabel": "취소",
|
||||
"app.breakoutJoinConfirmation.dismissDesc": "닫고 브레이크아웃 룸 합류 거절",
|
||||
"app.breakoutJoinConfirmation.freeJoinMessage": "합류할 브레이크아웃 룸 선택",
|
||||
"app.breakoutTimeRemainingMessage": "브레이크아웃 룸 남은 시간 : {0}",
|
||||
"app.breakoutWillCloseMessage": "시간 종료. 브레이크아웃 룸은 닫힙니다 ",
|
||||
"app.calculatingBreakoutTimeRemaining": "남은 시간 계산중 ...",
|
||||
"app.audioModal.ariaTitle": "오디오 창 합류",
|
||||
"app.audioModal.microphoneLabel": "마이크",
|
||||
"app.audioModal.listenOnlyLabel": "듣기만",
|
||||
"app.audioModal.audioChoiceLabel": "어떻게 오디오에 합류하시겠습니까 ?",
|
||||
"app.audioModal.iOSBrowser": "오디오/비디오 를 지원하지 않습니다 ",
|
||||
"app.audioModal.iOSErrorDescription": "아직은, iOS 의 크롬에서 오디오와 비디오를 지원하지 않습니다 ",
|
||||
"app.audioModal.iOSErrorRecommendation": "iOS 에서는 사파리 브라우저를 권장합니다 ",
|
||||
"app.audioModal.audioChoiceDesc": "이 미팅에서 어떻게 오디오에 합류할것인지 선택하세요 ",
|
||||
"app.audioModal.unsupportedBrowserLabel": "당신이 사용중인 브라우저에서는 모든것을 지원하지 않는것처럼 보입니다. {0} 이나 {1} 을 이용하세요 ",
|
||||
"app.audioModal.closeLabel": "닫기",
|
||||
"app.audioModal.yes": "예",
|
||||
"app.audioModal.no": "아니요",
|
||||
"app.audioModal.yes.arialabel" : "메아리 들리게 ",
|
||||
"app.audioModal.no.arialabel" : "메아리 들리지 않게 ",
|
||||
"app.audioModal.echoTestTitle": "이것은 메아리 테스트 입니다. 몇마디 말을 해 보세요. 들리시나요 ?",
|
||||
"app.audioModal.settingsTitle": "오디오 설정을 변경하세요 ",
|
||||
"app.audioModal.helpTitle": "미디어 장치에 문제가 있습니다 ",
|
||||
"app.audioModal.helpText": "마이크에 접근권한을 주었나요 ? 오디오에 합류하려고 할때 미디어 장치에 대한 권한을 묻는 창이 보일겁니다. 오디오 컨퍼런스에 합류하기 위해서는 권한을 허용하셔야 합니다. 이런 경우가 아니면, 브라우저 설정에서 마이크 권한을 변경하셔야 합니다 ",
|
||||
"app.audioModal.help.noSSL": "이 페이지는 보안이 안되어 있습니다. 이 페이지에서 마이크 사용이 가능하려면 서버는 HTTPS 로 서비스 되어야 합니다. 서버관리자에게 도움을 요청 하세요 ",
|
||||
"app.audioModal.help.macNotAllowed": "당신의 Mac 시스템 설정이 마이크 권한을 막는것 같아 보입니다. System Preference > Security & Privacy > Privacy > Microphone 으로 가서 사용함으로 체크되어 있는지 확인 해 보세요 ",
|
||||
"app.audioModal.audioDialTitle": "전화로 합류하기",
|
||||
"app.audioDial.audioDialDescription": "다이얼",
|
||||
"app.audioDial.audioDialConfrenceText": "컨퍼런스 PIN 번호로 들어가기",
|
||||
"app.audioModal.autoplayBlockedDesc": "오디오 재생을 위한 당신의 허가가 필요합니다 ",
|
||||
"app.audioModal.playAudio": "오디오 재생",
|
||||
"app.audioModal.playAudio.arialabel" : "오디오 재생",
|
||||
"app.audioDial.tipIndicator": "팁",
|
||||
"app.audioDial.tipMessage": "전화기의 '0' 버튼을 누르면, 음소거/취소가 됩니다 ",
|
||||
"app.audioModal.connecting": "접속중",
|
||||
"app.audioModal.connectingEchoTest": "메아리 테스트를 위한 접속 ",
|
||||
"app.audioManager.joinedAudio": "오디오 컨퍼런스에 합류하셨습니다 ",
|
||||
"app.audioManager.joinedEcho": "메아리 테스트에 합류하셨습니다 ",
|
||||
"app.audioManager.leftAudio": "오디오 컨퍼런스에서 나오셨습니다 ",
|
||||
"app.audioManager.reconnectingAudio": "오디오에 재접속을 시도",
|
||||
"app.audioManager.genericError": "에러: 에러가 발생했습니다. 다시 시도 해 주세요 ",
|
||||
"app.audioManager.connectionError": "에러 : 접속 에러 ",
|
||||
"app.audioManager.requestTimeout": "에러: 요청중 시간초과 에러 ",
|
||||
"app.audioManager.invalidTarget": "에러 : 적절치 않은곳에 무언가를 요청하는 시도 ",
|
||||
"app.audioManager.mediaError": "에러 : 미디어 장치정보를 얻어 내는데 문제 발생",
|
||||
"app.audio.joinAudio": "오디오 합류",
|
||||
"app.audio.leaveAudio": "오디오 끝내기",
|
||||
"app.audio.enterSessionLabel": "세션 합류",
|
||||
"app.audio.playSoundLabel": "소리 재생",
|
||||
"app.audio.backLabel": "뒤로 ",
|
||||
"app.audio.audioSettings.titleLabel": "오디오 설정 선택",
|
||||
"app.audio.audioSettings.descriptionLabel": "마이크 공유를 허가 할것인지를 요청하는 창이 브라우저에서 나타날것입니다 ",
|
||||
"app.audio.audioSettings.microphoneSourceLabel": "마이크 소스 ",
|
||||
"app.audio.audioSettings.speakerSourceLabel": "스피커 소스 ",
|
||||
"app.audio.audioSettings.microphoneStreamLabel": "당신의 소리 볼륨",
|
||||
"app.audio.audioSettings.retryLabel": "재시도",
|
||||
"app.audio.listenOnly.backLabel": "뒤로 ",
|
||||
"app.audio.listenOnly.closeLabel": "닫기",
|
||||
"app.audio.permissionsOverlay.title": "마이크 사용 허가 ",
|
||||
"app.audio.permissionsOverlay.hint": "음성 컨퍼런스에 참여 하기 위해 미디어 장치에 대한 허가가 필요 합니다 :)",
|
||||
"app.error.removed": "컨퍼런스에서 퇴장하셨습니다 ",
|
||||
"app.error.meeting.ended": "컨퍼런스에서 나오셨습니다 ",
|
||||
"app.meeting.logout.duplicateUserEjectReason": "미팅에 참여 하기 위해 사용자를 복제 ",
|
||||
"app.meeting.logout.permissionEjectReason": "권한 위반으로 퇴거",
|
||||
"app.meeting.logout.ejectedFromMeeting": "미팅에서 퇴장되셨습니다 ",
|
||||
"app.meeting.logout.validateTokenFailedEjectReason": "권한 인증 실패 ",
|
||||
"app.meeting.logout.userInactivityEjectReason": "사용자 비활성화 ",
|
||||
"app.meeting-ended.rating.legendLabel": "피드백 평가",
|
||||
"app.meeting-ended.rating.starLabel": "Star",
|
||||
"app.modal.close": "닫기",
|
||||
"app.modal.close.description": "변경 무시 후 창 닫기 ",
|
||||
"app.modal.confirm": "완료",
|
||||
"app.modal.newTab": "(새 탭 열기)",
|
||||
"app.modal.confirm.description": "변경사항 저장후 창 닫기",
|
||||
"app.dropdown.close": "닫기",
|
||||
"app.error.400": "잘못된 요청",
|
||||
"app.error.401": "권한 없음",
|
||||
"app.error.403": "미팅에서 퇴장되셨습니다 ",
|
||||
"app.error.404": "없음",
|
||||
"app.error.410": "미팅 종료 ",
|
||||
"app.error.500": "어머나 ! 뭔가 잘못 되었어요 ",
|
||||
"app.error.leaveLabel": "재 접속",
|
||||
"app.error.fallback.presentation.title": "에러 발생",
|
||||
"app.error.fallback.presentation.description": "기록 되었습니다. 페이지를 새로고침 해 보세요 ",
|
||||
"app.error.fallback.presentation.reloadButton": "새로고침",
|
||||
"app.guest.waiting": "합류 허가를 기다림",
|
||||
"app.userList.guest.waitingUsers": "사용자 기다림",
|
||||
"app.userList.guest.waitingUsersTitle": "사용자 관리",
|
||||
"app.userList.guest.optionTitle": "보류자 돌아보기",
|
||||
"app.userList.guest.allowAllAuthenticated": "인증된 자를 모두 허용",
|
||||
"app.userList.guest.allowAllGuests": "모든 게스트 허용",
|
||||
"app.userList.guest.allowEveryone": "모두 허용",
|
||||
"app.userList.guest.denyEveryone": "모두 거절",
|
||||
"app.userList.guest.pendingUsers": "{0} 명 보류된 사용자 ",
|
||||
"app.userList.guest.pendingGuestUsers": "{0} 명 보류된 손님 ",
|
||||
"app.userList.guest.pendingGuestAlert": "세션에 합류후 당신의 승인을 기다림",
|
||||
"app.userList.guest.rememberChoice": "선택을 기억",
|
||||
"app.user-info.title": "디렉토리 검색",
|
||||
"app.toast.breakoutRoomEnded": "브레이크아웃 룸이 종료 되었습니다. 오디오로 다시 합류하세요",
|
||||
"app.toast.chat.public": "새로운 공동 채팅 메시지",
|
||||
"app.toast.chat.private": "새로운 개인채팅 메시지",
|
||||
"app.toast.chat.system": "시스템",
|
||||
"app.toast.clearedEmoji.label": "이모지 상태 정리 ",
|
||||
"app.toast.setEmoji.label": "이모지 상태를 {0} 로 설정",
|
||||
"app.toast.meetingMuteOn.label": "모든 사용자가 음소거 되었습니다 ",
|
||||
"app.toast.meetingMuteOff.label": "미팅 음소거 기능이 꺼졌습니다 ",
|
||||
"app.notification.recordingStart": "이 세션의 녹화가 시작되었습니다 ",
|
||||
"app.notification.recordingStop": "이 세션은 녹화되지 않습니다 ",
|
||||
"app.notification.recordingPaused": "이 세션은 더이상 녹화되지 않습니다 ",
|
||||
"app.notification.recordingAriaLabel": "녹화 시간",
|
||||
"app.shortcut-help.title": "키보드 바로가기",
|
||||
"app.shortcut-help.accessKeyNotAvailable": "접속 키 불가 ",
|
||||
"app.shortcut-help.comboLabel": "Combo",
|
||||
"app.shortcut-help.functionLabel": "기능",
|
||||
"app.shortcut-help.closeLabel": "닫기",
|
||||
"app.shortcut-help.closeDesc": "키보드 바로가기 창 닫기 ",
|
||||
"app.shortcut-help.openOptions": "옵션 열기",
|
||||
"app.shortcut-help.toggleUserList": "사용자 리스트 창 ",
|
||||
"app.shortcut-help.toggleMute": "음소거 / 해제",
|
||||
"app.shortcut-help.togglePublicChat": "공동 채팅 창 ( 사용자 리스트가 열려 있어야 함 )",
|
||||
"app.shortcut-help.hidePrivateChat": "개인 채팅 숨기기",
|
||||
"app.shortcut-help.closePrivateChat": "개인 채팅 닫기 ",
|
||||
"app.shortcut-help.openActions": "기능 메뉴 열기",
|
||||
"app.shortcut-help.openStatus": "상태 메뉴 열기",
|
||||
"app.shortcut-help.togglePan": "Pan 도구 활성화 ( 발표자 )",
|
||||
"app.shortcut-help.nextSlideDesc": "다음 슬라이드 (발표자)",
|
||||
"app.shortcut-help.previousSlideDesc": "이전 슬라이드 (발표자)",
|
||||
"app.lock-viewers.title": "관람자 잠그기",
|
||||
"app.lock-viewers.description": "이 옵션을 사용하면 시청자가 특정 기능을 사용하지 못하도록 제한 할 수 있습니다",
|
||||
"app.lock-viewers.featuresLable": "특징",
|
||||
"app.lock-viewers.lockStatusLabel": "상태",
|
||||
"app.lock-viewers.webcamLabel": "웹캠 공유",
|
||||
"app.lock-viewers.otherViewersWebcamLabel": "다른 관람자의 웹캠 보기",
|
||||
"app.lock-viewers.microphoneLable": "마이크 공유",
|
||||
"app.lock-viewers.PublicChatLabel": "공동 채팅 메시지 보내기",
|
||||
"app.lock-viewers.PrivateChatLable": "개인 채팅 메시지 보내기",
|
||||
"app.lock-viewers.notesLabel": "공유 노트 쓰기",
|
||||
"app.lock-viewers.userListLabel": "사용자 리스트에 있는 다른 관람자 보기 ",
|
||||
"app.lock-viewers.ariaTitle": "관람자 설정창 고정",
|
||||
"app.lock-viewers.button.apply": "적용",
|
||||
"app.lock-viewers.button.cancel": "취소",
|
||||
"app.lock-viewers.locked": "잠김",
|
||||
"app.lock-viewers.unlocked": "해제",
|
||||
"app.recording.startTitle": "녹화 시작",
|
||||
"app.recording.stopTitle": "녹화 일시중지",
|
||||
"app.recording.resumeTitle": "녹화 재시작",
|
||||
"app.recording.startDescription": "녹화 중단 버튼을 누른후 녹화 버튼을 다시 누를 수 있습니다 ",
|
||||
"app.recording.stopDescription": "녹화를 중단 하시겠습니까 ? 녹화버튼을 눌러서 녹화를 다시 시작하실 수 있습니다 ",
|
||||
"app.videoPreview.cameraLabel": "카메라",
|
||||
"app.videoPreview.profileLabel": "퀄리티",
|
||||
"app.videoPreview.cancelLabel": "취소",
|
||||
"app.videoPreview.closeLabel": "닫기",
|
||||
"app.videoPreview.findingWebcamsLabel": "웹캠 찾기",
|
||||
"app.videoPreview.startSharingLabel": "공유 시작",
|
||||
"app.videoPreview.webcamOptionLabel": "웹캠 선택",
|
||||
"app.videoPreview.webcamPreviewLabel": "웹캠 미리보기",
|
||||
"app.videoPreview.webcamSettingsTitle": "웹캠 설정",
|
||||
"app.videoPreview.webcamNotFoundLabel": "웹캠 찾지 못함",
|
||||
"app.videoPreview.profileNotFoundLabel": "지원되지 않는 카메라",
|
||||
"app.video.joinVideo": "웹캠 공유",
|
||||
"app.video.leaveVideo": "웹캠 공유 중지",
|
||||
"app.video.iceCandidateError": "ICE 추가 에러 ",
|
||||
"app.video.iceConnectionStateError": "에러 1107 : ICE 통신 실패 ",
|
||||
"app.video.permissionError": "웹캠 공유중 에러. 장치 권한을 체크 하세요 ",
|
||||
"app.video.sharingError": "웹캠 공유 에러 ",
|
||||
"app.video.notFoundError": "웹캠을 찾지 못했습니다. 연결을 확인 해 보세요 ",
|
||||
"app.video.notAllowed": "웹캠 공유 권한을 찾지 못했습니다. 브라우저 권한을 확인 하세요 ",
|
||||
"app.video.notSupportedError": "안전한 접속에서만 웹캠공유가 가능합니다. SSL 인증서에 문제가 없는지 확인 하세요 ",
|
||||
"app.video.notReadableError": "웹캠 비디오를 가져 올 수 없습니다. 다른 프로그램에서 웹캠을 사용하고 있지 않은지 확인 하세요 ",
|
||||
"app.video.mediaFlowTimeout1020": "에러1020 : 미디어가 서버에 접근이 안됩니다 ",
|
||||
"app.video.suggestWebcamLock": "관람자의 웹캠을 강제로 잠금설정 하겠습니까 ?",
|
||||
"app.video.suggestWebcamLockReason": "( 이것은 미팅의 안정성을 높여줄것입니다 )",
|
||||
"app.video.enable": "가능",
|
||||
"app.video.cancel": "취소",
|
||||
"app.video.swapCam": "교환",
|
||||
"app.video.swapCamDesc": "웹캠의 방향 전환",
|
||||
"app.video.videoLocked": "웹캠 공유 잠금",
|
||||
"app.video.videoButtonDesc": "웹캠 공유",
|
||||
"app.video.videoMenu": "비디오 메뉴",
|
||||
"app.video.videoMenuDisabled": "이 설정에서 웹캠의 비디오 메뉴 사용은 불가능합니다 ",
|
||||
"app.video.videoMenuDesc": "비디오 메뉴를 드롭다운 메뉴로 열기 ",
|
||||
"app.video.chromeExtensionError": "설치 하셔야 합니다 ",
|
||||
"app.video.chromeExtensionErrorLink": "이 크롬 확장프로그램",
|
||||
"app.video.stats.title": "접속 현황",
|
||||
"app.video.stats.packetsReceived": "패킷 접수 ",
|
||||
"app.video.stats.packetsSent": "패킷 전송",
|
||||
"app.video.stats.packetsLost": "패킷 실종",
|
||||
"app.video.stats.bitrate": "비트레이트",
|
||||
"app.video.stats.lostPercentage": "총 실패율",
|
||||
"app.video.stats.lostRecentPercentage": "최근 실패율",
|
||||
"app.video.stats.dimensions": "치수",
|
||||
"app.video.stats.codec": "코덱",
|
||||
"app.video.stats.decodeDelay": "디코딩 지연",
|
||||
"app.video.stats.rtt": "RTT",
|
||||
"app.video.stats.encodeUsagePercent": "인코딩 사용율",
|
||||
"app.video.stats.currentDelay": "현재 지연",
|
||||
"app.fullscreenButton.label": "{0} 을 꽉찬화면으로 ",
|
||||
"app.deskshare.iceConnectionStateError": "에러 1108 : 화면공유중 ICE 접속 실패 ",
|
||||
"app.sfu.mediaServerConnectionError2000": "에러 2000 : 미디어 서버 접속 불가 ",
|
||||
"app.sfu.mediaServerOffline2001": "에러 2001 : 미디어 서버 오프라인. 잠시후 다시 시도 하세요 ",
|
||||
"app.sfu.mediaServerNoResources2002": "에러 2002 : 미디어 서버에 가능한 자원이 없습니다 ",
|
||||
"app.sfu.mediaServerRequestTimeout2003": "에러 2003 : 미디어 서버 요청이 시간초과 되었습니다 ",
|
||||
"app.sfu.serverIceGatheringFailed2021": "에러 2021 : 미디어 서버가 ICE 정보를 모을 수 없습니다 ",
|
||||
"app.sfu.serverIceGatheringFailed2022": "에러 2022 : 미디어 서버 ICE 접속 실패 ",
|
||||
"app.sfu.mediaGenericError2200": "에러 2200 : 미디어 서버 진행 요청 실패 ",
|
||||
"app.sfu.invalidSdp2202":"에러 2202 : 클라이언트가 부적절한 SDP를 생성했습니다 ",
|
||||
"app.sfu.noAvailableCodec2203": "에러 2203 : 서버에서 적절한 코덱을 찾지 못했습니다 ",
|
||||
"app.meeting.endNotification.ok.label": "예",
|
||||
"app.whiteboard.annotations.poll": "설문결과 공개 ",
|
||||
"app.whiteboard.toolbar.tools": "도구들",
|
||||
"app.whiteboard.toolbar.tools.hand": "Pan",
|
||||
"app.whiteboard.toolbar.tools.pencil": "연필",
|
||||
"app.whiteboard.toolbar.tools.rectangle": "직사각형",
|
||||
"app.whiteboard.toolbar.tools.triangle": "삼각형",
|
||||
"app.whiteboard.toolbar.tools.ellipse": "타원",
|
||||
"app.whiteboard.toolbar.tools.line": "라인",
|
||||
"app.whiteboard.toolbar.tools.text": "텍스트",
|
||||
"app.whiteboard.toolbar.thickness": "두께 그리기",
|
||||
"app.whiteboard.toolbar.thicknessDisabled": "두께 그리기 불가",
|
||||
"app.whiteboard.toolbar.color": "색깔",
|
||||
"app.whiteboard.toolbar.colorDisabled": "색깔 불가",
|
||||
"app.whiteboard.toolbar.color.black": "검정",
|
||||
"app.whiteboard.toolbar.color.white": "흰색",
|
||||
"app.whiteboard.toolbar.color.red": "빨강",
|
||||
"app.whiteboard.toolbar.color.orange": "오렌지색",
|
||||
"app.whiteboard.toolbar.color.eletricLime": "Electric lime",
|
||||
"app.whiteboard.toolbar.color.lime": "Lime",
|
||||
"app.whiteboard.toolbar.color.cyan": "청록",
|
||||
"app.whiteboard.toolbar.color.dodgerBlue": "다저블루",
|
||||
"app.whiteboard.toolbar.color.blue": "청색",
|
||||
"app.whiteboard.toolbar.color.violet": "보라색",
|
||||
"app.whiteboard.toolbar.color.magenta": "자홍색",
|
||||
"app.whiteboard.toolbar.color.silver": "은색",
|
||||
"app.whiteboard.toolbar.undo": "주석 취소",
|
||||
"app.whiteboard.toolbar.clear": "모든 주석 삭제",
|
||||
"app.whiteboard.toolbar.multiUserOn": "다중 사용자 화이트보트 켜기",
|
||||
"app.whiteboard.toolbar.multiUserOff": "다중 사용자 화이트 보드 끄기",
|
||||
"app.whiteboard.toolbar.fontSize": "글자 크기 리스트",
|
||||
"app.feedback.title": "컨퍼런스에서 나오셨습니다 ",
|
||||
"app.feedback.subtitle": "BigBlueButton 사용 경험에 대해 듣고 싶습니다 (선택사항)",
|
||||
"app.feedback.textarea": "어떻게 BigBlueButton 을 더 낫게 할 수 있을까요 ?",
|
||||
"app.feedback.sendFeedback": "피드백 보내기",
|
||||
"app.feedback.sendFeedbackDesc": "피드백 보내고 미팅에서 나오기",
|
||||
"app.videoDock.webcamFocusLabel": "촛점",
|
||||
"app.videoDock.webcamFocusDesc": "선택된 웹캠에 집중",
|
||||
"app.videoDock.webcamUnfocusLabel": "포커스 해제",
|
||||
"app.videoDock.webcamUnfocusDesc": "선택된 웹캡에 포커스 해제",
|
||||
"app.videoDock.autoplayBlockedDesc": "다른 사용자의 웹캠을 보여 주기 위해 당신의 허가가 필요 합니다 ",
|
||||
"app.videoDock.autoplayAllowLabel": "웹캠 보기",
|
||||
"app.invitation.title": "브레이크아웃룸 초대",
|
||||
"app.invitation.confirm": "초대",
|
||||
"app.createBreakoutRoom.title": "브레이크 아웃룸",
|
||||
"app.createBreakoutRoom.ariaTitle": "브레이크 아웃룸 숨기기",
|
||||
"app.createBreakoutRoom.breakoutRoomLabel": "브레이크 아웃룸 {0}",
|
||||
"app.createBreakoutRoom.generatingURL": "URL 생성",
|
||||
"app.createBreakoutRoom.generatedURL": "생성",
|
||||
"app.createBreakoutRoom.duration": "지속 {0}",
|
||||
"app.createBreakoutRoom.room": "룸 {0}",
|
||||
"app.createBreakoutRoom.notAssigned": "배정 안됨 ({0})",
|
||||
"app.createBreakoutRoom.join": "룸에 참여 ",
|
||||
"app.createBreakoutRoom.joinAudio": "오디오 합류",
|
||||
"app.createBreakoutRoom.returnAudio": "음성 반환",
|
||||
"app.createBreakoutRoom.alreadyConnected": "이미 방에 있음",
|
||||
"app.createBreakoutRoom.confirm": "생성",
|
||||
"app.createBreakoutRoom.record": "녹화",
|
||||
"app.createBreakoutRoom.numberOfRooms": "룸 갯수",
|
||||
"app.createBreakoutRoom.durationInMinutes": "지속 (분)",
|
||||
"app.createBreakoutRoom.randomlyAssign": "무작위 배정",
|
||||
"app.createBreakoutRoom.endAllBreakouts": "브레이크 아웃룸 종료 ",
|
||||
"app.createBreakoutRoom.roomName": "{0} ( 룸 - {1} )",
|
||||
"app.createBreakoutRoom.doneLabel": "완료",
|
||||
"app.createBreakoutRoom.nextLabel": "다음",
|
||||
"app.createBreakoutRoom.minusRoomTime": "브레이크 아웃 룸 시간 줄이기 ",
|
||||
"app.createBreakoutRoom.addRoomTime": "브레이크 아웃룸 시간 늘리기",
|
||||
"app.createBreakoutRoom.addParticipantLabel": "+ 참가자 추가",
|
||||
"app.createBreakoutRoom.freeJoin": "사용자가 참여할 브레이크 아웃룸을 선택하게 허가 ",
|
||||
"app.createBreakoutRoom.leastOneWarnBreakout": "브레이크 아웃룸에 최소 한명을 배치 해야 합니다 ",
|
||||
"app.createBreakoutRoom.modalDesc": "팁 : 특정 브레이크 아웃룸에 사용자를 배정하기 위해 사용자 이름을 드래그 앤 드롭 할 수 있습니다 ",
|
||||
"app.createBreakoutRoom.roomTime": "{0} 분",
|
||||
"app.createBreakoutRoom.numberOfRoomsError": "룸 갯수가 적절치 않습니다 ",
|
||||
"app.externalVideo.start": "새로운 비디오 공유",
|
||||
"app.externalVideo.title": "외부 비디오 공유",
|
||||
"app.externalVideo.input": "외부 비디오 URL",
|
||||
"app.externalVideo.urlInput": "비디오 URL 추가 ",
|
||||
"app.externalVideo.urlError": "이 비디오 URL 은 지원되지 않습니다 ",
|
||||
"app.externalVideo.close": "닫기",
|
||||
"app.externalVideo.autoPlayWarning": "미디어 동기화를 가능하게 하기 위해 비디오 재생",
|
||||
"app.network.connection.effective.slow": "접속가능성 문제를 알려드립니다 ",
|
||||
"app.network.connection.effective.slow.help": "더 많은 정보 ",
|
||||
"app.externalVideo.noteLabel": "알림 : 외부 비디오 공유는 녹화에 나타나지 않습니다. Youtube, Vimeo, Instructure Media, Twitch and Daily Motion URL 은 지원됩니다 ",
|
||||
"app.actionsBar.actionsDropdown.shareExternalVideo": "외부 비디오 공유",
|
||||
"app.actionsBar.actionsDropdown.stopShareExternalVideo": "외부 비디오 공유 중지 ",
|
||||
"app.iOSWarning.label": "iOS 12.2 혹은 그 이상으로 업그레이드 하세요 ",
|
||||
"app.legacy.unsupportedBrowser": "지원되지 않는 브라우저를 사용하시는것 같습니다. 충분한 지원을 위해 {0} 이나 {1} 를 사용하세요 ",
|
||||
"app.legacy.upgradeBrowser": "오래된 버전의 브라우저를 사용하시는것 같습니다. 충분한 지원을 위해 브라우저를 업그레이드 하세요 ",
|
||||
"app.legacy.criosBrowser": "iOS 를 사용중이시라면, Safari 브라우저를 사용하세요 "
|
||||
|
||||
}
|
||||
|
677
bigbluebutton-html5/private/locales/nl.json
Normal file
677
bigbluebutton-html5/private/locales/nl.json
Normal file
@ -0,0 +1,677 @@
|
||||
{
|
||||
"app.home.greeting": "Uw presentatie begint binnenkort ...",
|
||||
"app.chat.submitLabel": "Bericht verzenden",
|
||||
"app.chat.errorMinMessageLength": "Het bericht is {0} tekens te kort",
|
||||
"app.chat.errorMaxMessageLength": "Het bericht is {0} tekens (s) te lang",
|
||||
"app.chat.disconnected": "De verbinding is verbroken, berichten kunnen niet worden verzonden",
|
||||
"app.chat.locked": "Chat is vergrendeld, berichten kunnen niet worden verzonden",
|
||||
"app.chat.inputLabel": "Berichtinvoer voor chat {0}",
|
||||
"app.chat.inputPlaceholder": "Bericht verzenden naar {0}",
|
||||
"app.chat.titlePublic": "Openbare chat",
|
||||
"app.chat.titlePrivate": "Privéchat met {0}",
|
||||
"app.chat.partnerDisconnected": "{0} heeft de vergadering verlaten",
|
||||
"app.chat.closeChatLabel": "Sluiten {0}",
|
||||
"app.chat.hideChatLabel": "Verberg {0}",
|
||||
"app.chat.moreMessages": "Meer berichten hieronder",
|
||||
"app.chat.dropdown.options": "Chatopties",
|
||||
"app.chat.dropdown.clear": "Wissen",
|
||||
"app.chat.dropdown.copy": "Kopiëren",
|
||||
"app.chat.dropdown.save": "Opslaan",
|
||||
"app.chat.label": "Chat",
|
||||
"app.chat.offline": "Offline",
|
||||
"app.chat.emptyLogLabel": "Chatlogboek leeg",
|
||||
"app.chat.clearPublicChatMessage": "De openbare chatgeschiedenis is gewist door een moderator",
|
||||
"app.chat.multi.typing": "Meerdere gebruikers typen",
|
||||
"app.chat.one.typing": "{0} is aan het typen",
|
||||
"app.chat.two.typing": "{0} en {1} zijn aan het typen",
|
||||
"app.captions.label": "Captions",
|
||||
"app.captions.menu.close": "Sluiten",
|
||||
"app.captions.menu.start": "Start",
|
||||
"app.captions.menu.ariaStart": "Begin bijschriften te schrijven",
|
||||
"app.captions.menu.ariaStartDesc": "Opent de ondertitelingseditor en sluit de modal",
|
||||
"app.captions.menu.select": "Selecteer beschikbare taal",
|
||||
"app.captions.menu.ariaSelect": "Taal ondertitels",
|
||||
"app.captions.menu.subtitle": "Selecteer een taal en stijlen voor ondertitels in uw sessie.",
|
||||
"app.captions.menu.title": "Gesloten bijschriften",
|
||||
"app.captions.menu.fontSize": "Grootte",
|
||||
"app.captions.menu.fontColor": "Tekstkleur",
|
||||
"app.captions.menu.fontFamily": "Font",
|
||||
"app.captions.menu.backgroundColor": "Achtergrondkleur",
|
||||
"app.captions.menu.previewLabel": "Preview",
|
||||
"app.captions.menu.cancelLabel": "Annuleren",
|
||||
"app.captions.pad.hide": "Verberg ondertitels",
|
||||
"app.captions.pad.tip": "Druk op Esc om de werkbalk van de editor scherp te stellen",
|
||||
"app.captions.pad.ownership": "Overnemen",
|
||||
"app.captions.pad.ownershipTooltip": "U wordt toegewezen als de eigenaar van {0} bijschriften",
|
||||
"app.captions.pad.interimResult": "Tussentijdse resultaten",
|
||||
"app.captions.pad.dictationStart": "Start dictation",
|
||||
"app.captions.pad.dictationStop": "Stop dictation",
|
||||
"app.captions.pad.dictationOnDesc": "Schakelt spraakherkenning in",
|
||||
"app.captions.pad.dictationOffDesc": "Schakelt spraakherkenning uit",
|
||||
"app.note.title": "Gedeelde notities",
|
||||
"app.note.label": "Opmerking",
|
||||
"app.note.hideNoteLabel": "Notitie verbergen",
|
||||
"app.user.activityCheck": "Controle gebruikersactiviteit",
|
||||
"app.user.activityCheck.label": "Controleer of de gebruiker nog steeds in vergadering is ({0})",
|
||||
"app.user.activityCheck.check": "Check",
|
||||
"app.note.tipLabel": "Druk op Esc om de werkbalk van de editor scherp te stellen",
|
||||
"app.userList.usersTitle": "Gebruikers",
|
||||
"app.userList.participantsTitle": "Deelnemers",
|
||||
"app.userList.messagesTitle": "Berichten",
|
||||
"app.userList.notesTitle": "Notes",
|
||||
"app.userList.notesListItem.unreadContent": "Nieuwe inhoud is beschikbaar in het gedeelte met gedeelde notities",
|
||||
"app.userList.captionsTitle": "Captions",
|
||||
"app.userList.presenter": "Presenter",
|
||||
"app.userList.you": "U",
|
||||
"app.userList.locked": "Vergrendeld",
|
||||
"app.userList.label": "Gebruikerslijst",
|
||||
"app.userList.toggleCompactView.label": "Compacte weergavemodus schakelen",
|
||||
"app.userList.guest": "Gast",
|
||||
"app.userList.menuTitleContext": "Beschikbare opties",
|
||||
"app.userList.chatListItem.unreadSingular": "{0} Nieuw bericht",
|
||||
"app.userList.chatListItem.unreadPlural": "{0} Nieuwe berichten",
|
||||
"app.userList.menu.chat.label": "Start een privéchat",
|
||||
"app.userList.menu.clearStatus.label": "Status wissen",
|
||||
"app.userList.menu.removeUser.label": "Gebruiker verwijderen",
|
||||
"app.userList.menu.muteUserAudio.label": "Gebruiker dempen",
|
||||
"app.userList.menu.unmuteUserAudio.label": "Gebruiker dempen ongedaan maken",
|
||||
"app.userList.userAriaLabel": "{0} {1} {2} Status {3}",
|
||||
"app.userList.menu.promoteUser.label": "Promoveren naar moderator",
|
||||
"app.userList.menu.demoteUser.label": "Degraderen tot gebruiker",
|
||||
"app.userList.menu.unlockUser.label": "Ontgrendel {0}",
|
||||
"app.userList.menu.lockUser.label": "Vergrendel {0}",
|
||||
"app.userList.menu.directoryLookup.label": "Woordenboek zoekopdracht",
|
||||
"app.userList.menu.makePresenter.label": "Presentator maken",
|
||||
"app.userList.userOptions.manageUsersLabel": "Gebruikers beheren",
|
||||
"app.userList.userOptions.muteAllLabel": "Alle gebruikers dempen",
|
||||
"app.userList.userOptions.muteAllDesc": "Dempt alle gebruikers in de vergadering",
|
||||
"app.userList.userOptions.clearAllLabel": "Alle statuspictogrammen wissen",
|
||||
"app.userList.userOptions.clearAllDesc": "Wist alle statuspictogrammen van gebruikers",
|
||||
"app.userList.userOptions.muteAllExceptPresenterLabel": "Alle gebruikers dempen behalve de presentator",
|
||||
"app.userList.userOptions.muteAllExceptPresenterDesc": "Dempt alle gebruikers in de vergadering behalve de presentator",
|
||||
"app.userList.userOptions.unmuteAllLabel": "Demping van vergadering uitschakelen",
|
||||
"app.userList.userOptions.unmuteAllDesc": "Demping van de vergadering ongedaan maken",
|
||||
"app.userList.userOptions.lockViewersLabel": "Vergrendel toeschouwers",
|
||||
"app.userList.userOptions.lockViewersDesc": "Bepaalde functies vergrendelen voor deelnemers aan de vergadering",
|
||||
"app.userList.userOptions.disableCam": "De webcams van kijkers zijn uitgeschakeld",
|
||||
"app.userList.userOptions.disableMic": "Microfoons van kijkers zijn uitgeschakeld",
|
||||
"app.userList.userOptions.disablePrivChat": "Privéchat is uitgeschakeld",
|
||||
"app.userList.userOptions.disablePubChat": "Openbare chat is uitgeschakeld",
|
||||
"app.userList.userOptions.disableNote": "Gedeelde notities zijn nu vergrendeld",
|
||||
"app.userList.userOptions.hideUserList": "Gebruikerslijst is nu verborgen voor kijkers",
|
||||
"app.userList.userOptions.webcamsOnlyForModerator": "Alleen moderators kunnen de webcams van kijkers zien (vanwege vergrendelingsinstellingen)",
|
||||
"app.userList.content.participants.options.clearedStatus": "Alle gebruikersstatus gewist",
|
||||
"app.userList.userOptions.enableCam": "De webcams van kijkers zijn ingeschakeld",
|
||||
"app.userList.userOptions.enableMic": "Microfoons van kijkers zijn ingeschakeld",
|
||||
"app.userList.userOptions.enablePrivChat": "Privéchat is ingeschakeld",
|
||||
"app.userList.userOptions.enablePubChat": "Openbare chat is ingeschakeld",
|
||||
"app.userList.userOptions.enableNote": "Gedeelde notities zijn nu ingeschakeld",
|
||||
"app.userList.userOptions.showUserList": "Gebruikerslijst wordt nu getoond aan kijkers",
|
||||
"app.userList.userOptions.enableOnlyModeratorWebcam": "U kunt uw webcam nu inschakelen, iedereen zal u zien",
|
||||
"app.media.label": "Media",
|
||||
"app.media.autoplayAlertDesc": "Toegang toestaan",
|
||||
"app.media.screenshare.start": "Screenshare is gestart",
|
||||
"app.media.screenshare.end": "Screenshare is afgelopen",
|
||||
"app.media.screenshare.safariNotSupported": "Screenshare wordt momenteel niet ondersteund door Safari. Gebruik Firefox of Google Chrome.",
|
||||
"app.media.screenshare.autoplayBlockedDesc": "We hebben uw toestemming nodig om u het scherm van de presentator te tonen.",
|
||||
"app.media.screenshare.autoplayAllowLabel": "Bekijk gedeeld scherm",
|
||||
"app.screenshare.notAllowed": "Fout: toestemming voor toegang tot scherm is niet verleend.",
|
||||
"app.screenshare.notSupportedError": "Fout: schermdeling is alleen toegestaan op veilige (SSL) domeinen",
|
||||
"app.screenshare.notReadableError": "Fout: er is een fout opgetreden tijdens het vastleggen van uw scherm",
|
||||
"app.screenshare.genericError": "Fout: er is een fout opgetreden met screensharing, probeer het opnieuw",
|
||||
"app.meeting.ended": "Deze sessie is beëindigd",
|
||||
"app.meeting.meetingTimeRemaining": "Resterende vergadertijd: {0}",
|
||||
"app.meeting.meetingTimeHasEnded": "Tijd beëindigd. Vergadering wordt binnenkort gesloten",
|
||||
"app.meeting.endedMessage": "U wordt teruggestuurd naar het startscherm",
|
||||
"app.meeting.alertMeetingEndsUnderOneMinute": "De vergadering wordt over een minuut gesloten.",
|
||||
"app.meeting.alertBreakoutEndsUnderOneMinute": "Brainstormruimte sluit over een minuut.",
|
||||
"app.presentation.hide": "Presentatie verbergen",
|
||||
"app.presentation.notificationLabel": "Huidige presentatie",
|
||||
"app.presentation.slideContent": "Dia inhoud",
|
||||
"app.presentation.startSlideContent": "Start dia-inhoud",
|
||||
"app.presentation.endSlideContent": "Einde van dia-inhoud",
|
||||
"app.presentation.emptySlideContent": "Geen inhoud voor huidige dia",
|
||||
"app.presentation.presentationToolbar.noNextSlideDesc": "Einde presentatie",
|
||||
"app.presentation.presentationToolbar.noPrevSlideDesc": "Start van presentatie",
|
||||
"app.presentation.presentationToolbar.selectLabel": "Selecteer dia",
|
||||
"app.presentation.presentationToolbar.prevSlideLabel": "Vorige dia",
|
||||
"app.presentation.presentationToolbar.prevSlideDesc": "De presentatie naar de vorige dia wijzigen",
|
||||
"app.presentation.presentationToolbar.nextSlideLabel": "Volgende dia",
|
||||
"app.presentation.presentationToolbar.nextSlideDesc": "De presentatie naar de volgende dia wijzigen",
|
||||
"app.presentation.presentationToolbar.skipSlideLabel": "Dia overslaan",
|
||||
"app.presentation.presentationToolbar.skipSlideDesc": "De presentatie in een specifieke dia wijzigen",
|
||||
"app.presentation.presentationToolbar.fitWidthLabel": "Aanpassen aan breedte",
|
||||
"app.presentation.presentationToolbar.fitWidthDesc": "De volledige breedte van de dia weergeven",
|
||||
"app.presentation.presentationToolbar.fitScreenLabel": "Aanpassen aan scherm",
|
||||
"app.presentation.presentationToolbar.fitScreenDesc": "De hele dia weergeven",
|
||||
"app.presentation.presentationToolbar.zoomLabel": "Zoom",
|
||||
"app.presentation.presentationToolbar.zoomDesc": "Het zoomniveau van de presentatie wijzigen",
|
||||
"app.presentation.presentationToolbar.zoomInLabel": "Inzoomen",
|
||||
"app.presentation.presentationToolbar.zoomInDesc": "Inzoomen op de presentatie",
|
||||
"app.presentation.presentationToolbar.zoomOutLabel": "Uitzoomen",
|
||||
"app.presentation.presentationToolbar.zoomOutDesc": "Uitzoomen op de presentatie",
|
||||
"app.presentation.presentationToolbar.zoomReset": "Zoom resetten",
|
||||
"app.presentation.presentationToolbar.zoomIndicator": "Huidig zoompercentage",
|
||||
"app.presentation.presentationToolbar.fitToWidth": "Aanpassen aan breedte",
|
||||
"app.presentation.presentationToolbar.fitToPage": "Aanpassen aan pagina",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Dia {0}",
|
||||
"app.presentationUploder.title": "Presentatie",
|
||||
"app.presentationUploder.message": "Als presentator kunt u elk kantoordocument of PDF-bestand uploaden. We raden het PDF-bestand aan voor de beste resultaten. Zorg ervoor dat een presentatie is geselecteerd met behulp van het selectievakje aan de rechterkant. ",
|
||||
"app.presentationUploder.uploadLabel": "Upload",
|
||||
"app.presentationUploder.confirmLabel": "Bevestigen",
|
||||
"app.presentationUploder.confirmDesc": "Sla uw wijzigingen op en start de presentatie",
|
||||
"app.presentationUploder.dismissLabel": "Annuleren",
|
||||
"app.presentationUploder.dismissDesc": "Sluit het modale venster en negeer uw wijzigingen",
|
||||
"app.presentationUploder.dropzoneLabel": "Sleep bestanden hierheen om te uploaden",
|
||||
"app.presentationUploder.dropzoneImagesLabel": "Sleep afbeeldingen hierheen om te uploaden",
|
||||
"app.presentationUploder.browseFilesLabel": "of blader naar bestanden",
|
||||
"app.presentationUploder.browseImagesLabel": "of bladeren / vastleggen voor afbeeldingen",
|
||||
"app.presentationUploder.fileToUpload": "Wordt geüpload ...",
|
||||
"app.presentationUploder.currentBadge": "Current",
|
||||
"app.presentationUploder.genericError": "Ops, er is iets misgegaan",
|
||||
"app.presentationUploder.rejectedError": "De geselecteerde bestanden zijn geweigerd. Controleer de bestandstype (s).",
|
||||
"app.presentationUploder.upload.progress": "Uploaden ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Bestand is te groot. Splitsen in meerdere bestanden.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Verwerkingspagina {0} van {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Bestand converteren ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Miniaturen genereren ...",
|
||||
"app.presentationUploder.conversion.generatedSlides": "Dia's gegenereerd ...",
|
||||
"app.presentationUploder.conversion.generatingSvg": "SVG-afbeeldingen genereren ...",
|
||||
"app.presentationUploder.conversion.pageCountExceeded": "Oops, het aantal pagina's overschreed de limiet van 200 pagina's",
|
||||
"app.presentationUploder.conversion.pdfHasBigPage": "We konden het PDF-bestand niet converteren, probeer het te optimaliseren",
|
||||
"app.presentationUploder.conversion.timeout": "Ops, de conversie heeft te lang geduurd",
|
||||
"app.presentationUploder.isDownloadableLabel": "Sta niet toe dat de presentatie wordt gedownload",
|
||||
"app.presentationUploder.isNotDownloadableLabel": "Presentatie toestaan om te worden gedownload",
|
||||
"app.presentationUploder.removePresentationLabel": "Presentatie verwijderen",
|
||||
"app.presentationUploder.setAsCurrentPresentation": "Presentatie instellen als actueel",
|
||||
"app.presentationUploder.tableHeading.filename": "Bestandsnaam",
|
||||
"app.presentationUploder.tableHeading.options": "Opties",
|
||||
"app.presentationUploder.tableHeading.status": "Status",
|
||||
"app.poll.pollPaneTitle": "Polling",
|
||||
"app.poll.quickPollTitle": "Snelle peiling",
|
||||
"app.poll.hidePollDesc": "Verbergt het peilmenupaneel",
|
||||
"app.poll.customPollInstruction": "Om een aangepaste peiling te maken, selecteert u de onderstaande knop en voert u uw opties in.",
|
||||
"app.poll.quickPollInstruction": "Selecteer hieronder een optie om uw peiling te starten.",
|
||||
"app.poll.customPollLabel": "Aangepaste poll",
|
||||
"app.poll.startCustomLabel": "Start aangepaste peiling",
|
||||
"app.poll.activePollInstruction": "Laat dit paneel open om live reacties op uw enquête te zien. Wanneer u klaar bent, selecteert u 'Pollingsresultaten publiceren' om de resultaten te publiceren en de poll te beëindigen.",
|
||||
"app.poll.publishLabel": "Polling-resultaten publiceren",
|
||||
"app.poll.backLabel": "Terug naar polling-opties",
|
||||
"app.poll.closeLabel": "Sluiten",
|
||||
"app.poll.waitingLabel": "Wachten op antwoorden ({0} / {1})",
|
||||
"app.poll.ariaInputCount": "Aangepaste poll-optie {0} van {1}",
|
||||
"app.poll.customPlaceholder": "Poll-optie toevoegen",
|
||||
"app.poll.noPresentationSelected": "Geen presentatie geselecteerd! Selecteer er één.",
|
||||
"app.poll.clickHereToSelect": "Klik hier om te selecteren",
|
||||
"app.poll.t": "Waar",
|
||||
"app.poll.f": "Niet waar",
|
||||
"app.poll.tf": "Waar / niet waar",
|
||||
"app.poll.y": "Ja",
|
||||
"app.poll.n": "Nee",
|
||||
"app.poll.yn": "Ja / Nee",
|
||||
"app.poll.a2": "A / B",
|
||||
"app.poll.a3": "A / B / C",
|
||||
"app.poll.a4": "A / B / C / D",
|
||||
"app.poll.a5": "A / B / C / D / E",
|
||||
"app.poll.answer.true": "Waar",
|
||||
"app.poll.answer.false": "Niet waar",
|
||||
"app.poll.answer.yes": "Ja",
|
||||
"app.poll.answer.no": "Nee",
|
||||
"app.poll.answer.a": "A",
|
||||
"app.poll.answer.b": "B",
|
||||
"app.poll.answer.c": "C",
|
||||
"app.poll.answer.d": "D",
|
||||
"app.poll.answer.e": "E",
|
||||
"app.poll.liveResult.usersTitle": "Gebruikers",
|
||||
"app.poll.liveResult.responsesTitle": "Antwoord",
|
||||
"app.polling.pollingTitle": "Polling-opties",
|
||||
"app.polling.pollAnswerLabel": "Poll-antwoord {0}",
|
||||
"app.polling.pollAnswerDesc": "Selecteer deze optie om op {0} te stemmen",
|
||||
"app.failedMessage": "Excuses, problemen bij het verbinden met de server.",
|
||||
"app.downloadPresentationButton.label": "Download de originele presentatie",
|
||||
"app.connectingMessage": "Bezig met verbinden ...",
|
||||
"app.waitingMessage": "Verbinding verbroken. Probeer opnieuw verbinding te maken over {0} seconden ...",
|
||||
"app.retryNow": "Nu opnieuw proberen",
|
||||
"app.navBar.settingsDropdown.optionsLabel": "Opties",
|
||||
"app.navBar.settingsDropdown.fullscreenLabel": "Volledig scherm maken",
|
||||
"app.navBar.settingsDropdown.settingsLabel": "Instellingen",
|
||||
"app.navBar.settingsDropdown.aboutLabel": "Over",
|
||||
"app.navBar.settingsDropdown.leaveSessionLabel": "Uitloggen",
|
||||
"app.navBar.settingsDropdown.exitFullscreenLabel": "Volledig scherm afsluiten",
|
||||
"app.navBar.settingsDropdown.fullscreenDesc": "Maak het instellingenmenu volledig scherm",
|
||||
"app.navBar.settingsDropdown.settingsDesc": "Wijzig de algemene instellingen",
|
||||
"app.navBar.settingsDropdown.aboutDesc": "Informatie over de client weergeven",
|
||||
"app.navBar.settingsDropdown.leaveSessionDesc": "De vergadering verlaten",
|
||||
"app.navBar.settingsDropdown.exitFullscreenDesc": "Volledig scherm afsluiten",
|
||||
"app.navBar.settingsDropdown.hotkeysLabel": "Sneltoetsen",
|
||||
"app.navBar.settingsDropdown.hotkeysDesc": "Lijst met beschikbare sneltoetsen",
|
||||
"app.navBar.settingsDropdown.helpLabel": "Help",
|
||||
"app.navBar.settingsDropdown.helpDesc": "Koppel gebruiker naar videotutorials (opent nieuw tabblad)",
|
||||
"app.navBar.settingsDropdown.endMeetingDesc": "Beëindigt de huidige vergadering",
|
||||
"app.navBar.settingsDropdown.endMeetingLabel": "Vergadering beëindigen",
|
||||
"app.navBar.userListToggleBtnLabel": "Gebruikerslijst tonen/verbergen",
|
||||
"app.navBar.toggleUserList.ariaLabel": "Gebruikers en berichten schakelen",
|
||||
"app.navBar.toggleUserList.newMessages": "met melding van nieuwe berichten",
|
||||
"app.navBar.recording": "Deze sessie wordt opgenomen",
|
||||
"app.navBar.recording.on": "Opname",
|
||||
"app.navBar.recording.off": "Niet opnemen",
|
||||
"app.navBar.emptyAudioBrdige": "Geen actieve microfoon. Deel je microfoon om audio toe te voegen aan deze opname.",
|
||||
"app.leaveConfirmation.confirmLabel": "Verlaten",
|
||||
"app.leaveConfirmation.confirmDesc": "Logt u uit van de vergadering",
|
||||
"app.endMeeting.title": "Vergadering beëindigen",
|
||||
"app.endMeeting.description": "Weet u zeker dat u deze sessie wilt beëindigen?",
|
||||
"app.endMeeting.yesLabel": "Ja",
|
||||
"app.endMeeting.noLabel": "Nee",
|
||||
"app.about.title": "Over",
|
||||
"app.about.version": "Client build:",
|
||||
"app.about.copyright": "Auteursrecht:",
|
||||
"app.about.confirmLabel": "OK",
|
||||
"app.about.confirmDesc": "OK",
|
||||
"app.about.dismissLabel": "Annuleren",
|
||||
"app.about.dismissDesc": "Sluiten over klantinformatie",
|
||||
"app.actionsBar.changeStatusLabel": "Status wijzigen",
|
||||
"app.actionsBar.muteLabel": "Dempen",
|
||||
"app.actionsBar.unmuteLabel": "Dempen opheffen",
|
||||
"app.actionsBar.camOffLabel": "Camera uit",
|
||||
"app.actionsBar.raiseLabel": "Raise",
|
||||
"app.actionsBar.label": "Actiesbalk",
|
||||
"app.actionsBar.actionsDropdown.restorePresentationLabel": "Presentatie herstellen",
|
||||
"app.actionsBar.actionsDropdown.restorePresentationDesc": "Knop om de presentatie te herstellen nadat deze is gesloten",
|
||||
"app.screenshare.screenShareLabel" : "Screen share",
|
||||
"app.submenu.application.applicationSectionTitle": "Applicatie",
|
||||
"app.submenu.application.animationsLabel": "Animaties",
|
||||
"app.submenu.application.audioAlertLabel": "Hoorbare waarschuwingen voor chat",
|
||||
"app.submenu.application.pushAlertLabel": "Pop-upwaarschuwingen voor chat",
|
||||
"app.submenu.application.fontSizeControlLabel": "Lettergrootte",
|
||||
"app.submenu.application.increaseFontBtnLabel": "Toepassing lettertype vergroten",
|
||||
"app.submenu.application.decreaseFontBtnLabel": "Toepassing lettertype verkleinen",
|
||||
"app.submenu.application.currentSize": "momenteel {0}",
|
||||
"app.submenu.application.languageLabel": "Taal van de applicatie",
|
||||
"app.submenu.application.languageOptionLabel": "Kies taal",
|
||||
"app.submenu.application.noLocaleOptionLabel": "Geen actieve landinstellingen",
|
||||
"app.submenu.audio.micSourceLabel": "Microfoonbron",
|
||||
"app.submenu.audio.speakerSourceLabel": "Luidsprekerbron",
|
||||
"app.submenu.audio.streamVolumeLabel": "Het volume van uw audiostream",
|
||||
"app.submenu.video.title": "Video",
|
||||
"app.submenu.video.videoSourceLabel": "Bron weergeven",
|
||||
"app.submenu.video.videoOptionLabel": "Kies weergavebron",
|
||||
"app.submenu.video.videoQualityLabel": "Videokwaliteit",
|
||||
"app.submenu.video.qualityOptionLabel": "Kies de videokwaliteit",
|
||||
"app.submenu.video.participantsCamLabel": "Webcams van deelnemers bekijken",
|
||||
"app.settings.applicationTab.label": "Applicatie",
|
||||
"app.settings.audioTab.label": "Audio",
|
||||
"app.settings.videoTab.label": "Video",
|
||||
"app.settings.usersTab.label": "Deelnemers",
|
||||
"app.settings.main.label": "Instellingen",
|
||||
"app.settings.main.cancel.label": "Annuleren",
|
||||
"app.settings.main.cancel.label.description": "Gaat de wijzigingen weg en sluit het instellingenmenu",
|
||||
"app.settings.main.save.label": "Opslaan",
|
||||
"app.settings.main.save.label.description": "Slaat de wijzigingen op en sluit het instellingenmenu",
|
||||
"app.settings.dataSavingTab.label": "Gegevensbesparing",
|
||||
"app.settings.dataSavingTab.webcam": "Webcams inschakelen",
|
||||
"app.settings.dataSavingTab.screenShare": "Desktop delen inschakelen",
|
||||
"app.settings.dataSavingTab.description": "Om uw bandbreedte te besparen, kunt u aanpassen wat momenteel wordt weergegeven.",
|
||||
"app.settings.save-notification.label": "Instellingen werden opgeslagen",
|
||||
"app.switch.onLabel": "ON",
|
||||
"app.switch.offLabel": "OFF",
|
||||
"app.actionsBar.actionsDropdown.actionsLabel": "Acties",
|
||||
"app.actionsBar.actionsDropdown.presentationLabel": "Een presentatie uploaden",
|
||||
"app.actionsBar.actionsDropdown.initPollLabel": "Een peiling initiëren",
|
||||
"app.actionsBar.actionsDropdown.desktopShareLabel": "Deel uw scherm",
|
||||
"app.actionsBar.actionsDropdown.lockedDesktopShareLabel": "Screenshare vergrendeld",
|
||||
"app.actionsBar.actionsDropdown.stopDesktopShareLabel": "Stop met het delen van uw scherm",
|
||||
"app.actionsBar.actionsDropdown.presentationDesc": "Upload uw presentatie",
|
||||
"app.actionsBar.actionsDropdown.initPollDesc": "Een peiling initiëren",
|
||||
"app.actionsBar.actionsDropdown.desktopShareDesc": "Deel uw scherm met anderen",
|
||||
"app.actionsBar.actionsDropdown.stopDesktopShareDesc": "Stop met het delen van uw scherm met",
|
||||
"app.actionsBar.actionsDropdown.pollBtnLabel": "Start een peiling",
|
||||
"app.actionsBar.actionsDropdown.pollBtnDesc": "Schakelt poll deelvenster",
|
||||
"app.actionsBar.actionsDropdown.saveUserNames": "Gebruikersnamen opslaan",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoom": "Brainstormruimtes maken",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoomDesc": "breakouts maken voor het splitsen van de huidige vergadering",
|
||||
"app.actionsBar.actionsDropdown.captionsLabel": "Schrijf gesloten bijschriften",
|
||||
"app.actionsBar.actionsDropdown.captionsDesc": "Schakelt het deelvenster bijschriften",
|
||||
"app.actionsBar.actionsDropdown.takePresenter": "Presenter nemen",
|
||||
"app.actionsBar.actionsDropdown.takePresenterDesc": "Wijs uzelf toe als de nieuwe presentator",
|
||||
"app.actionsBar.emojiMenu.statusTriggerLabel": "Status instellen",
|
||||
"app.actionsBar.emojiMenu.awayLabel": "Afwezig",
|
||||
"app.actionsBar.emojiMenu.awayDesc": "Wijzig uw status in afwezig",
|
||||
"app.actionsBar.emojiMenu.raiseHandLabel": "Hand opsteken",
|
||||
"app.actionsBar.emojiMenu.raiseHandDesc": "Steek uw hand op om een vraag te stellen",
|
||||
"app.actionsBar.emojiMenu.neutralLabel": "Onbeslist",
|
||||
"app.actionsBar.emojiMenu.neutralDesc": "Wijzig uw status in onbeslist",
|
||||
"app.actionsBar.emojiMenu.confusedLabel": "Verward",
|
||||
"app.actionsBar.emojiMenu.confusedDesc": "Wijzig uw status in verward",
|
||||
"app.actionsBar.emojiMenu.sadLabel": "Ongelukkig",
|
||||
"app.actionsBar.emojiMenu.sadDesc": "Wijzig uw status in ongelukkig",
|
||||
"app.actionsBar.emojiMenu.happyLabel": "Gelukkig",
|
||||
"app.actionsBar.emojiMenu.happyDesc": "Wijzig uw status in gelukkig",
|
||||
"app.actionsBar.emojiMenu.noneLabel": "Status wissen",
|
||||
"app.actionsBar.emojiMenu.noneDesc": "Uw status wissen",
|
||||
"app.actionsBar.emojiMenu.applauseLabel": "Applaus",
|
||||
"app.actionsBar.emojiMenu.applauseDesc": "Wijzig uw status in applaus",
|
||||
"app.actionsBar.emojiMenu.thumbsUpLabel": "Duim omhoog",
|
||||
"app.actionsBar.emojiMenu.thumbsUpDesc": "Wijzig uw status in duim omhoog",
|
||||
"app.actionsBar.emojiMenu.thumbsDownLabel": "Duim omlaag",
|
||||
"app.actionsBar.emojiMenu.thumbsDownDesc": "Wijzig uw status in duim omlaag",
|
||||
"app.actionsBar.currentStatusDesc": "huidige status {0}",
|
||||
"app.actionsBar.captions.start": "Begin met het bekijken van ondertitels",
|
||||
"app.actionsBar.captions.stop": "Stop met het bekijken van ondertitels",
|
||||
"app.audioNotification.audioFailedError1001": "Fout 1001: WebSocket verbroken",
|
||||
"app.audioNotification.audioFailedError1002": "Fout 1002: Kon geen WebSocket-verbinding maken",
|
||||
"app.audioNotification.audioFailedError1003": "Fout 1003: browserversie niet ondersteund",
|
||||
"app.audioNotification.audioFailedError1004": "Fout 1004: mislukte oproep (reden = {0})",
|
||||
"app.audioNotification.audioFailedError1005": "Fout 1005: oproep is onverwacht beëindigd",
|
||||
"app.audioNotification.audioFailedError1006": "Fout 1006: time-out voor oproep",
|
||||
"app.audioNotification.audioFailedError1007": "Fout 1007: ICE-onderhandelingen mislukt",
|
||||
"app.audioNotification.audioFailedError1008": "Fout 1008: overdracht mislukt",
|
||||
"app.audioNotification.audioFailedError1009": "Fout 1009: kan STUN / TURN-serverinformatie niet ophalen",
|
||||
"app.audioNotification.audioFailedError1010": "Fout 1010: time-out ICE-onderhandelingen",
|
||||
"app.audioNotification.audioFailedError1011": "Fout 1011: ICE die time-out verzamelt",
|
||||
"app.audioNotification.audioFailedError1012": "Fout 1012: ICE-verbinding gesloten",
|
||||
"app.audioNotification.audioFailedMessage": "Uw audioverbinding kon geen verbinding maken",
|
||||
"app.audioNotification.mediaFailedMessage": "getUserMicMedia is mislukt omdat alleen beveiligde oorsprong is toegestaan",
|
||||
"app.audioNotification.closeLabel": "Sluiten",
|
||||
"app.audioNotificaion.reconnectingAsListenOnly": "Microfoon is vergrendeld voor kijkers, u bent verbonden als alleen luisteren",
|
||||
"app.breakoutJoinConfirmation.title": "Deelnemen aan brainstormruimte",
|
||||
"app.breakoutJoinConfirmation.message": "Wilt u deelnemen",
|
||||
"app.breakoutJoinConfirmation.confirmDesc": "Ga met je mee naar de brainstormruimte",
|
||||
"app.breakoutJoinConfirmation.dismissLabel": "Annuleren",
|
||||
"app.breakoutJoinConfirmation.dismissDesc": "Sluit en weigert toegang tot de brainstormruimte",
|
||||
"app.breakoutJoinConfirmation.freeJoinMessage": "Kies een brainstormruimte om lid te worden",
|
||||
"app.breakoutTimeRemainingMessage": "Resterende brainstorm-tijd: {0}",
|
||||
"app.breakoutWillCloseMessage": "Tijd beëindigd. Brainstormruimte wordt binnenkort gesloten",
|
||||
"app.calculatingBreakoutTimeRemaining": "Resterende tijd berekenen ...",
|
||||
"app.audioModal.ariaTitle": "Deelnemen aan audiomodaal",
|
||||
"app.audioModal.microphoneLabel": "Microfoon",
|
||||
"app.audioModal.listenOnlyLabel": "Alleen luisteren",
|
||||
"app.audioModal.audioChoiceLabel": "Hoe wilt u deelnemen aan de audio?",
|
||||
"app.audioModal.iOSBrowser": "Audio / Video niet ondersteund",
|
||||
"app.audioModal.iOSErrorDescription": "Op dit moment worden audio en video niet ondersteund in Chrome voor iOS.",
|
||||
"app.audioModal.iOSErrorRecommendation": "We raden het gebruik van Safari iOS aan.",
|
||||
"app.audioModal.audioChoiceDesc": "Selecteer hoe u aan de audio deelneemt aan deze vergadering",
|
||||
"app.audioModal.unsupportedBrowserLabel": "Het lijkt erop dat u een browser gebruikt die niet volledig wordt ondersteund. Gebruik {0} of {1} voor volledige ondersteuning.",
|
||||
"app.audioModal.closeLabel": "Sluiten",
|
||||
"app.audioModal.yes": "Ja",
|
||||
"app.audioModal.no": "Nee",
|
||||
"app.audioModal.yes.arialabel" : "Echo is hoorbaar",
|
||||
"app.audioModal.no.arialabel" : "Echo is onhoorbaar",
|
||||
"app.audioModal.echoTestTitle": "Dit is een privé-echotest. Spreek een paar woorden. Heb je audio gehoord?",
|
||||
"app.audioModal.settingsTitle": "Wijzig uw audio-instellingen",
|
||||
"app.audioModal.helpTitle": "Er was een probleem met uw media-apparaten",
|
||||
"app.audioModal.helpText": "Heeft u toestemming gegeven voor toegang tot uw microfoon? Merk op dat er een dialoogvenster moet verschijnen wanneer u probeert deel te nemen aan audio, waarin u wordt gevraagd om machtigingen voor uw media-apparaat. Accepteer dat om deel te nemen aan de audioconferentie. Als dat niet het geval is, probeer dan uw microfoonrechten te wijzigen in de instellingen van uw browser. ",
|
||||
"app.audioModal.help.noSSL": "Deze pagina is niet beveiligd. Voor toegang tot de microfoon moet de pagina via HTTPS worden aangeboden. Neem contact op met de serverbeheerder.",
|
||||
"app.audioModal.help.macNotAllowed": "Het lijkt erop dat uw Mac-systeemvoorkeuren de toegang tot uw microfoon blokkeren. Open Systeemvoorkeuren> Beveiliging en privacy> Privacy> Microfoon en controleer of de browser die u gebruikt is aangevinkt.",
|
||||
"app.audioModal.audioDialTitle": "Doe mee met uw telefoon",
|
||||
"app.audioDial.audioDialDescription": "Dial",
|
||||
"app.audioDial.audioDialConfrenceText": "en voer de pincode van de conferentie in:",
|
||||
"app.audioModal.autoplayBlockedDesc": "We hebben uw toestemming nodig om audio af te spelen.",
|
||||
"app.audioModal.playAudio": "Audio afspelen",
|
||||
"app.audioModal.playAudio.arialabel" : "Audio afspelen",
|
||||
"app.audioDial.tipIndicator": "Tip",
|
||||
"app.audioDial.tipMessage": "Druk op de '0'-toets op uw telefoon om het dempen / dempen ongedaan te maken.",
|
||||
"app.audioModal.connecting": "Bezig met verbinden",
|
||||
"app.audioModal.connectingEchoTest": "Verbinding maken met echotest",
|
||||
"app.audioManager.joinedAudio": "U hebt deelgenomen aan de audioconferentie",
|
||||
"app.audioManager.joinedEcho": "U hebt zich aangesloten bij de echotest",
|
||||
"app.audioManager.leftAudio": "U hebt de audioconferentie verlaten",
|
||||
"app.audioManager.reconnectingAudio": "Poging om opnieuw verbinding te maken met audio",
|
||||
"app.audioManager.genericError": "Fout: er is een fout opgetreden, probeer het opnieuw",
|
||||
"app.audioManager.connectionError": "Fout: verbindingsfout",
|
||||
"app.audioManager.requestTimeout": "Fout: er was een time-out in de aanvraag",
|
||||
"app.audioManager.invalidTarget": "Fout: geprobeerd iets aan een ongeldig doel te vragen",
|
||||
"app.audioManager.mediaError": "Fout: er is een probleem opgetreden bij het ophalen van uw media-apparaten",
|
||||
"app.audio.joinAudio": "Deelnemen aan audio",
|
||||
"app.audio.leaveAudio": "Audio verlaten",
|
||||
"app.audio.enterSessionLabel": "Sessie invoeren",
|
||||
"app.audio.playSoundLabel": "Geluid afspelen",
|
||||
"app.audio.backLabel": "Terug",
|
||||
"app.audio.audioSettings.titleLabel": "Kies uw audio-instellingen",
|
||||
"app.audio.audioSettings.descriptionLabel": "Let op, er verschijnt een dialoogvenster in uw browser waarin u het delen van uw microfoon moet accepteren.",
|
||||
"app.audio.audioSettings.microphoneSourceLabel": "Microfoonbron",
|
||||
"app.audio.audioSettings.speakerSourceLabel": "Luidsprekerbron",
|
||||
"app.audio.audioSettings.microphoneStreamLabel": "Het volume van uw audiostream",
|
||||
"app.audio.audioSettings.retryLabel": "Retry",
|
||||
"app.audio.listenOnly.backLabel": "Back",
|
||||
"app.audio.listenOnly.closeLabel": "Sluiten",
|
||||
"app.audio.permissionsOverlay.title": "Toegang tot uw microfoon toestaan",
|
||||
"app.audio.permissionsOverlay.hint": "We moeten u toestemming geven om uw media-apparaten te gebruiken om u bij de spraakconferentie te voegen :)",
|
||||
"app.error.removed": "U bent verwijderd uit de conferentie",
|
||||
"app.error.meeting.ended": "U bent uitgelogd van de conferentie",
|
||||
"app.meeting.logout.duplicateUserEjectReason": "Dubbele gebruiker die aan de vergadering probeert deel te nemen",
|
||||
"app.meeting.logout.permissionEjectReason": "Uitgevoerd wegens schending van de rechten",
|
||||
"app.meeting.logout.ejectedFromMeeting": "U bent uit de vergadering verwijderd",
|
||||
"app.meeting.logout.validateTokenFailedEjectReason": "Kan autorisatietoken niet valideren",
|
||||
"app.meeting.logout.userInactivityEjectReason": "Gebruiker te lang inactief",
|
||||
"app.meeting-ended.rating.legendLabel": "Feedbackbeoordeling",
|
||||
"app.meeting-ended.rating.starLabel": "Star",
|
||||
"app.modal.close": "Sluiten",
|
||||
"app.modal.close.description": "Negeert wijzigingen en sluit de modal",
|
||||
"app.modal.confirm": "Gereed",
|
||||
"app.modal.newTab": "(opent nieuw tabblad)",
|
||||
"app.modal.confirm.description": "Slaat wijzigingen op en sluit de modal",
|
||||
"app.dropdown.close": "Sluiten",
|
||||
"app.error.400": "Ongeldig verzoek",
|
||||
"app.error.401": "Niet geautoriseerd",
|
||||
"app.error.403": "U bent verwijderd uit de vergadering",
|
||||
"app.error.404": "Niet gevonden",
|
||||
"app.error.410": "Vergadering is beëindigd",
|
||||
"app.error.500": "Ops, er is iets misgegaan",
|
||||
"app.error.leaveLabel": "Log opnieuw in",
|
||||
"app.error.fallback.presentation.title": "Er is een fout opgetreden",
|
||||
"app.error.fallback.presentation.description": "Het is vastgelegd. Probeer de pagina opnieuw te laden.",
|
||||
"app.error.fallback.presentation.reloadButton": "Herladen",
|
||||
"app.guest.waiting": "Wachten op goedkeuring",
|
||||
"app.userList.guest.waitingUsers": "Wachtende gebruikers",
|
||||
"app.userList.guest.waitingUsersTitle": "Gebruikersbeheer",
|
||||
"app.userList.guest.optionTitle": "Gebruikers in behandeling beoordelen",
|
||||
"app.userList.guest.allowAllAuthenticated": "Alle geverifieerde toestaan",
|
||||
"app.userList.guest.allowAllGuests": "Alle gasten toestaan",
|
||||
"app.userList.guest.allowEveryone": "Iedereen toestaan",
|
||||
"app.userList.guest.denyEveryone": "Iedereen weigeren",
|
||||
"app.userList.guest.pendingUsers": "{0} Gebruikers in behandeling",
|
||||
"app.userList.guest.pendingGuestUsers": "{0} Wachtende gastgebruikers",
|
||||
"app.userList.guest.pendingGuestAlert": "Heeft zich bij de sessie aangesloten en wacht op uw goedkeuring.",
|
||||
"app.userList.guest.rememberChoice": "Keuze onthouden",
|
||||
"app.user-info.title": "Woordenboek zoekopdracht",
|
||||
"app.toast.breakoutRoomEnded": "De brainstormruimte is beëindigd. Doe opnieuw mee met de audio.",
|
||||
"app.toast.chat.public": "Nieuw openbaar chatbericht",
|
||||
"app.toast.chat.private": "Nieuw privéchatbericht",
|
||||
"app.toast.chat.system": "Systeem",
|
||||
"app.toast.clearedEmoji.label": "Emoji-status gewist",
|
||||
"app.toast.setEmoji.label": "Emoji-status ingesteld op {0}",
|
||||
"app.toast.meetingMuteOn.label": "Alle gebruikers zijn gedempt",
|
||||
"app.toast.meetingMuteOff.label": "Vergadering dempen uitgeschakeld",
|
||||
"app.notification.recordingStart": "Deze sessie wordt nu opgenomen",
|
||||
"app.notification.recordingStop": "Deze sessie wordt niet opgenomen",
|
||||
"app.notification.recordingPaused": "Deze sessie wordt niet meer opgenomen",
|
||||
"app.notification.recordingAriaLabel": "Opgenomen tijd",
|
||||
"app.shortcut-help.title": "Sneltoetsen",
|
||||
"app.shortcut-help.accessKeyNotAvailable": "Toegangssleutels niet beschikbaar",
|
||||
"app.shortcut-help.comboLabel": "Combo",
|
||||
"app.shortcut-help.functionLabel": "Functie",
|
||||
"app.shortcut-help.closeLabel": "Sluiten",
|
||||
"app.shortcut-help.closeDesc": "Sluit modale sneltoetsen",
|
||||
"app.shortcut-help.openOptions": "Open opties",
|
||||
"app.shortcut-help.toggleUserList": "Schakel gebruikerlijst",
|
||||
"app.shortcut-help.toggleMute": "Mute / Unmute",
|
||||
"app.shortcut-help.togglePublicChat": "Schakel openbare chat (Gebruikerslijst moet open zijn)",
|
||||
"app.shortcut-help.hidePrivateChat": "Verberg privéchat",
|
||||
"app.shortcut-help.closePrivateChat": "Sluit privéchat",
|
||||
"app.shortcut-help.openActions": "Actiesmenu openen",
|
||||
"app.shortcut-help.openStatus": "Statusmenu openen",
|
||||
"app.shortcut-help.togglePan": "Activeer Pan-tool (Presentator)",
|
||||
"app.shortcut-help.nextSlideDesc": "Volgende dia (Presentator)",
|
||||
"app.shortcut-help.previousSlideDesc": "Vorige dia (Presentator)",
|
||||
"app.lock-viewers.title": "Vergrendel toeschouwers",
|
||||
"app.lock-viewers.description": "Met deze opties kunt u ervoor zorgen dat kijkers geen specifieke functies gebruiken.",
|
||||
"app.lock-viewers.featuresLable": "Feature",
|
||||
"app.lock-viewers.lockStatusLabel": "Status",
|
||||
"app.lock-viewers.webcamLabel": "Webcam delen",
|
||||
"app.lock-viewers.otherViewersWebcamLabel": "Toegang andere webcams",
|
||||
"app.lock-viewers.microphoneLable": "Deel microfoon",
|
||||
"app.lock-viewers.PublicChatLabel": "Openbare chatberichten verzenden",
|
||||
"app.lock-viewers.PrivateChatLable": "Stuur privéchatberichten",
|
||||
"app.lock-viewers.notesLabel": "Bewerk gedeelde notities",
|
||||
"app.lock-viewers.userListLabel": "Zie andere kijkers in de gebruikerslijst",
|
||||
"app.lock-viewers.ariaTitle": "Modal van kijkersinstellingen vergrendelen",
|
||||
"app.lock-viewers.button.apply": "Toepassen",
|
||||
"app.lock-viewers.button.cancel": "Annuleren",
|
||||
"app.lock-viewers.locked": "Vergrendeld",
|
||||
"app.lock-viewers.unlocked": "Ontgrendeld",
|
||||
"app.recording.startTitle": "Opname starten",
|
||||
"app.recording.stopTitle": "Opname onderbreken",
|
||||
"app.recording.resumeTitle": "Opname hervatten",
|
||||
"app.recording.startDescription": "U kunt later opnieuw op de opname knop klikken om deze te pauzeren.",
|
||||
"app.recording.stopDescription": "Weet u zeker dat u de opname wilt pauzeren? U kunt later doorgaan door de opnieuw op de opnameknop te klikken.",
|
||||
"app.videoPreview.cameraLabel": "Camera",
|
||||
"app.videoPreview.profileLabel": "Kwaliteit",
|
||||
"app.videoPreview.cancelLabel": "Annuleren",
|
||||
"app.videoPreview.closeLabel": "Sluiten",
|
||||
"app.videoPreview.findingWebcamsLabel": "Webcams zoeken",
|
||||
"app.videoPreview.startSharingLabel": "Beginnen met delen",
|
||||
"app.videoPreview.webcamOptionLabel": "Kies webcam",
|
||||
"app.videoPreview.webcamPreviewLabel": "Webcamvoorbeeld",
|
||||
"app.videoPreview.webcamSettingsTitle": "Webcaminstellingen",
|
||||
"app.videoPreview.webcamNotFoundLabel": "Webcam niet gevonden",
|
||||
"app.videoPreview.profileNotFoundLabel": "Geen ondersteund cameraprofiel",
|
||||
"app.video.joinVideo": "Webcam delen",
|
||||
"app.video.leaveVideo": "Stop met delen webcam",
|
||||
"app.video.iceCandidateError": "Fout bij het toevoegen van ICE-kandidaat",
|
||||
"app.video.iceConnectionStateError": "Fout 1107: ICE-onderhandelingen mislukt",
|
||||
"app.video.permissionError": "Fout bij het delen van webcam. Controleer de rechten",
|
||||
"app.video.sharingError": "Fout bij delen webcam",
|
||||
"app.video.notFoundError": "Kon de webcam niet vinden. Controleer of deze is verbonden",
|
||||
"app.video.notAllowed": "Ontbrekende toestemming voor gedeelde webcam, zorg ervoor dat uw browsermachtigingen",
|
||||
"app.video.notSupportedError": "Kan webcamvideo alleen delen met veilige bronnen, zorg ervoor dat uw SSL-certificaat geldig is",
|
||||
"app.video.notReadableError": "Kon geen webcamvideo krijgen. Zorg ervoor dat een ander programma de webcam niet gebruikt",
|
||||
"app.video.mediaFlowTimeout1020": "Fout 1020: media kan de server niet bereiken",
|
||||
"app.video.suggestWebcamLock": "Lock-instelling afdwingen voor webcams van kijkers?",
|
||||
"app.video.suggestWebcamLockReason": "(dit zal de stabiliteit van de vergadering verbeteren)",
|
||||
"app.video.enable": "Inschakelen",
|
||||
"app.video.cancel": "Annuleren",
|
||||
"app.video.swapCam": "Wissel",
|
||||
"app.video.swapCamDesc": "wissel de richting van webcams",
|
||||
"app.video.videoLocked": "Webcam delen vergrendeld",
|
||||
"app.video.videoButtonDesc": "Webcam delen",
|
||||
"app.video.videoMenu": "Videomenu",
|
||||
"app.video.videoMenuDisabled": "Videomenu Webcam is uitgeschakeld in instellingen",
|
||||
"app.video.videoMenuDesc": "Vervolgkeuzelijst Videomenu openen",
|
||||
"app.video.chromeExtensionError": "U moet installeren",
|
||||
"app.video.chromeExtensionErrorLink": "deze Chrome-extensie",
|
||||
"app.video.stats.title": "Verbindingsstatistieken",
|
||||
"app.video.stats.packetsReceived": "Pakketten ontvangen",
|
||||
"app.video.stats.packetsSent": "Pakketten verzonden",
|
||||
"app.video.stats.packetsLost": "Pakketten verloren",
|
||||
"app.video.stats.bitrate": "Bitrate",
|
||||
"app.video.stats.lostPercentage": "Totaal verloren percentage",
|
||||
"app.video.stats.lostRecentPercentage": "Recent percentage verloren",
|
||||
"app.video.stats.dimensions": "Dimensions",
|
||||
"app.video.stats.codec": "Codec",
|
||||
"app.video.stats.decodeDelay": "Decodeer vertraging",
|
||||
"app.video.stats.rtt": "RTT",
|
||||
"app.video.stats.encodeUsagePercent": "Gebruik coderen",
|
||||
"app.video.stats.currentDelay": "Huidige vertraging",
|
||||
"app.fullscreenButton.label": "Maak {0} volledig scherm",
|
||||
"app.deskshare.iceConnectionStateError": "Fout 1108: ICE-verbinding mislukt tijdens delen van scherm",
|
||||
"app.sfu.mediaServerConnectionError2000": "Fout 2000: kan geen verbinding maken met mediaserver",
|
||||
"app.sfu.mediaServerOffline2001": "Fout 2001: mediaserver is offline. Probeer het later opnieuw.",
|
||||
"app.sfu.mediaServerNoResources2002": "Fout 2002: mediaserver heeft geen beschikbare bronnen",
|
||||
"app.sfu.mediaServerRequestTimeout2003": "Fout 2003: aanvragen voor mediaserver verlopen niet meer",
|
||||
"app.sfu.serverIceGatheringFailed2021": "Fout 2021: Mediaserver kan geen ICE-kandidaten verzamelen",
|
||||
"app.sfu.serverIceGatheringFailed2022": "Fout 2022: Mediaserver ICE-verbinding mislukt",
|
||||
"app.sfu.mediaGenericError2200": "Fout 2200: mediaserver kan verzoek niet verwerken",
|
||||
"app.sfu.invalidSdp2202":"Fout 2202: client heeft een ongeldige SDP gegenereerd",
|
||||
"app.sfu.noAvailableCodec2203": "Fout 2203: server kan geen geschikte codec vinden",
|
||||
"app.meeting.endNotification.ok.label": "OK",
|
||||
"app.whiteboard.annotations.poll": "Poll-resultaten zijn gepubliceerd",
|
||||
"app.whiteboard.toolbar.tools": "Gereedschappen",
|
||||
"app.whiteboard.toolbar.tools.hand": "Hand",
|
||||
"app.whiteboard.toolbar.tools.pencil": "Potlood",
|
||||
"app.whiteboard.toolbar.tools.rectangle": "Rechthoek",
|
||||
"app.whiteboard.toolbar.tools.triangle": "Driehoek",
|
||||
"app.whiteboard.toolbar.tools.ellipse": "Ellips",
|
||||
"app.whiteboard.toolbar.tools.line": "Lijn",
|
||||
"app.whiteboard.toolbar.tools.text": "Tekst",
|
||||
"app.whiteboard.toolbar.thickness": "Tekening dikte",
|
||||
"app.whiteboard.toolbar.thicknessDisabled": "Tekeningdikte is uitgeschakeld",
|
||||
"app.whiteboard.toolbar.color": "Kleuren",
|
||||
"app.whiteboard.toolbar.colorDisabled": "Kleuren is uitgeschakeld",
|
||||
"app.whiteboard.toolbar.color.black": "Zwart",
|
||||
"app.whiteboard.toolbar.color.white": "Wit",
|
||||
"app.whiteboard.toolbar.color.red": "Rood",
|
||||
"app.whiteboard.toolbar.color.orange": "Oranje",
|
||||
"app.whiteboard.toolbar.color.eletricLime": "Fel groen",
|
||||
"app.whiteboard.toolbar.color.lime": "Groen",
|
||||
"app.whiteboard.toolbar.color.cyan": "Cyaan",
|
||||
"app.whiteboard.toolbar.color.dodgerBlue": "Fel blauw",
|
||||
"app.whiteboard.toolbar.color.blue": "Blauw",
|
||||
"app.whiteboard.toolbar.color.violet": "Violet",
|
||||
"app.whiteboard.toolbar.color.magenta": "Magenta",
|
||||
"app.whiteboard.toolbar.color.silver": "Zilver",
|
||||
"app.whiteboard.toolbar.undo": "Annotatie ongedaan maken",
|
||||
"app.whiteboard.toolbar.clear": "Alle annotaties wissen",
|
||||
"app.whiteboard.toolbar.multiUserOn": "Whiteboard voor meerdere gebruikers inschakelen",
|
||||
"app.whiteboard.toolbar.multiUserOff": "Whiteboard voor meerdere gebruikers uitschakelen",
|
||||
"app.whiteboard.toolbar.fontSize": "Lijst met lettertypegroottes",
|
||||
"app.feedback.title": "U bent uitgelogd van de conferentie",
|
||||
"app.feedback.subtitle": "We horen graag over uw ervaring met BigBlueButton (optioneel)",
|
||||
"app.feedback.textarea": "Hoe kunnen we BigBlueButton beter maken?",
|
||||
"app.feedback.sendFeedback": "Feedback verzenden",
|
||||
"app.feedback.sendFeedbackDesc": "Stuur een feedback en verlaat de vergadering",
|
||||
"app.videoDock.webcamFocusLabel": "Focus",
|
||||
"app.videoDock.webcamFocusDesc": "Focus de geselecteerde webcam",
|
||||
"app.videoDock.webcamUnfocusLabel": "Unfocus",
|
||||
"app.videoDock.webcamUnfocusDesc": "Ongericht de geselecteerde webcam",
|
||||
"app.videoDock.autoplayBlockedDesc": "We hebben uw toestemming nodig om u de webcams van andere gebruikers te laten zien.",
|
||||
"app.videoDock.autoplayAllowLabel": "Bekijk webcams",
|
||||
"app.invitation.title": "Brainstormruimte uitnodiging",
|
||||
"app.invitation.confirm": "Uitnodigen",
|
||||
"app.createBreakoutRoom.title": "Brainstormruimtes",
|
||||
"app.createBreakoutRoom.ariaTitle": "Brainstormruimtes verbergen",
|
||||
"app.createBreakoutRoom.breakoutRoomLabel": "Brainstormruimtes {0}",
|
||||
"app.createBreakoutRoom.generatingURL": "URL genereren",
|
||||
"app.createBreakoutRoom.generatedURL": "Gegenereerd",
|
||||
"app.createBreakoutRoom.duration": "Duur {0}",
|
||||
"app.createBreakoutRoom.room": "Kamer {0}",
|
||||
"app.createBreakoutRoom.notAssigned": "Niet toegewezen ({0})",
|
||||
"app.createBreakoutRoom.join": "Deelnemen aan kamer",
|
||||
"app.createBreakoutRoom.joinAudio": "Deelnemen aan audio",
|
||||
"app.createBreakoutRoom.returnAudio": "Return audio",
|
||||
"app.createBreakoutRoom.alreadyConnected": "Al in kamer",
|
||||
"app.createBreakoutRoom.confirm": "Maken",
|
||||
"app.createBreakoutRoom.record": "Record",
|
||||
"app.createBreakoutRoom.numberOfRooms": "Aantal kamers",
|
||||
"app.createBreakoutRoom.durationInMinutes": "Duur (minuten)",
|
||||
"app.createBreakoutRoom.randomlyAssign": "Willekeurig toewijzen",
|
||||
"app.createBreakoutRoom.endAllBreakouts": "Alle brainstormruimtes beëindigen",
|
||||
"app.createBreakoutRoom.roomName": "{0} (Kamer - {1})",
|
||||
"app.createBreakoutRoom.doneLabel": "Done",
|
||||
"app.createBreakoutRoom.nextLabel": "Volgende",
|
||||
"app.createBreakoutRoom.minusRoomTime": "Tijd voor brainstormruimte verlagen tot",
|
||||
"app.createBreakoutRoom.addRoomTime": "Tijd voor brainstormruimte verhogen tot",
|
||||
"app.createBreakoutRoom.addParticipantLabel": "+ Deelnemer toevoegen",
|
||||
"app.createBreakoutRoom.freeJoin": "Gebruikers toestaan een brainstormruimte te kiezen om deel te nemen",
|
||||
"app.createBreakoutRoom.leastOneWarnBreakout": "U moet ten minste één gebruiker in een brainstormruimte plaatsen.",
|
||||
"app.createBreakoutRoom.modalDesc": "Tip: u kunt de naam van een gebruiker slepen en neerzetten om deze aan een specifieke brainstormruimte toe te wijzen.",
|
||||
"app.createBreakoutRoom.roomTime": "{0} minuten",
|
||||
"app.createBreakoutRoom.numberOfRoomsError": "Het aantal kamers is ongeldig.",
|
||||
"app.externalVideo.start": "Deel een nieuwe video",
|
||||
"app.externalVideo.title": "Deel een externe video",
|
||||
"app.externalVideo.input": "Externe video-URL",
|
||||
"app.externalVideo.urlInput": "Video-URL toevoegen",
|
||||
"app.externalVideo.urlError": "Deze video-URL wordt niet ondersteund",
|
||||
"app.externalVideo.close": "Sluiten",
|
||||
"app.externalVideo.autoPlayWarning": "Speel de video af om mediasynchronisatie in te schakelen",
|
||||
"app.network.connection.effective.slow": "We merken verbindingsproblemen op.",
|
||||
"app.network.connection.effective.slow.help": "Meer informatie",
|
||||
"app.externalVideo.noteLabel": "Opmerking: gedeelde externe video's verschijnen niet in de opname. URL's voor YouTube, Vimeo, Instructure Media, Twitch en Daily Motion worden ondersteund.",
|
||||
"app.actionsBar.actionsDropdown.shareExternalVideo": "Deel een externe video",
|
||||
"app.actionsBar.actionsDropdown.stopShareExternalVideo": "Stop met het delen van externe video",
|
||||
"app.iOSWarning.label": "Upgrade naar iOS 12.2 of hoger",
|
||||
"app.legacy.unsupportedBrowser": "Het lijkt erop dat u een browser gebruikt die niet wordt ondersteund. Gebruik {0} of {1} voor volledige ondersteuning.",
|
||||
"app.legacy.upgradeBrowser": "Het lijkt erop dat u een oudere versie van een ondersteunde browser gebruikt. Upgrade uw browser voor volledige ondersteuning.",
|
||||
"app.legacy.criosBrowser": "Gebruik op iOS Safari voor volledige ondersteuning."
|
||||
|
||||
}
|
||||
|
@ -137,7 +137,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Dopasuj do strony",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Slajd {0}",
|
||||
"app.presentationUploder.title": "Prezentacja",
|
||||
"app.presentationUploder.message": "Jako prelegent masz możliwość przesłania dowolnego dokumentu lub pliku PDF. Zalecamy przesyłanie plików w formacie PDF dla najlepszych rezultatów. Upewnij się, że właściwa prezentacja jest wybrana. Wyboru można dokonać klikając okrągłe pole po prawej stronie.",
|
||||
"app.presentationUploder.uploadLabel": "Prześlij",
|
||||
"app.presentationUploder.confirmLabel": "Potwierdź",
|
||||
"app.presentationUploder.confirmDesc": "Zapisz zmiany i rozpocznij prezentację",
|
||||
@ -152,7 +151,6 @@
|
||||
"app.presentationUploder.genericError": "Ups, coś poszło nie tak",
|
||||
"app.presentationUploder.rejectedError": "Plik(i) odrzucono. Sprawdź typ pliku(ów)",
|
||||
"app.presentationUploder.upload.progress": "Przesyłanie ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Plik zbyt duży. Osiągnięto limit 200 stron",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Przetwarzanie strony {0} z {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Konwertowanie pliku...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Generowanie miniatur...",
|
||||
|
@ -132,7 +132,6 @@
|
||||
"app.presentationUploder.genericError": "Ops, ocorreu um erro",
|
||||
"app.presentationUploder.rejectedError": "O(s) ficheiro(s) selecionados foram rejeitados.\nVerifique por favor os tipos de ficheiro.",
|
||||
"app.presentationUploder.upload.progress": "A carregar ({0}%)",
|
||||
"app.presentationUploder.upload.413": "O ficheiro é demasiado grande. Foi atingido o limite de 200 páginas",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "A processar a página {0} de {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "A converter o ficheiro ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "A gerar miniaturas ...",
|
||||
|
@ -156,7 +156,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Ajustar à página",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Slide {0}",
|
||||
"app.presentationUploder.title": "Apresentação",
|
||||
"app.presentationUploder.message": "Como apresentador, você pode enviar qualquer documento do Office ou arquivo PDF. Para melhores resultados, recomendamos que se carregue arquivos em PDF. Por favor, certifique-se que uma apresentação está selecionada usando a caixa de seleção circular no lado direito.",
|
||||
"app.presentationUploder.uploadLabel": "Enviar",
|
||||
"app.presentationUploder.confirmLabel": "Confirmar",
|
||||
"app.presentationUploder.confirmDesc": "Salvar as alterações e inicie a apresentação",
|
||||
@ -171,13 +170,14 @@
|
||||
"app.presentationUploder.genericError": "Ops, algo deu errado",
|
||||
"app.presentationUploder.rejectedError": "Os arquivos selecionados foram rejeitados. Por favor, verifique os tipos de arquivos permitidos.",
|
||||
"app.presentationUploder.upload.progress": "Carregando ({0}%)",
|
||||
"app.presentationUploder.upload.413": "O arquivo é muito grande, número máximo de 200 páginas foi atingido",
|
||||
"app.presentationUploder.upload.413": "O arquivo é muito grande. Por favor, divida o conteúdo em múltiplos arquivos.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Processando página {0} de {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Convertendo arquivo...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Gerando miniaturas...",
|
||||
"app.presentationUploder.conversion.generatedSlides": "Slides gerados...",
|
||||
"app.presentationUploder.conversion.generatingSvg": "Gerando imagens SVG...",
|
||||
"app.presentationUploder.conversion.pageCountExceeded": "Ops, o número de páginas excedeu o limite de 200 páginas",
|
||||
"app.presentationUploder.conversion.pdfHasBigPage": "Não foi possível converter o arquivo PDF",
|
||||
"app.presentationUploder.conversion.timeout": "Ops, a conversão levou tempo demais",
|
||||
"app.presentationUploder.isDownloadableLabel": "Não permitir download da apresentação",
|
||||
"app.presentationUploder.isNotDownloadableLabel": "Permitir download da apresentação",
|
||||
@ -193,6 +193,7 @@
|
||||
"app.poll.quickPollInstruction": "Selecione uma opção abaixo para iniciar uma enquete.",
|
||||
"app.poll.customPollLabel": "Enquete personalizada",
|
||||
"app.poll.startCustomLabel": "Iniciar enquete personalizada",
|
||||
"app.poll.activePollInstruction": "Deixe este painel aberto para ver as respostas da enquete em tempo real. Selecione 'Publicar resultados da enquete' para publicar os resultados e encerrar a enquete.",
|
||||
"app.poll.publishLabel": "Publicar resultados da enquete",
|
||||
"app.poll.backLabel": "Voltar para opções de enquete",
|
||||
"app.poll.closeLabel": "Fechar",
|
||||
@ -397,6 +398,8 @@
|
||||
"app.audioModal.settingsTitle": "Alterar as configurações de áudio",
|
||||
"app.audioModal.helpTitle": "Houve um problema com seus dispositivos de mídia",
|
||||
"app.audioModal.helpText": "Você autorizou o acesso ao seu microfone? Observe que uma caixa de diálogo deve abrir assim que você tentar habilitar o microfone solicitando permissão de acesso aos dispositivos de mídia. Por favor autorize para que a aplicação tenha acesso ao seu microfone. Se isso não funcionar, tente alterar a permissão do microfone nas configurações do seu navegador.",
|
||||
"app.audioModal.help.noSSL": "A página é insegura. Para que a página possa acessar seu microfonee, a página de ser servida por HTTPS. Por favor, contate o administrador.",
|
||||
"app.audioModal.help.macNotAllowed": "As preferências do seu Mac parecem estar bloqueando o acesso ao seu microfone. Abra Preferências do sistema > Segurança & Privacidade > Privacidade > Microfone, e verifique se o navegador que você utiliza está selecionado.",
|
||||
"app.audioModal.audioDialTitle": "Participe usando seu telefone",
|
||||
"app.audioDial.audioDialDescription": "Discar",
|
||||
"app.audioDial.audioDialConfrenceText": "e insira o número PIN da conferência:",
|
||||
@ -648,6 +651,7 @@
|
||||
"app.createBreakoutRoom.addParticipantLabel": "+ adicionar participante",
|
||||
"app.createBreakoutRoom.freeJoin": "Permitir que os usuários escolham uma sala de apoio para entrar",
|
||||
"app.createBreakoutRoom.leastOneWarnBreakout": "Você precisa atribuir pelo menos um usuário a uma sala de apoio",
|
||||
"app.createBreakoutRoom.modalDesc": "Dica: você pode arrastar e soltar o nome do usuário para atribuí-lo a uma sala de apoio específica.",
|
||||
"app.createBreakoutRoom.roomTime": "{0} minutos",
|
||||
"app.createBreakoutRoom.numberOfRoomsError": "O número de salas é inválido.",
|
||||
"app.externalVideo.start": "Compartilhar vídeo",
|
||||
@ -656,8 +660,10 @@
|
||||
"app.externalVideo.urlInput": "Adicionar URL do vídeo",
|
||||
"app.externalVideo.urlError": "Essa URL de vídeo não é suportada",
|
||||
"app.externalVideo.close": "Fechar",
|
||||
"app.externalVideo.autoPlayWarning": "Reproduza o vídeo para ativar a sincronização da mídia",
|
||||
"app.network.connection.effective.slow": "Estamos percebendo problemas de conectividade.",
|
||||
"app.network.connection.effective.slow.help": "Mais informações",
|
||||
"app.externalVideo.noteLabel": "Nota: vídeos externos compartilhados não aprecerão na gravação. Videos de YouTube, Vimeo, Instructure Media, Twitch e Daily Motion são suportados.",
|
||||
"app.actionsBar.actionsDropdown.shareExternalVideo": "Compartilhar um vídeo externo",
|
||||
"app.actionsBar.actionsDropdown.stopShareExternalVideo": "Parar de compartilhar vídeo externo",
|
||||
"app.iOSWarning.label": "Por favor, atualize para o iOS 12.2 ou superior",
|
||||
|
@ -156,7 +156,7 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Potriveste la pagina",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Slide {0}",
|
||||
"app.presentationUploder.title": "Prezentare",
|
||||
"app.presentationUploder.message": "Ca prezentator ai posibilitatea de a incarca orice document Office sau PDF. Noi recomandam fisierele PDF pentru cele mai bune rezultate. Va rog asigurati-va ca prezentarea este selectata folosind checkbox-ul cerc din partea dreapta.",
|
||||
"app.presentationUploder.message": "Ca si prezentator trebuie sa ai posibilitatea de a incarca orice fisier Office sau PDF. Noi recomandam PDF pentru cele mai bune rezultate.Va rog asigurati-va ca prezentarea este selectata folosing cercul cu checkbox.",
|
||||
"app.presentationUploder.uploadLabel": "Incarcati fisier",
|
||||
"app.presentationUploder.confirmLabel": "Confirmare",
|
||||
"app.presentationUploder.confirmDesc": "Salvati schimbarile si porniti prezentarea",
|
||||
@ -171,7 +171,7 @@
|
||||
"app.presentationUploder.genericError": "Ops, ceva a fost gresit",
|
||||
"app.presentationUploder.rejectedError": "Fisierele selectate au fost respinse. Va rugam sa verificati tipul (tipurile) de fisier.",
|
||||
"app.presentationUploder.upload.progress": "Incarcare ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Fisierul este prea mare, limita de maxim 200 de pagini a fost atinsa",
|
||||
"app.presentationUploder.upload.413": "Fisierul este foarte mare.Va rog sa il impartiti in mai multe fisiere.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Procesare pagina {0} of {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Conversie fisier ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Generare de miniaturi ...",
|
||||
@ -554,11 +554,123 @@
|
||||
"app.video.videoLocked": "Partajare camera web blocata",
|
||||
"app.video.videoButtonDesc": "Partajarea camera web",
|
||||
"app.video.videoMenu": "Meniu Video",
|
||||
"app.video.videoMenuDisabled": "Meniul Video Webcam este dezactivat din setari.",
|
||||
"app.video.videoMenuDesc": "Deschideti dropdown-ul de meniu Video",
|
||||
"app.video.chromeExtensionError": "Trebuie sa instalezi",
|
||||
"app.video.chromeExtensionErrorLink": "acesta extensie de Chrome",
|
||||
"app.video.stats.title": "Statistici de Conectare",
|
||||
"app.video.stats.packetsReceived": "Pachete receptionate",
|
||||
"app.video.stats.packetsSent": "Pachete trimise",
|
||||
"app.video.stats.packetsLost": "Pachete pierdute",
|
||||
"app.video.stats.bitrate": "Bitrate",
|
||||
"app.video.stats.lostPercentage": "Procent de Pierdere Total",
|
||||
"app.video.stats.lostRecentPercentage": "Procent de Pierdere recent",
|
||||
"app.video.stats.dimensions": "Dimensiuni",
|
||||
"app.video.stats.codec": "Codec",
|
||||
"app.video.stats.decodeDelay": "Intarziere de decodare",
|
||||
"app.video.stats.rtt": "RTT",
|
||||
"app.video.stats.encodeUsagePercent": "Folosire decodare",
|
||||
"app.video.stats.currentDelay": "Intarziere curenta",
|
||||
"app.fullscreenButton.label": "Faceti {0} ecran complet",
|
||||
"app.deskshare.iceConnectionStateError": "Eroare 1108:L Conexiunea ICE esuata la partajarea ecranului",
|
||||
"app.sfu.mediaServerConnectionError2000": "Eroare 2000: Eroare de conectare la serverul media",
|
||||
"app.sfu.mediaServerOffline2001": "Eroare 2001: Serverul media este deconectat. Incercati inca o data mai tarziu.",
|
||||
"app.sfu.mediaServerNoResources2002": "Eroare 2002: Serverul media nu mai are resurse.",
|
||||
"app.sfu.mediaServerRequestTimeout2003": "Eroare 2003: Serverul media nu raspunde",
|
||||
"app.sfu.serverIceGatheringFailed2021": "Eroare 2012: Serverul media nu poate extrage candidati ICE",
|
||||
"app.sfu.serverIceGatheringFailed2022": "Eroare 2022: Serverul media conectarea ICE esuata",
|
||||
"app.sfu.mediaGenericError2200": "Eroare 2200: Serverul media nu a putut procesa cererea",
|
||||
"app.sfu.invalidSdp2202":"Eroare 2202: Clientul a generat SDP invalid",
|
||||
"app.sfu.noAvailableCodec2203": "Eroare 2203: Serverul nu a putut gasi un codec potrivit",
|
||||
"app.meeting.endNotification.ok.label": "OK",
|
||||
"app.whiteboard.annotations.poll": "Rezultatul sondajului a fost publicat",
|
||||
"app.whiteboard.toolbar.tools": "Unelte",
|
||||
"app.whiteboard.toolbar.tools.hand": "Pan",
|
||||
"app.whiteboard.toolbar.tools.pencil": "Creion",
|
||||
"app.whiteboard.toolbar.tools.rectangle": "Dreptunghi",
|
||||
"app.whiteboard.toolbar.tools.triangle": "Triunghi",
|
||||
"app.whiteboard.toolbar.tools.ellipse": "Elipsa",
|
||||
"app.whiteboard.toolbar.tools.line": "Linie",
|
||||
"app.whiteboard.toolbar.tools.text": "Text",
|
||||
"app.whiteboard.toolbar.thickness": "Grosimea desenului",
|
||||
"app.whiteboard.toolbar.thicknessDisabled": "Grosimea desenului este dezactivata",
|
||||
"app.whiteboard.toolbar.color": "Colori",
|
||||
"app.whiteboard.toolbar.colorDisabled": "Culorile sunt dezactivate",
|
||||
"app.whiteboard.toolbar.color.black": "Negru",
|
||||
"app.whiteboard.toolbar.color.white": "Alb",
|
||||
"app.whiteboard.toolbar.color.red": "Rosu",
|
||||
"app.whiteboard.toolbar.color.orange": "Portocaliu",
|
||||
"app.whiteboard.toolbar.color.eletricLime": "Line Electric",
|
||||
"app.whiteboard.toolbar.color.lime": "Lime",
|
||||
"app.whiteboard.toolbar.color.cyan": "Cyan",
|
||||
"app.whiteboard.toolbar.color.dodgerBlue": "Albastru inchis",
|
||||
"app.whiteboard.toolbar.color.blue": "Albastru",
|
||||
"app.whiteboard.toolbar.color.violet": "Violet",
|
||||
"app.whiteboard.toolbar.color.magenta": "Magenta",
|
||||
"app.whiteboard.toolbar.color.silver": "Argintiu",
|
||||
"app.whiteboard.toolbar.undo": "Anulați adnotarea",
|
||||
"app.whiteboard.toolbar.clear": "Stergere toate adnotarile",
|
||||
"app.whiteboard.toolbar.multiUserOn": "Activati tabla multi-utilizatori",
|
||||
"app.whiteboard.toolbar.multiUserOff": "Dezactivati tabla multi-utilizatori",
|
||||
"app.whiteboard.toolbar.fontSize": "Lista cu marimea fonturilor",
|
||||
"app.feedback.title": "Ai parasit sedinta",
|
||||
"app.feedback.subtitle": "Ne-ar place sa auzim despre experienta ta cu BigBlueButton(optional)",
|
||||
"app.feedback.textarea": "Cum putem face BigBlueButton mai bun?",
|
||||
"app.feedback.sendFeedback": "Trimite feedback",
|
||||
"app.feedback.sendFeedbackDesc": "Trimite feedback si paraseste sedinta",
|
||||
"app.videoDock.webcamFocusLabel": "Focus",
|
||||
"app.videoDock.webcamFocusDesc": "Focus pe camera video selectata",
|
||||
"app.videoDock.webcamUnfocusLabel": "Muta focus",
|
||||
"app.videoDock.webcamUnfocusDesc": "Muta focusul de pe camera web selectata",
|
||||
"app.videoDock.autoplayBlockedDesc": "Avem nevoie de permisiunea ta pentru a-ti arata camerele web ale utilizatorilor.",
|
||||
"app.videoDock.autoplayAllowLabel": "Vizualizare camere web",
|
||||
"app.invitation.title": "Invitatie in camera breakout",
|
||||
"app.invitation.confirm": "Invita",
|
||||
"app.createBreakoutRoom.title": "Camere breakout",
|
||||
"app.createBreakoutRoom.ariaTitle": "Ascunde camere breakout",
|
||||
"app.createBreakoutRoom.breakoutRoomLabel": "Camere breakout {0}",
|
||||
"app.createBreakoutRoom.generatingURL": "Generare link",
|
||||
"app.createBreakoutRoom.generatedURL": "Generat",
|
||||
"app.createBreakoutRoom.duration": "Durata {0}",
|
||||
"app.createBreakoutRoom.room": "Camera {0}",
|
||||
"app.createBreakoutRoom.notAssigned": "Neasignat({0})",
|
||||
"app.createBreakoutRoom.join": "Alatura-te camerei",
|
||||
"app.createBreakoutRoom.joinAudio": "Alaturati-va audio",
|
||||
"app.createBreakoutRoom.returnAudio": "Se intoarce audio",
|
||||
"app.createBreakoutRoom.alreadyConnected": "Deja in camera",
|
||||
"app.createBreakoutRoom.confirm": "Creare",
|
||||
"app.createBreakoutRoom.record": "Inregistrare",
|
||||
"app.createBreakoutRoom.numberOfRooms": "Numar de camere",
|
||||
"app.createBreakoutRoom.durationInMinutes": "Durata (minute)",
|
||||
"app.createBreakoutRoom.randomlyAssign": "Asignare aleatoare",
|
||||
"app.createBreakoutRoom.endAllBreakouts": "Termina toate camerele breakout",
|
||||
"app.createBreakoutRoom.roomName": "{0} (Camera - {1})",
|
||||
"app.createBreakoutRoom.doneLabel": "Gata",
|
||||
"app.externalVideo.close": "Inchide"
|
||||
"app.createBreakoutRoom.nextLabel": "Urmatorul",
|
||||
"app.createBreakoutRoom.minusRoomTime": "Scade timpul in camera de breakout la ",
|
||||
"app.createBreakoutRoom.addRoomTime": "Mareste timpul in camera de breakout la ",
|
||||
"app.createBreakoutRoom.addParticipantLabel": "+Adaugare participant",
|
||||
"app.createBreakoutRoom.freeJoin": "Permite utilizatorilor sa aleaga camera breakout careia sa se alature",
|
||||
"app.createBreakoutRoom.leastOneWarnBreakout": "Trebuie sa pui cel putin un user intr-o camera breakout",
|
||||
"app.createBreakoutRoom.modalDesc": "Tip: Tu poti folosi drag-and-drop sa asignezi un user la o camera breakout specifica",
|
||||
"app.createBreakoutRoom.roomTime": "{0} minute",
|
||||
"app.createBreakoutRoom.numberOfRoomsError": "Numarul de camere este invalid.",
|
||||
"app.externalVideo.start": "Partajeaza un nou video",
|
||||
"app.externalVideo.title": "Partajeaza un nou video extern",
|
||||
"app.externalVideo.input": "Link-ul extern al videoclip-ului",
|
||||
"app.externalVideo.urlInput": "Adaugare link video",
|
||||
"app.externalVideo.urlError": "Acest link video nu este suportat",
|
||||
"app.externalVideo.close": "Inchide",
|
||||
"app.externalVideo.autoPlayWarning": "Rulati videoclipul pentru activarea sincronizarii",
|
||||
"app.network.connection.effective.slow": "Avem notificari pentru problemele de conectare.",
|
||||
"app.network.connection.effective.slow.help": "Mai multe informatii",
|
||||
"app.externalVideo.noteLabel": "Nota: Partajarea videoclipurilor externe nu vor apare in inregistrare. Link-urile YouTube, Vimeo, Instructure media, Twitch si Daily Motion sunt suportate.",
|
||||
"app.actionsBar.actionsDropdown.shareExternalVideo": "Partajeaza un nou video extern",
|
||||
"app.actionsBar.actionsDropdown.stopShareExternalVideo": "Oprire partajare videoclip extern",
|
||||
"app.iOSWarning.label": "Va rog faceti upgrade la iOS 12.2 sau mai bun",
|
||||
"app.legacy.unsupportedBrowser": "Arata ca si cum ai folosi un browser care nu este suportat. Va rugam sa folositi {0} sau {1} pentru suport complet.",
|
||||
"app.legacy.upgradeBrowser": "Arata ca si cum ai folosi o versiune mai veche de browser. Va rog faceti upgrade la un browser care are suport complet.",
|
||||
"app.legacy.criosBrowser": "Pe iOS va rugam sa folositi Safari pentru suport complet."
|
||||
|
||||
}
|
||||
|
||||
|
@ -154,7 +154,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Подогнать по размеру страницы",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Слайд {0}",
|
||||
"app.presentationUploder.title": "Презентация",
|
||||
"app.presentationUploder.message": "Как ведущий, вы можете загрузить любой офисный документ или файл PDF. Для лучшего результата, мы рекомендуем загружать PDF.\nПожалуйста убедитесь, что презентация выбрана с помощью круглого флажка с правой стороны.",
|
||||
"app.presentationUploder.uploadLabel": "Загрузить",
|
||||
"app.presentationUploder.confirmLabel": "Подтвердить",
|
||||
"app.presentationUploder.confirmDesc": "Сохранить изменения и начать презентацию",
|
||||
@ -169,7 +168,6 @@
|
||||
"app.presentationUploder.genericError": "Ой, что-то пошло не так",
|
||||
"app.presentationUploder.rejectedError": "Загрузка выбранных файлов была отклонена. Пожалуйста проверьте тип файла (файлов)",
|
||||
"app.presentationUploder.upload.progress": "Загрузка ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Файл слишком большой, превышен лимит в 200 страниц",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Обработка страницы {0} из {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Файл конвертируется...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Создаются изображения для предварительного просмотра...",
|
||||
|
5
bigbluebutton-html5/private/locales/sk_SK.json
Normal file
5
bigbluebutton-html5/private/locales/sk_SK.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"app.chat.submitLabel": "Pošli správu"
|
||||
|
||||
}
|
||||
|
99
bigbluebutton-html5/private/locales/sr.json
Normal file
99
bigbluebutton-html5/private/locales/sr.json
Normal file
@ -0,0 +1,99 @@
|
||||
{
|
||||
"app.home.greeting": "Vaša prezentacija uskoro počinje ...",
|
||||
"app.chat.submitLabel": "Pošalji poruku",
|
||||
"app.chat.errorMinMessageLength": "Poruka je za {0} karaktera kratka",
|
||||
"app.chat.errorMaxMessageLength": "Poruka je za {0} karaktera duga",
|
||||
"app.chat.disconnected": "Niste povezani, poruke ne mogu da se pošalju",
|
||||
"app.chat.locked": "Chat je zaključan, poruke ne mogu da se pošalju",
|
||||
"app.chat.inputPlaceholder": "Pošalji poruku {0}",
|
||||
"app.chat.titlePublic": "Javni Chat",
|
||||
"app.chat.titlePrivate": "Privatni chat sa {0}",
|
||||
"app.chat.partnerDisconnected": "{0} je napustio konferenciju",
|
||||
"app.chat.closeChatLabel": "Zatvori {0}",
|
||||
"app.chat.hideChatLabel": "Sakrij {0}",
|
||||
"app.chat.moreMessages": "Više poruka ispod",
|
||||
"app.chat.dropdown.options": "Opcije ćaskanja",
|
||||
"app.chat.dropdown.clear": "Očisti",
|
||||
"app.chat.dropdown.copy": "Kopiraj",
|
||||
"app.chat.dropdown.save": "Sačuvaj",
|
||||
"app.chat.label": "Ćaskanje",
|
||||
"app.chat.offline": "Odsutan",
|
||||
"app.chat.emptyLogLabel": "Dnevnik ćaskanja je prazan",
|
||||
"app.chat.clearPublicChatMessage": "Istorija javnog ćaskanja je obrisana od strane moderatora",
|
||||
"app.chat.multi.typing": "Više korisnika kuca",
|
||||
"app.chat.one.typing": "{0} kuca",
|
||||
"app.chat.two.typing": "{0} i {1} kucaju",
|
||||
"app.captions.label": "Titlovi",
|
||||
"app.captions.menu.close": "Zatvori",
|
||||
"app.captions.menu.start": "Počni",
|
||||
"app.captions.menu.ariaStart": "Započni sa pisanjem titlova",
|
||||
"app.captions.menu.ariaStartDesc": "Otvara urednik za titlove i zatvara modal",
|
||||
"app.captions.menu.select": "Odaberi jezik",
|
||||
"app.captions.menu.ariaSelect": "Jezik titlova",
|
||||
"app.captions.menu.subtitle": "Odaberi jezik i stilove za titlove",
|
||||
"app.captions.menu.title": "Titlovi",
|
||||
"app.captions.menu.fontSize": "Veličina",
|
||||
"app.captions.menu.fontColor": "Boja teksta",
|
||||
"app.captions.menu.fontFamily": "Font",
|
||||
"app.captions.menu.backgroundColor": "Boja pozadine",
|
||||
"app.captions.menu.previewLabel": "Pregled",
|
||||
"app.captions.menu.cancelLabel": "Otkaži",
|
||||
"app.captions.pad.hide": "Sakrij prevod",
|
||||
"app.captions.pad.ownership": "Preuzmi",
|
||||
"app.captions.pad.dictationStart": "Započni diktirati",
|
||||
"app.captions.pad.dictationStop": "Prestani diktirati",
|
||||
"app.captions.pad.dictationOnDesc": "Uključite prepoznavanje govora",
|
||||
"app.captions.pad.dictationOffDesc": "Isključite prepoznavanje govora",
|
||||
"app.note.title": "Deljene beleške",
|
||||
"app.note.label": "Beleška",
|
||||
"app.note.hideNoteLabel": "Sakrij belešku",
|
||||
"app.user.activityCheck": "Provera aktivnosti korisnika",
|
||||
"app.user.activityCheck.label": "Proveri da li je korisnik još uvek u sastanku ({0})",
|
||||
"app.user.activityCheck.check": "Provera",
|
||||
"app.userList.usersTitle": "Korisnici",
|
||||
"app.userList.participantsTitle": "Učesnici",
|
||||
"app.userList.messagesTitle": "Poruke",
|
||||
"app.userList.notesTitle": "Beleške",
|
||||
"app.userList.notesListItem.unreadContent": "Novi sadržaj je dostupan u delu sa zajedničkim beleškama",
|
||||
"app.userList.captionsTitle": "Naslovi",
|
||||
"app.userList.presenter": "Presentar",
|
||||
"app.userList.you": "Ti",
|
||||
"app.userList.locked": "Zaključano",
|
||||
"app.userList.label": "Korisnička lista",
|
||||
"app.userList.toggleCompactView.label": "Prebaci kompaktni prikaz",
|
||||
"app.userList.guest": "Gost",
|
||||
"app.userList.menuTitleContext": "Dostupne opcije",
|
||||
"app.userList.chatListItem.unreadSingular": "{0} Nova Poruka",
|
||||
"app.userList.chatListItem.unreadPlural": "{0} Nove Poruke",
|
||||
"app.userList.menu.chat.label": "Započni privatno ćaskanje",
|
||||
"app.userList.menu.clearStatus.label": "Očisti status",
|
||||
"app.userList.menu.removeUser.label": "Ukloni korisnika",
|
||||
"app.userList.menu.muteUserAudio.label": "Mutiraj korisnika",
|
||||
"app.userList.menu.unmuteUserAudio.label": "Odmutiraj korisnika",
|
||||
"app.userList.userAriaLabel": "{0} {1} {2} Status {3}",
|
||||
"app.userList.menu.promoteUser.label": "Unapredi u moderatora",
|
||||
"app.userList.menu.unlockUser.label": "Otključaj {0}",
|
||||
"app.userList.menu.lockUser.label": "Zaključaj {0}",
|
||||
"app.presentationUploder.dismissLabel": "Otkaži",
|
||||
"app.poll.closeLabel": "Zatvori",
|
||||
"app.poll.liveResult.usersTitle": "Korisnici",
|
||||
"app.about.dismissLabel": "Otkaži",
|
||||
"app.settings.usersTab.label": "Učesnici",
|
||||
"app.settings.main.cancel.label": "Otkaži",
|
||||
"app.settings.main.save.label": "Sačuvaj",
|
||||
"app.audioNotification.closeLabel": "Zatvori",
|
||||
"app.breakoutJoinConfirmation.dismissLabel": "Otkaži",
|
||||
"app.audioModal.closeLabel": "Zatvori",
|
||||
"app.audio.listenOnly.closeLabel": "Zatvori",
|
||||
"app.modal.close": "Zatvori",
|
||||
"app.dropdown.close": "Zatvori",
|
||||
"app.shortcut-help.closeLabel": "Zatvori",
|
||||
"app.lock-viewers.button.cancel": "Otkaži",
|
||||
"app.lock-viewers.locked": "Zaključano",
|
||||
"app.videoPreview.cancelLabel": "Otkaži",
|
||||
"app.videoPreview.closeLabel": "Zatvori",
|
||||
"app.video.cancel": "Otkaži",
|
||||
"app.externalVideo.close": "Zatvori"
|
||||
|
||||
}
|
||||
|
@ -153,7 +153,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Anpassa till sidan",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Bild {0}",
|
||||
"app.presentationUploder.title": "Presentation",
|
||||
"app.presentationUploder.message": "Som presentatör har du möjlighet att ladda upp något kontorsdokument eller PDF-fil. Vi rekommenderar PDF-fil för bästa resultat. Se till att en presentation väljs med kryssrutan på höger sida.",
|
||||
"app.presentationUploder.uploadLabel": "Ladda upp",
|
||||
"app.presentationUploder.confirmLabel": "Bekräfta",
|
||||
"app.presentationUploder.confirmDesc": "Spara dina ändringar och starta presentationen",
|
||||
@ -168,7 +167,6 @@
|
||||
"app.presentationUploder.genericError": "Hoppsan, nånting gick snett",
|
||||
"app.presentationUploder.rejectedError": "Den valda filen(filerna) har blivit avvisad(e). Vänligen kontrollera filtypen(-typerna).",
|
||||
"app.presentationUploder.upload.progress": "Uppladdning ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Filen är för stor, max 200 sidor uppnådda",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Bearbetningssida {0} av {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Konverterar filen ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Genererar miniatyrbilder ...",
|
||||
|
@ -31,20 +31,35 @@
|
||||
"app.captions.menu.ariaStartDesc": "Altyazı düzenleyicisini açar ve kipini kapatır",
|
||||
"app.captions.menu.select": "Mevcut dili seç",
|
||||
"app.captions.menu.ariaSelect": "Altyazı dili",
|
||||
"app.captions.menu.subtitle": " Lütfen oturumunuzdaki kapalı başlıklar için bir dil ve stil seçin.",
|
||||
"app.captions.menu.title": "Kapalı başlıklar",
|
||||
"app.captions.menu.fontSize": "Boyut",
|
||||
"app.captions.menu.fontColor": "Metin rengi",
|
||||
"app.captions.menu.fontFamily": "Font",
|
||||
"app.captions.menu.backgroundColor": "Arkalan rengi",
|
||||
"app.captions.menu.previewLabel": "Önizleme",
|
||||
"app.captions.menu.cancelLabel": "Vazgeç",
|
||||
"app.captions.pad.hide": "Kapalı başlıkları gizle",
|
||||
"app.captions.pad.tip": "Editör araç çubuğuna odaklanmak için Esc tuşuna basın",
|
||||
"app.captions.pad.ownership": "Devral",
|
||||
"app.captions.pad.ownershipTooltip": "{0} başlığın sahibi olarak atanacaksınız",
|
||||
"app.captions.pad.interimResult": "Geçici sonuçlar",
|
||||
"app.captions.pad.dictationStart": "Dikte etmeye başla",
|
||||
"app.captions.pad.dictationStop": "Dikte etmeyi durdur",
|
||||
"app.captions.pad.dictationOnDesc": " Konuşma tanımayı açar",
|
||||
"app.captions.pad.dictationOffDesc": " Konuşma tanımayı kapatır",
|
||||
"app.note.title": "Paylaşılan Notlar",
|
||||
"app.note.label": "Not",
|
||||
"app.note.hideNoteLabel": "Notu gizle",
|
||||
"app.user.activityCheck": "Kullanıcı etkinliği kontrolü",
|
||||
"app.user.activityCheck.label": "Kullanıcının hala toplantıda olup olmadığını kontrol edin ({0})",
|
||||
"app.user.activityCheck.check": "Kontrol et",
|
||||
"app.note.tipLabel": "Editör araç çubuğuna odaklanmak için Esc tuşuna basın",
|
||||
"app.userList.usersTitle": "Kullanıcılar",
|
||||
"app.userList.participantsTitle": "Katılımcılar",
|
||||
"app.userList.messagesTitle": "Mesajlar",
|
||||
"app.userList.notesTitle": "Notlar",
|
||||
"app.userList.notesListItem.unreadContent": " Paylaşılan notlar bölümünde yeni içerik var",
|
||||
"app.userList.captionsTitle": "Başlıklar",
|
||||
"app.userList.presenter": "Sunucu",
|
||||
"app.userList.you": "Siz",
|
||||
@ -65,6 +80,7 @@
|
||||
"app.userList.menu.demoteUser.label": "İzleyici yap",
|
||||
"app.userList.menu.unlockUser.label": "{0} için kilidi kaldır",
|
||||
"app.userList.menu.lockUser.label": "{0} kullanıcısını kilitle",
|
||||
"app.userList.menu.directoryLookup.label": "Dizin araması",
|
||||
"app.userList.menu.makePresenter.label": "Sunum yetkisi ver",
|
||||
"app.userList.userOptions.manageUsersLabel": "Kullanıcıları yönet",
|
||||
"app.userList.userOptions.muteAllLabel": "Tüm kullanıcıları sustur",
|
||||
@ -108,7 +124,7 @@
|
||||
"app.meeting.meetingTimeHasEnded": "Zaman bitti. Oturum kısa süre sonra kapanacak",
|
||||
"app.meeting.endedMessage": "Ana ekrana geri yönlendirileceksiniz",
|
||||
"app.meeting.alertMeetingEndsUnderOneMinute": "Oturum bir dakika içinde kapanacak.",
|
||||
"app.meeting.alertBreakoutEndsUnderOneMinute": "Çalıştay odası bir dakika içinde kapanıyor.",
|
||||
"app.meeting.alertBreakoutEndsUnderOneMinute": "Çalışma odası bir dakika içinde kapanıyor.",
|
||||
"app.presentation.hide": "Sunumu gizle",
|
||||
"app.presentation.notificationLabel": "Geçerli sunum",
|
||||
"app.presentation.slideContent": "Slayt içeriği",
|
||||
@ -155,13 +171,14 @@
|
||||
"app.presentationUploder.genericError": "Hops, birşeyler ters gitti",
|
||||
"app.presentationUploder.rejectedError": "Seçilen dosya(lar) reddedildi. Lütfen dosya tür(ler)ini kontrol edin.",
|
||||
"app.presentationUploder.upload.progress": "Yükleniyor ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Dosya çok büyük, maksimum 200 sayfaya ulaşıldı",
|
||||
"app.presentationUploder.upload.413": "Dosya çok büyük. Lütfen daha küçük dosyalara bölün.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Sayfalar işleniyor: {0} / {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Dosya dönüştürülüyor ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Küçük resimler oluşturuluyor ...",
|
||||
"app.presentationUploder.conversion.generatedSlides": "Slaytlar oluşturuluyor ...",
|
||||
"app.presentationUploder.conversion.generatingSvg": "SVG görselleri üretiliyor ...",
|
||||
"app.presentationUploder.conversion.pageCountExceeded": "Hata, sayfa sayısı 200 sayfa sınırını aştı",
|
||||
"app.presentationUploder.conversion.pdfHasBigPage": "PDF dosyasını dönüştüremedik, lütfen optimize etmeyi deneyin",
|
||||
"app.presentationUploder.conversion.timeout": "Hata, dönüşüm çok uzun sürdü",
|
||||
"app.presentationUploder.isDownloadableLabel": "Sunumun indirilmesine izin verme",
|
||||
"app.presentationUploder.isNotDownloadableLabel": "Sunumun indirilmesine izin ver",
|
||||
@ -177,6 +194,7 @@
|
||||
"app.poll.quickPollInstruction": "Anketinize başlamak için aşağıdan bir seçenek seçin.",
|
||||
"app.poll.customPollLabel": "Özel Anket",
|
||||
"app.poll.startCustomLabel": "Özel anketi başlat",
|
||||
"app.poll.activePollInstruction": "Başkalarının ankete cevap vermesine izin vermek için bu pencereyi açık bırakın. 'Anket sonuçlarını yayınla'yı seçmek veya geriye gitmek, anketi sonlandıracak.",
|
||||
"app.poll.publishLabel": " Anket sonuçlarını yayınla",
|
||||
"app.poll.backLabel": "Anket seçeneklerine geri dön",
|
||||
"app.poll.closeLabel": "Kapat",
|
||||
@ -237,6 +255,7 @@
|
||||
"app.navBar.recording": "Bu oturum kaydediliyor",
|
||||
"app.navBar.recording.on": "Kaydediyor",
|
||||
"app.navBar.recording.off": "Kaydetmiyor",
|
||||
"app.navBar.emptyAudioBrdige": "Aktif mikrofon yok. Bu kayda ses eklemek için mikrofonunuzu paylaşın.",
|
||||
"app.leaveConfirmation.confirmLabel": "Ayrıl",
|
||||
"app.leaveConfirmation.confirmDesc": "Sizi görüşmeden çıkarır",
|
||||
"app.endMeeting.title": "Oturumu sonlandır",
|
||||
@ -308,8 +327,8 @@
|
||||
"app.actionsBar.actionsDropdown.pollBtnLabel": "Bir anket başlat",
|
||||
"app.actionsBar.actionsDropdown.pollBtnDesc": "Anket bölmesini değiştirir",
|
||||
"app.actionsBar.actionsDropdown.saveUserNames": "Kullanıcı adlarını kaydet",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoom": "Çalıştay odaları oluştur",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoomDesc": "mevcut oturumu bölmek için çalıştay odaları oluştur",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoom": "Çalışma odaları oluştur",
|
||||
"app.actionsBar.actionsDropdown.createBreakoutRoomDesc": "mevcut oturumu bölmek için çalışma odaları oluştur",
|
||||
"app.actionsBar.actionsDropdown.captionsLabel": "Kapalı altyazıları yaz",
|
||||
"app.actionsBar.actionsDropdown.captionsDesc": "Başlıklar bölmesini değiştirir",
|
||||
"app.actionsBar.actionsDropdown.takePresenter": "Eğitimci rolünü al",
|
||||
@ -341,6 +360,7 @@
|
||||
"app.audioNotification.audioFailedError1001": "Hata 1001: WebSocket bağlantısı koptu",
|
||||
"app.audioNotification.audioFailedError1002": "Hata 1002: WebSocket bağlantısı oluşturulamadı",
|
||||
"app.audioNotification.audioFailedError1003": "Hata 1003: Web tarayıcının sürümü desteklenmiyor",
|
||||
"app.audioNotification.audioFailedError1004": "Hata 1004: Çağrıda başarısızlık (sebep={0})",
|
||||
"app.audioNotification.audioFailedError1005": "Hata 1005: Arama beklenmedik şekilde sonlandı",
|
||||
"app.audioNotification.audioFailedError1006": "Hata 1006: Arama zaman aşımına uğradı",
|
||||
"app.audioNotification.audioFailedError1007": "Hata 1007: ICE Bilgi ve İçerik iletişimi başarısız oldu",
|
||||
@ -348,32 +368,54 @@
|
||||
"app.audioNotification.audioFailedError1009": "Hata 1009: STUN/TURN sunucu bilgisi algılamadı",
|
||||
"app.audioNotification.audioFailedError1010": "Hata 1010: ICE Bilgi ve İçerik iletişimi zaman aşımına uğradı",
|
||||
"app.audioNotification.audioFailedError1011": "Hata 1011: ICE Bilgi ve İçerik toplanması zaman aşımına uğradı",
|
||||
"app.audioNotification.audioFailedError1012": "Hata 1012: ICE bağlantısı kapalı",
|
||||
"app.audioNotification.audioFailedMessage": "Ses bağlantınız sağlanamadı",
|
||||
"app.audioNotification.mediaFailedMessage": "Yalnızca güvenli kaynaklara izin verildiğinden getUserMicMedia başarısız oldu",
|
||||
"app.audioNotification.closeLabel": "Kapat",
|
||||
"app.audioNotificaion.reconnectingAsListenOnly": "Mikrofon katılımcılar için kilitlendi, oturuma dinleyici olarak devam edebilirsiniz",
|
||||
"app.breakoutJoinConfirmation.title": "Çalıştay odasına katıl",
|
||||
"app.breakoutJoinConfirmation.title": "Çalışma odasına katıl",
|
||||
"app.breakoutJoinConfirmation.message": "Katılmak istiyor musunuz?",
|
||||
"app.breakoutJoinConfirmation.confirmDesc": "Çalıştay odana gir",
|
||||
"app.breakoutJoinConfirmation.confirmDesc": "Çalışma odasına gir",
|
||||
"app.breakoutJoinConfirmation.dismissLabel": "Vazgeç",
|
||||
"app.breakoutJoinConfirmation.dismissDesc": "Çalıştay odasına katılmayı kapatır ve reddeder",
|
||||
"app.breakoutJoinConfirmation.freeJoinMessage": "Katılmak için bir çalıştay odası seçin",
|
||||
"app.breakoutTimeRemainingMessage": "Çalıştay odası için kalan zaman: {0}",
|
||||
"app.breakoutJoinConfirmation.dismissDesc": "Çalışma odasına katılmayı reddeder ve kapatır",
|
||||
"app.breakoutJoinConfirmation.freeJoinMessage": "Katılmak için bir çalışma odası seçin",
|
||||
"app.breakoutTimeRemainingMessage": "Çalışma odası için kalan zaman: {0}",
|
||||
"app.breakoutWillCloseMessage": "Süre bitti. Çalışma odası birazdan kapanacak",
|
||||
"app.calculatingBreakoutTimeRemaining": "Kalan süre hesaplanıyor...",
|
||||
"app.audioModal.ariaTitle": "Ses modunda katılın",
|
||||
"app.audioModal.microphoneLabel": "Mikrofon",
|
||||
"app.audioModal.listenOnlyLabel": "Sadece dinleyici",
|
||||
"app.audioModal.audioChoiceLabel": "Sesli katılımınızı nasıl yapmak istersiniz?",
|
||||
"app.audioModal.iOSBrowser": "Ses / Video desteklenmiyor",
|
||||
"app.audioModal.iOSErrorDescription": "Şu anda iOS için Chrome'da ses ve video desteklenmemektedir.",
|
||||
"app.audioModal.iOSErrorRecommendation": "Safari iOS kullanmanızı tavsiye ederiz.",
|
||||
"app.audioModal.audioChoiceDesc": "Bu görüşmede sesli katılımınızı nasıl yapmak istediğinizi seçin",
|
||||
"app.audioModal.unsupportedBrowserLabel": "Tam olarak desteklenmeyen bir tarayıcı kullanıyorsunuz. Lütfen tam destek için {0} veya {1} kullanın.",
|
||||
"app.audioModal.closeLabel": "Kapat",
|
||||
"app.audioModal.yes": "Evet",
|
||||
"app.audioModal.no": "Hayır",
|
||||
"app.audioModal.yes.arialabel" : "Yankı duyulur",
|
||||
"app.audioModal.no.arialabel" : "Yankı duyulmaz",
|
||||
"app.audioModal.echoTestTitle": "Bu özel bir yankı testidir. Birkaç kelime konuşun. Ses duydunuz mu?",
|
||||
"app.audioModal.settingsTitle": "Ses ayarlarınızı değiştirin",
|
||||
"app.audioModal.helpTitle": "Medya cihazlarınızla ilgili bir problemi oluştu",
|
||||
"app.audioModal.helpText": "Sistemin mikrofonunuza erişim talebini onayladınız mı? Sesli görüşmeye katılmak istediğinizde, medya cihazlarınıza erişim izniyle ilgili bir iletişim kutusu görünecektir, sesli görüşmeye katılabilmek için onay vermeniz gerekir. Eğer onay iletişim kutusu görünmediyse, web tarayıcınızın ayarlarındaki mikrofon izinlerini değiştirmeyi deneyin.",
|
||||
"app.audioModal.help.noSSL": "Bu sayfa güvenli değil. Mikrofon erişimine izin verilebilmesi için sayfa HTTPS üzerinden sunulmalıdır. Lütfen sunucu yöneticisine başvurun.",
|
||||
"app.audioModal.help.macNotAllowed": " Mac Sistem Tercihleriniz mikrofonunuza erişimi engelliyor gibi görünüyor. Sistem Tercihleri > Güvenlik ve Gizlilik > Gizlilik > Mikrofon açın ve kullandığınız tarayıcının kontrol edildiğini doğrulayın.",
|
||||
"app.audioModal.audioDialTitle": "Telefon numarası ile katıl",
|
||||
"app.audioDial.audioDialDescription": "Ara",
|
||||
"app.audioDial.audioDialConfrenceText": "ve oturuma katılmak için PIN numarasını gir:",
|
||||
"app.audioModal.autoplayBlockedDesc": "Sesli katılım için izninize ihtiyacımız var.",
|
||||
"app.audioModal.playAudio": "Ses çal",
|
||||
"app.audioModal.playAudio.arialabel" : "Ses çal",
|
||||
"app.audioDial.tipIndicator": "İpucu",
|
||||
"app.audioDial.tipMessage": "Sesli katılımı kapatmak / açmak için '0' tuşuna basın.",
|
||||
"app.audioModal.connecting": "Bağlanıyor",
|
||||
"app.audioModal.connectingEchoTest": "Ses testine bağlanılıyor",
|
||||
"app.audioManager.joinedAudio": "Sesli görüşmeye katıldınız",
|
||||
"app.audioManager.joinedEcho": "Ses yankı testine katıldınız",
|
||||
"app.audioManager.leftAudio": "Sesli görüşmeden ayrıldınız",
|
||||
"app.audioManager.reconnectingAudio": "Sesi yeniden bağlamaya çalışıyor",
|
||||
"app.audioManager.genericError": "Hata: Bir hata oluştu, lütfen tekrar deneyin",
|
||||
"app.audioManager.connectionError": "Hata: Bağlantı hatası",
|
||||
"app.audioManager.requestTimeout": "Hata: İstek zaman aşımına uğradı",
|
||||
@ -381,6 +423,8 @@
|
||||
"app.audioManager.mediaError": "Hata: Medya cihazlarınıza erişim problemi oluştu",
|
||||
"app.audio.joinAudio": "Sesli Katıl",
|
||||
"app.audio.leaveAudio": "Sesli Katılımı Kapat",
|
||||
"app.audio.enterSessionLabel": "Oturuma Katıl",
|
||||
"app.audio.playSoundLabel": "Ses çal",
|
||||
"app.audio.backLabel": "Geri",
|
||||
"app.audio.audioSettings.titleLabel": "Ses ayarlarınızı seçin",
|
||||
"app.audio.audioSettings.descriptionLabel": "Web tarayıcınızda mikrofon paylaşımıyla ilgili iletişim kutusu görünecektir, onaylamayı unutmayınız.",
|
||||
@ -391,27 +435,63 @@
|
||||
"app.audio.listenOnly.backLabel": "Geri",
|
||||
"app.audio.listenOnly.closeLabel": "Kapat",
|
||||
"app.audio.permissionsOverlay.title": "BigBlueButton'un Medya Cihazlarınızı kullanmasına izin verin",
|
||||
"app.audio.permissionsOverlay.hint": "Sesli oturuma katılmak için medya cihazlarınızı kullanmamıza izin vermeniz gerekiyor :)",
|
||||
"app.error.removed": "Konferanstan uzaklaştırıldınız",
|
||||
"app.error.meeting.ended": "Konferanstan ayrıldınız",
|
||||
"app.meeting.logout.duplicateUserEjectReason": "Toplantıya katılmaya çalışan mükerrer kullanıcı",
|
||||
"app.meeting.logout.permissionEjectReason": "İzin ihlali nedeniyle çıkarıldı",
|
||||
"app.meeting.logout.ejectedFromMeeting": "Oturumdan çıkarıldınız",
|
||||
"app.meeting.logout.validateTokenFailedEjectReason": "Yetkilendirme belirteci/token doğrulanamadı",
|
||||
"app.meeting.logout.userInactivityEjectReason": "Kullanıcı uzun süredir aktif değil",
|
||||
"app.meeting-ended.rating.legendLabel": "Geribildirim oylaması",
|
||||
"app.meeting-ended.rating.starLabel": "Yıldız",
|
||||
"app.modal.close": "Kapat",
|
||||
"app.modal.close.description": "Değişiklikleri göz ardı eder ve modunu kapatır",
|
||||
"app.modal.confirm": "Tamamlandı",
|
||||
"app.modal.newTab": "(yeni sekmeyi açar)",
|
||||
"app.modal.confirm.description": "Değişiklikleri kaydeder ve modunu kapatır",
|
||||
"app.dropdown.close": "Kapat",
|
||||
"app.error.400": "Geçersiz istek",
|
||||
"app.error.401": "Yetkisiz",
|
||||
"app.error.403": "Oturumdan çıkarıldınız",
|
||||
"app.error.404": "Bulunamadı",
|
||||
"app.error.410": "Oturum sona erdi",
|
||||
"app.error.500": "Hops, birşeyler ters gitti",
|
||||
"app.error.leaveLabel": "Tekrar giriş yap",
|
||||
"app.error.fallback.presentation.title": "Bir hata oluştu",
|
||||
"app.error.fallback.presentation.description": "Giriş yapıldı. Lütfen sayfayı yeniden yüklemeyi deneyin.",
|
||||
"app.error.fallback.presentation.reloadButton": "Tekrar yükle",
|
||||
"app.guest.waiting": "Katılım onayı bekleniyor",
|
||||
"app.userList.guest.waitingUsers": "Kullanıcılar bekleniyor",
|
||||
"app.userList.guest.waitingUsersTitle": "Kullanıcı yönetimi",
|
||||
"app.userList.guest.optionTitle": "Bekleyen Kullanıcıları İnceleyin",
|
||||
"app.userList.guest.allowAllAuthenticated": "Doğrulanmış tüm kullanıcılara izin ver",
|
||||
"app.userList.guest.allowAllGuests": "Tüm misafir kullanıcılara izin ver",
|
||||
"app.userList.guest.allowEveryone": "Herkese izin ver",
|
||||
"app.userList.guest.denyEveryone": "Herkesi reddet",
|
||||
"app.userList.guest.pendingUsers": "{0} Bekleyen Kullanıcı",
|
||||
"app.userList.guest.pendingGuestUsers": "{0} Bekleyen Misafir Kullanıcı",
|
||||
"app.userList.guest.pendingGuestAlert": "Oturuma katıldı ve onayınızı bekliyor.",
|
||||
"app.userList.guest.rememberChoice": "Seçimi hatırla",
|
||||
"app.user-info.title": "Dizin araması",
|
||||
"app.toast.breakoutRoomEnded": "Çalışma odası sonlandı. Lütfen sesli görüşmeye yeniden katılın.",
|
||||
"app.toast.chat.public": "Yeni Genel Sohbet mesajı",
|
||||
"app.toast.chat.private": "Yeni Özel Sohbet mesajı",
|
||||
"app.toast.chat.system": "Sistem",
|
||||
"app.toast.clearedEmoji.label": "Emoji durumu temizlendi",
|
||||
"app.toast.setEmoji.label": "Emoji durumu {0} olarak ayarlandı",
|
||||
"app.toast.meetingMuteOn.label": "Tüm kullanıcılar için ses kapatıldı",
|
||||
"app.toast.meetingMuteOff.label": "Sessiz toplantı kapatıldı",
|
||||
"app.notification.recordingStart": "Bu oturum şu anda kaydediliyor",
|
||||
"app.notification.recordingStop": "Bu oturum şu anda kaydediliyor",
|
||||
"app.notification.recordingPaused": "Bu oturum artık kaydedilmiyor",
|
||||
"app.notification.recordingAriaLabel": "Kaydedilen süre",
|
||||
"app.shortcut-help.title": "Klavye kısayolları",
|
||||
"app.shortcut-help.accessKeyNotAvailable": "Erişim tuşları mevcut değil",
|
||||
"app.shortcut-help.comboLabel": "Açılan Kutu",
|
||||
"app.shortcut-help.functionLabel": "Fonksiyon",
|
||||
"app.shortcut-help.closeLabel": "Kapat",
|
||||
"app.shortcut-help.closeDesc": "Klavye kısayolları modunu kapatır",
|
||||
"app.shortcut-help.openOptions": "Seçenekleri Aç",
|
||||
"app.shortcut-help.toggleUserList": "Kullanıcı Listesine Geç",
|
||||
"app.shortcut-help.toggleMute": "Sustur / Konuştur",
|
||||
@ -448,7 +528,7 @@
|
||||
"app.videoPreview.profileLabel": "Kalite",
|
||||
"app.videoPreview.cancelLabel": "Vazgeç",
|
||||
"app.videoPreview.closeLabel": "Kapat",
|
||||
"app.videoPreview.findingWebcamsLabel": "Web kamerası bulmak",
|
||||
"app.videoPreview.findingWebcamsLabel": "Web kamerası bulunuyor",
|
||||
"app.videoPreview.startSharingLabel": "Paylaşımı başlat",
|
||||
"app.videoPreview.webcamOptionLabel": "Web kamerası seçin",
|
||||
"app.videoPreview.webcamPreviewLabel": "Web kamerası ön izlemesi",
|
||||
@ -462,6 +542,12 @@
|
||||
"app.video.permissionError": "Web kamerası paylaşılırken hata oluştu. Lütfen izinleri kontrol et",
|
||||
"app.video.sharingError": "Kamera paylaşımı hatası",
|
||||
"app.video.notFoundError": "Web kamerası bulunamadı. Lütfen bağlı olduğunu kontrol edin.",
|
||||
"app.video.notAllowed": "Web kamerasını paylaşma izni eksik, lütfen tarayıcı izinlerinizden emin olun",
|
||||
"app.video.notSupportedError": "Web kamerası videosunu yalnızca güvenli kaynaklarla paylaşabilir, SSL sertifikanızın geçerli olduğundan emin olun",
|
||||
"app.video.notReadableError": "Web kamerası videosu alınamadı. Lütfen başka bir programın web kamerasını kullanmadığından emin olun",
|
||||
"app.video.mediaFlowTimeout1020": "Hata 1020: medya, sunucuya erişemedi",
|
||||
"app.video.suggestWebcamLock": "İzleyicilerin web kamera ayarlarını kilitlemeye zorla",
|
||||
"app.video.suggestWebcamLockReason": "(bu, toplantının istikrarını artıracak)",
|
||||
"app.video.enable": "Etkinleştir",
|
||||
"app.video.cancel": "Vazgeç",
|
||||
"app.video.swapCam": "Değiştir",
|
||||
@ -487,6 +573,16 @@
|
||||
"app.video.stats.encodeUsagePercent": "Çözümleme kullanımı",
|
||||
"app.video.stats.currentDelay": "Mevcut gecikme",
|
||||
"app.fullscreenButton.label": "{0} tam ekran yap",
|
||||
"app.deskshare.iceConnectionStateError": "Hata 1108: Ekran paylaşılırken ICE bağlantısı başarısız oldu",
|
||||
"app.sfu.mediaServerConnectionError2000": "Hata 2000: Medya sunucusuna bağlanılamıyor",
|
||||
"app.sfu.mediaServerOffline2001": "Hata 2001: Medya sunucusu çevrimdışı. Lütfen daha sonra tekrar deneyiniz.",
|
||||
"app.sfu.mediaServerNoResources2002": "Hata 2002: Medya sunucusunda uygun kaynak yok",
|
||||
"app.sfu.mediaServerRequestTimeout2003": "Hata 2003: Medya sunucusu istekleri zaman aşımına uğradı",
|
||||
"app.sfu.serverIceGatheringFailed2021": "Hata 2021: Medya sunucusu ICE adaylarını toplayamıyor",
|
||||
"app.sfu.serverIceGatheringFailed2022": "Hata 2022: Medya sunucusu ICE bağlantısı başarısız oldu",
|
||||
"app.sfu.mediaGenericError2200": "Hata 2200: Medya sunucusu isteği işleyemedi",
|
||||
"app.sfu.invalidSdp2202":"Hata 2202: İstemci geçersiz bir SDP oluşturdu",
|
||||
"app.sfu.noAvailableCodec2203": "Hata 2203: Sunucu uygun bir codec bileşenini bulamadı",
|
||||
"app.meeting.endNotification.ok.label": "TAMAM",
|
||||
"app.whiteboard.annotations.poll": "Anket sonuçları yayınlandı",
|
||||
"app.whiteboard.toolbar.tools": "Araçlar",
|
||||
@ -498,6 +594,7 @@
|
||||
"app.whiteboard.toolbar.tools.line": "Çizgi",
|
||||
"app.whiteboard.toolbar.tools.text": "Metin",
|
||||
"app.whiteboard.toolbar.thickness": "Çizim kalınlığı",
|
||||
"app.whiteboard.toolbar.thicknessDisabled": "Çizim kalınlığı devre dışı",
|
||||
"app.whiteboard.toolbar.color": "Renkler",
|
||||
"app.whiteboard.toolbar.colorDisabled": "Renkler devre dışı",
|
||||
"app.whiteboard.toolbar.color.black": "Siyah",
|
||||
@ -526,38 +623,55 @@
|
||||
"app.videoDock.webcamFocusDesc": "Seçili kamerayı odakla",
|
||||
"app.videoDock.webcamUnfocusLabel": "Uzaklaş",
|
||||
"app.videoDock.webcamUnfocusDesc": "Seçili kameradan uzaklaş",
|
||||
"app.videoDock.autoplayBlockedDesc": "Size diğer kullanıcıların web kameralarını göstermek için izninize ihtiyacımız var.",
|
||||
"app.videoDock.autoplayAllowLabel": "Web kameraları görüntüle",
|
||||
"app.invitation.title": "Çalıştay odası davetiyesi",
|
||||
"app.invitation.title": "Çalışma odası davetiyesi",
|
||||
"app.invitation.confirm": "Davet et",
|
||||
"app.createBreakoutRoom.title": "Çalıştay Odaları",
|
||||
"app.createBreakoutRoom.ariaTitle": "Çalıştay Odalarını Gizle",
|
||||
"app.createBreakoutRoom.breakoutRoomLabel": "Çalıştay Odası {0}",
|
||||
"app.createBreakoutRoom.title": "Çalışma Odaları",
|
||||
"app.createBreakoutRoom.ariaTitle": "Çalışma Odalarını Gizle",
|
||||
"app.createBreakoutRoom.breakoutRoomLabel": "Çalışma Odası {0}",
|
||||
"app.createBreakoutRoom.generatingURL": "URL oluşturuluyor",
|
||||
"app.createBreakoutRoom.generatedURL": "Oluşturuldu",
|
||||
"app.createBreakoutRoom.duration": "Süre {0}",
|
||||
"app.createBreakoutRoom.room": "Oda {0}",
|
||||
"app.createBreakoutRoom.notAssigned": "Atanmamış ({0})",
|
||||
"app.createBreakoutRoom.join": "Odaya katıl",
|
||||
"app.createBreakoutRoom.joinAudio": "Sesli Katıl",
|
||||
"app.createBreakoutRoom.returnAudio": "Dönüş sesi",
|
||||
"app.createBreakoutRoom.alreadyConnected": "Zaten odada",
|
||||
"app.createBreakoutRoom.confirm": "Oluştur",
|
||||
"app.createBreakoutRoom.record": "Kayıt",
|
||||
"app.createBreakoutRoom.numberOfRooms": "Oda sayısı",
|
||||
"app.createBreakoutRoom.durationInMinutes": "Süre (dakika)",
|
||||
"app.createBreakoutRoom.randomlyAssign": "Rastgele atama",
|
||||
"app.createBreakoutRoom.endAllBreakouts": "Tüm çalıştay odalarını sonlandır",
|
||||
"app.createBreakoutRoom.endAllBreakouts": "Tüm çalışma odalarını sonlandır",
|
||||
"app.createBreakoutRoom.roomName": "{0} (Oda - {1})",
|
||||
"app.createBreakoutRoom.doneLabel": "Tamamlandı",
|
||||
"app.createBreakoutRoom.nextLabel": "Sonraki",
|
||||
"app.createBreakoutRoom.minusRoomTime": "Çalışma odası süresini kısaltır",
|
||||
"app.createBreakoutRoom.addRoomTime": "Çalışma odası süresini arttırır",
|
||||
"app.createBreakoutRoom.addParticipantLabel": "+ Katılımcı ekle",
|
||||
"app.createBreakoutRoom.freeJoin": "Kullanıcıların katılmak için bir çalıştay odası seçmesine izin ver",
|
||||
"app.createBreakoutRoom.freeJoin": "Kullanıcıların katılmak için bir çalışma odası seçmesine izin ver",
|
||||
"app.createBreakoutRoom.leastOneWarnBreakout": "Bir çalışma odasına en az bir kullanıcı atamalısınız..",
|
||||
"app.createBreakoutRoom.modalDesc": "İpucu: Herhangi bir çalışma odasına atama yapmak için kullanıcının adını sürükleyip bırakabilirsiniz.",
|
||||
"app.createBreakoutRoom.roomTime": "{0} dakika",
|
||||
"app.createBreakoutRoom.numberOfRoomsError": "Oda sayısı geçersiz.",
|
||||
"app.externalVideo.start": "Yeni bir video paylaş",
|
||||
"app.externalVideo.title": "Harici bir video paylaşın",
|
||||
"app.externalVideo.input": "Harici Video URL",
|
||||
"app.externalVideo.urlInput": "Video URL'i ekle",
|
||||
"app.externalVideo.urlError": "Bu video URL’si desteklenmiyor",
|
||||
"app.externalVideo.close": "Kapat",
|
||||
"app.externalVideo.autoPlayWarning": "Medya senkronizasyonunu etkinleştirmek için videoyu oynatın",
|
||||
"app.network.connection.effective.slow": "Bağlantı sorunlarını tespit ediyoruz",
|
||||
"app.network.connection.effective.slow.help": "Daha fazla bilgi",
|
||||
"app.externalVideo.noteLabel": "Not: Paylaşılan harici videolar kayıtta görünmez. YouTube, Vimeo, Instructure Media, Twitch ve Daily Motion URL'leri desteklenir.",
|
||||
"app.actionsBar.actionsDropdown.shareExternalVideo": "Harici bir video paylaşın",
|
||||
"app.actionsBar.actionsDropdown.stopShareExternalVideo": "Harici video paylaşımını durdur"
|
||||
"app.actionsBar.actionsDropdown.stopShareExternalVideo": "Harici video paylaşımını durdur",
|
||||
"app.iOSWarning.label": "Lütfen iOS 12.2 veya daha üstüne yükseltin",
|
||||
"app.legacy.unsupportedBrowser": "Tam olarak desteklenmeyen bir tarayıcı kullanıyorsunuz. Lütfen tam destek için {0} veya {1} kullanın.",
|
||||
"app.legacy.upgradeBrowser": "Desteklenen bir tarayıcının eski bir sürümünü kullanıyor gibi görünüyorsunuz. Lütfen tam destek için tarayıcınızı güncelleyin.",
|
||||
"app.legacy.criosBrowser": "Lütfen iOS'ta tam destek için Safari'yi kullanın."
|
||||
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,6 @@
|
||||
"app.presentation.presentationToolbar.fitToWidth": "Підігнати по ширині",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Слайд {0}",
|
||||
"app.presentationUploder.title": "Презентація",
|
||||
"app.presentationUploder.message": "Як ведучий ви маєте можливість завантажувати будь-який офісний документ або PDF-файл. Для найкращих результатів ми рекомендуємо PDF-файл. Переконайтеся, що вибрано презентацію за допомогою прапорця праворуч.",
|
||||
"app.presentationUploder.uploadLabel": "Завантажити",
|
||||
"app.presentationUploder.confirmLabel": "Підтвердити",
|
||||
"app.presentationUploder.confirmDesc": "Зберегти зміни та розпочати презентацію",
|
||||
@ -136,7 +135,6 @@
|
||||
"app.presentationUploder.genericError": "Ой, щось пішло не так",
|
||||
"app.presentationUploder.rejectedError": "Вибрані файл(и) відхилено. Перевірте тип файлу(iв).",
|
||||
"app.presentationUploder.upload.progress": "Завантаження ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Файл завеликий, не більше 200 сторінок",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Обробка сторінки {0} з {1}",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Файл конвертується...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Генерування мініатюр...",
|
||||
|
@ -156,7 +156,7 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "Khớp với toàn bộ trang",
|
||||
"app.presentation.presentationToolbar.goToSlide": "Slide {0}",
|
||||
"app.presentationUploder.title": "Phần trình bày",
|
||||
"app.presentationUploder.message": "Là người thuyết trình, bạn có thể tải tài liệu lên. PDF là định dạng được đề xuất để có được kết quả tốt nhất. Xin chú ý rẳng bài thuyết trình được chọn bằng cách đánh dấu vào ô ở bên phải.",
|
||||
"app.presentationUploder.message": "Với bài thuyết trình bạn có thể tải lên nhiều file office hoặc PDF. Chúng tôi khuyên nên dùng file PDF để được kết quả hiển thị tốt nhất. Vui lòng đảm bảo rằng có 1 file trình bày được chọn bằng cách chọn vào ô checkbox phía bên phải.",
|
||||
"app.presentationUploder.uploadLabel": "Đưa lên",
|
||||
"app.presentationUploder.confirmLabel": "Xác nhận",
|
||||
"app.presentationUploder.confirmDesc": "Lưu lại những thay dổi và bắt đầu bài trình bày",
|
||||
@ -171,7 +171,7 @@
|
||||
"app.presentationUploder.genericError": "Ops, đã xảy ra lỗi",
|
||||
"app.presentationUploder.rejectedError": "(Các) Tài liệu không hợp lệ, xin hãy kiểm tra lại định dạng (các) tài liệu",
|
||||
"app.presentationUploder.upload.progress": "Đang đưa lên ({0}%)",
|
||||
"app.presentationUploder.upload.413": "Kích thước file quá lớn, tối đa là 200 trang.",
|
||||
"app.presentationUploder.upload.413": "File quá dung lượng. Vui lòng cắt nhỏ thành nhiều file để giảm dung lượng.",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "Đang xử lý {0} trên {1} trang",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "Đang chuyển đổi file...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "Tạo thumbnails",
|
||||
@ -255,6 +255,7 @@
|
||||
"app.navBar.recording": "Phiên hoạt động đang dược ghi lại",
|
||||
"app.navBar.recording.on": "Ghi hình",
|
||||
"app.navBar.recording.off": "Không được ghi hình",
|
||||
"app.navBar.emptyAudioBrdige": "Không có micro đang kích hoạt. Chia sẻ micro của bạn để thêm âm thanh vào file recording này.",
|
||||
"app.leaveConfirmation.confirmLabel": "Rời khỏi",
|
||||
"app.leaveConfirmation.confirmDesc": "Đăng xuất khỏi cuộc họp",
|
||||
"app.endMeeting.title": "Cuộc họp kết thúc",
|
||||
@ -614,7 +615,7 @@
|
||||
"app.whiteboard.toolbar.multiUserOff": "Tắt bảng trắng cho nhiều người dùng",
|
||||
"app.whiteboard.toolbar.fontSize": "Danh sách kích thước phông chữ",
|
||||
"app.feedback.title": "Bạn vừa đăng xuất khỏi cuộc hội nghị",
|
||||
"app.feedback.subtitle": "Chúng tôi muốn nghe về trải nghiệm của bạn về BigBlueButton (tùy chọn)",
|
||||
"app.feedback.subtitle": "Chúng tôi muốn nghe về trải nghiệm của bạn về hệ thống này (tùy chọn)",
|
||||
"app.feedback.textarea": "Làm thế nào để chúng tối tạo BigBlueButton tốt hơn ?",
|
||||
"app.feedback.sendFeedback": "Gửi phản hồi",
|
||||
"app.feedback.sendFeedbackDesc": "Gửi phản hồi và rời cuộc họp",
|
||||
|
@ -171,7 +171,7 @@
|
||||
"app.presentationUploder.genericError": "哎哟,出错了",
|
||||
"app.presentationUploder.rejectedError": "选定的文件(s)已被拒绝。请检查文件类型(s)。",
|
||||
"app.presentationUploder.upload.progress": "上传中({0}%)",
|
||||
"app.presentationUploder.upload.413": "文件太大,最多只能200页",
|
||||
"app.presentationUploder.upload.413": "文件太大,请分成多个文件。",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "处理中,第{0}页/共{1}页",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "文件转换中...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "正在生成缩略图...",
|
||||
@ -255,6 +255,7 @@
|
||||
"app.navBar.recording": "正在录制当前会议",
|
||||
"app.navBar.recording.on": "录制中",
|
||||
"app.navBar.recording.off": "未录制",
|
||||
"app.navBar.emptyAudioBrdige": "没有活动麦克风。分享麦克风可将音频添加到录像中。",
|
||||
"app.leaveConfirmation.confirmLabel": "退出",
|
||||
"app.leaveConfirmation.confirmDesc": "您将从会议退出",
|
||||
"app.endMeeting.title": "结束会议",
|
||||
|
@ -156,7 +156,6 @@
|
||||
"app.presentation.presentationToolbar.fitToPage": "適合頁面",
|
||||
"app.presentation.presentationToolbar.goToSlide": "投影片 {0}",
|
||||
"app.presentationUploder.title": "簡報",
|
||||
"app.presentationUploder.message": "身為主持人,您可以上傳任何Office文件或PDF檔,我們推薦採用PDF檔案獲取最佳效果。請確認使用右手邊的圓形複選框選擇簡報。",
|
||||
"app.presentationUploder.uploadLabel": "上傳",
|
||||
"app.presentationUploder.confirmLabel": "確認",
|
||||
"app.presentationUploder.confirmDesc": "保存變更並且啟用簡報",
|
||||
@ -171,7 +170,6 @@
|
||||
"app.presentationUploder.genericError": "哎呀,有問題",
|
||||
"app.presentationUploder.rejectedError": "所選檔案(複數檔)已被退回,請檢查(其它)檔案格式。",
|
||||
"app.presentationUploder.upload.progress": "上傳中 ({0}%)",
|
||||
"app.presentationUploder.upload.413": "文件太大,已抵達最多200頁",
|
||||
"app.presentationUploder.conversion.conversionProcessingSlides": "處理中,第 {0}/{1} 頁",
|
||||
"app.presentationUploder.conversion.genericConversionStatus": "檔案轉換中 ...",
|
||||
"app.presentationUploder.conversion.generatingThumbnail": "正在產生縮圖 ...",
|
||||
|
Loading…
Reference in New Issue
Block a user