mirror of https://github.com/sualko/cloud_bbb
Compare commits
68 Commits
9f92da5b3d
...
3c11eceef8
Author | SHA1 | Date |
---|---|---|
|
3c11eceef8 | |
|
64e01bfc36 | |
|
4932c18f1a | |
|
4a0b00589c | |
|
ff4373e09b | |
|
8b7f726c2b | |
|
08c0503002 | |
|
b7835b0776 | |
|
8dbcb71000 | |
|
290b6d9998 | |
|
6a355a0abc | |
|
bcf1be96bc | |
|
3b91a5f4ea | |
|
443bb5833a | |
|
1b4d2dd830 | |
|
6c5248788d | |
|
c083217e91 | |
|
0908f16913 | |
|
dd39b26465 | |
|
4a11c21a00 | |
|
29aa147ce6 | |
|
95e4e4f7ee | |
|
a203c53332 | |
|
b3fd04b2ae | |
|
038f24302f | |
|
f57c25eab2 | |
|
bcf33e99e9 | |
|
e34c3b6e9e | |
|
b099136690 | |
|
7f1760c372 | |
|
ab314393e9 | |
|
a8591150de | |
|
858753022b | |
|
558cc95231 | |
|
4095cbe52d | |
|
2a29608c97 | |
|
fbb4ae1cf3 | |
|
57a21b7c08 | |
|
f50a04063e | |
|
f853802777 | |
|
7744169037 | |
|
ac8d23521f | |
|
81e6c01ba1 | |
|
35a764d13a | |
|
6ace431870 | |
|
c761e4eee1 | |
|
44a655835b | |
|
adc4142211 | |
|
74c19d75d3 | |
|
122cf10f60 | |
|
74c32f4e27 | |
|
be15e93730 | |
|
f9ee7eed5a | |
|
ac15802258 | |
|
0e7ea5e810 | |
|
1daf79f2db | |
|
65f5cd60af | |
|
389f3f89b9 | |
|
060654531e | |
|
dd48d55419 | |
|
ac2626bc2c | |
|
9fed698723 | |
|
fbf33378aa | |
|
e846404208 | |
|
081d2b9150 | |
|
9538c35e79 | |
|
0219cf5df0 | |
|
baf28d07b3 |
29
CHANGELOG.md
29
CHANGELOG.md
|
@ -6,6 +6,35 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 2.7.1 (2024-09-18)
|
||||
### Misc
|
||||
- fix composer install in build script
|
||||
- remove deprecated simple-git import
|
||||
|
||||
## 2.7.0 (2024-09-15)
|
||||
### Added
|
||||
- sharing rooms with moderators and users
|
||||
- manage view of rooms for moderators and users
|
||||
- videos for all users and moderators
|
||||
- sharing rooms with moderators and users
|
||||
- manage view of rooms for moderators and users
|
||||
- videos for all users and moderators
|
||||
- videos for all users and moderators
|
||||
- sharing rooms with moderators and users
|
||||
- manage view of rooms for moderators and users
|
||||
- list all shared rooms for users and moderators
|
||||
|
||||
### Fixed
|
||||
- no clone action for non-admin
|
||||
- bug with name of shared groups
|
||||
- don't use backticks
|
||||
- add missing translations
|
||||
- use querybuilder for user comparison
|
||||
|
||||
### Misc
|
||||
- respect tabs
|
||||
- disabled checkbox
|
||||
|
||||
## 2.6.0 (2024-04-28)
|
||||
### Added
|
||||
- add Search Provider
|
||||
|
|
|
@ -22,7 +22,7 @@ Developer wanted! If you have time it would be awesome if you could help to enha
|
|||
|
||||
*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*
|
||||
]]></description>
|
||||
<version>2.6.0</version>
|
||||
<version>2.7.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="klaus@jsxc.org">Klaus Herberth</author>
|
||||
<namespace>BigBlueButton</namespace>
|
||||
|
|
|
@ -14,9 +14,10 @@ return [
|
|||
['name' => 'server#check', 'url' => '/server/check', 'verb' => 'POST'],
|
||||
['name' => 'server#version', 'url' => '/server/version', 'verb' => 'GET'],
|
||||
['name' => 'server#delete_record', 'url' => '/server/record/{recordId}', 'verb' => 'DELETE'],
|
||||
['name' => 'server#publish_record', 'url' => '/server/record/{recordId}/publish', 'verb' => 'POST'],
|
||||
['name' => 'join#index', 'url' => '/b/{token}/{moderatorToken}', 'verb' => 'GET', 'defaults' => ['moderatorToken' => '']],
|
||||
['name' => 'restriction#user', 'url' => '/restrictions/user', 'verb' => 'GET'],
|
||||
['name' => 'hook#meetingEnded', 'url' => '/hook/ended/{token}/{mac}', 'verb' => 'GET'],
|
||||
['name' => 'hook#recordingReady', 'url' => '/hook/recording/{token}/{mac}', 'verb' => 'GET'],
|
||||
['name' => 'hook#recordingReady', 'url' => '/hook/recording/{token}/{mac}', 'verb' => 'POST'],
|
||||
]
|
||||
];
|
||||
|
|
|
@ -15,7 +15,7 @@ OC.L10N.register(
|
|||
"Delete" : "Skrap",
|
||||
"Error" : "Fout",
|
||||
"Server error" : "Bedienerfout",
|
||||
"Share" : "Deel",
|
||||
"Start" : "Begin",
|
||||
"Loading" : "Laai tans..",
|
||||
"Settings saved" : "Instellings gestoor"
|
||||
},
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"Delete" : "Skrap",
|
||||
"Error" : "Fout",
|
||||
"Server error" : "Bedienerfout",
|
||||
"Share" : "Deel",
|
||||
"Start" : "Begin",
|
||||
"Loading" : "Laai tans..",
|
||||
"Settings saved" : "Instellings gestoor"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
|
13
l10n/an.js
13
l10n/an.js
|
@ -1,13 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"bbb",
|
||||
{
|
||||
"Password" : "Clau",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"Name" : "Nombre",
|
||||
"Create" : "Crear",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Share" : "Compartir"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
11
l10n/an.json
11
l10n/an.json
|
@ -1,11 +0,0 @@
|
|||
{ "translations": {
|
||||
"Password" : "Clau",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"Name" : "Nombre",
|
||||
"Create" : "Crear",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Share" : "Compartir"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
12
l10n/ar.js
12
l10n/ar.js
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "المجموعة",
|
||||
"Searching" : "بحث",
|
||||
"No matches" : "لا يوجد تطابق",
|
||||
"admin" : "مشرف",
|
||||
"moderator" : "مشرف",
|
||||
"user" : "مستخدِم",
|
||||
"Name" : "الاسم",
|
||||
"Access" : "النفاذ",
|
||||
"Max" : "أقصى",
|
||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
|||
"Room URL" : "عنوان URL الغرفة",
|
||||
"Welcome" : "مرحباً",
|
||||
"Participant limit" : "الحد الأقصى للمشاركين",
|
||||
"Sharing" : "المشاركة",
|
||||
"Every participant is moderator" : "كل مشارك هو منسق",
|
||||
"Moderator access via URL" : "وصول المنسق عن طريق العنوان URL",
|
||||
"Miscellaneous" : "متنوع",
|
||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "أدخُل الاجتماع بدون صوت",
|
||||
"Room name" : "اسم الغرفة",
|
||||
"Create" : "إنشاء",
|
||||
"Published" : "منشورةٌ",
|
||||
"Open recording" : "إفتح التسجيل",
|
||||
"Copy to clipboard" : "نسخ الرابط",
|
||||
"Save as file" : "حفظ كملف",
|
||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
|||
"Delete?" : "حذف؟",
|
||||
"Could not delete record" : "تعذّر حذف التسجيل",
|
||||
"Server error" : "خطا في الخادم",
|
||||
"moderator" : "مشرف",
|
||||
"admin" : "مشرف",
|
||||
"Share" : "شارك",
|
||||
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
||||
"Open room" : "فتح غرفة",
|
||||
"Start" : "ابدأ",
|
||||
"Clone room" : "استنساخ غرفة",
|
||||
"Loading" : "Loading",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "لا يمكنك تعديل هذا الخيار؛ بسبب أن الغرفة مشاركة معك.",
|
||||
"Max. rooms" : "أقصى عدد من الغرف",
|
||||
|
|
12
l10n/ar.json
12
l10n/ar.json
|
@ -54,6 +54,9 @@
|
|||
"Group" : "المجموعة",
|
||||
"Searching" : "بحث",
|
||||
"No matches" : "لا يوجد تطابق",
|
||||
"admin" : "مشرف",
|
||||
"moderator" : "مشرف",
|
||||
"user" : "مستخدِم",
|
||||
"Name" : "الاسم",
|
||||
"Access" : "النفاذ",
|
||||
"Max" : "أقصى",
|
||||
|
@ -80,6 +83,7 @@
|
|||
"Room URL" : "عنوان URL الغرفة",
|
||||
"Welcome" : "مرحباً",
|
||||
"Participant limit" : "الحد الأقصى للمشاركين",
|
||||
"Sharing" : "المشاركة",
|
||||
"Every participant is moderator" : "كل مشارك هو منسق",
|
||||
"Moderator access via URL" : "وصول المنسق عن طريق العنوان URL",
|
||||
"Miscellaneous" : "متنوع",
|
||||
|
@ -91,6 +95,7 @@
|
|||
"Join meeting muted" : "أدخُل الاجتماع بدون صوت",
|
||||
"Room name" : "اسم الغرفة",
|
||||
"Create" : "إنشاء",
|
||||
"Published" : "منشورةٌ",
|
||||
"Open recording" : "إفتح التسجيل",
|
||||
"Copy to clipboard" : "نسخ الرابط",
|
||||
"Save as file" : "حفظ كملف",
|
||||
|
@ -109,9 +114,10 @@
|
|||
"Delete?" : "حذف؟",
|
||||
"Could not delete record" : "تعذّر حذف التسجيل",
|
||||
"Server error" : "خطا في الخادم",
|
||||
"moderator" : "مشرف",
|
||||
"admin" : "مشرف",
|
||||
"Share" : "شارك",
|
||||
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
||||
"Open room" : "فتح غرفة",
|
||||
"Start" : "ابدأ",
|
||||
"Clone room" : "استنساخ غرفة",
|
||||
"Loading" : "Loading",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "لا يمكنك تعديل هذا الخيار؛ بسبب أن الغرفة مشاركة معك.",
|
||||
"Max. rooms" : "أقصى عدد من الغرف",
|
||||
|
|
|
@ -33,6 +33,7 @@ OC.L10N.register(
|
|||
"Group" : "Grupu",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Nun hai nenguna coincidencia",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nome",
|
||||
"Access" : "Accesu",
|
||||
"Recordings" : "Grabaciones",
|
||||
|
@ -44,11 +45,13 @@ OC.L10N.register(
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Afáyate",
|
||||
"Participant limit" : "Llende de participantes",
|
||||
"Sharing" : "Compartición",
|
||||
"Every participant is moderator" : "Tolos participantes son llendadores",
|
||||
"Miscellaneous" : "Miscelanea",
|
||||
"Clean layout" : "Distribución llimpia",
|
||||
"Room name" : "Nome de la sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Espublizóse",
|
||||
"Open recording" : "Abrir la grabación",
|
||||
"Copy to clipboard" : "Copiar nel cartafueyu",
|
||||
"_%n participant_::_%n participants_" : ["%n participante","%n participantes"],
|
||||
|
@ -60,8 +63,6 @@ OC.L10N.register(
|
|||
"Error" : "Error",
|
||||
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
||||
"Server error" : "Error del sirividor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Nun tienes permisu pa camudar esta opción porque la sala ta compartida contigo.",
|
||||
"Group …" : "Grupu…",
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
"Group" : "Grupu",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Nun hai nenguna coincidencia",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nome",
|
||||
"Access" : "Accesu",
|
||||
"Recordings" : "Grabaciones",
|
||||
|
@ -42,11 +43,13 @@
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Afáyate",
|
||||
"Participant limit" : "Llende de participantes",
|
||||
"Sharing" : "Compartición",
|
||||
"Every participant is moderator" : "Tolos participantes son llendadores",
|
||||
"Miscellaneous" : "Miscelanea",
|
||||
"Clean layout" : "Distribución llimpia",
|
||||
"Room name" : "Nome de la sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Espublizóse",
|
||||
"Open recording" : "Abrir la grabación",
|
||||
"Copy to clipboard" : "Copiar nel cartafueyu",
|
||||
"_%n participant_::_%n participants_" : ["%n participante","%n participantes"],
|
||||
|
@ -58,8 +61,6 @@
|
|||
"Error" : "Error",
|
||||
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
||||
"Server error" : "Error del sirividor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Nun tienes permisu pa camudar esta opción porque la sala ta compartida contigo.",
|
||||
"Group …" : "Grupu…",
|
||||
|
|
|
@ -8,10 +8,11 @@ OC.L10N.register(
|
|||
"Group" : "Qrup",
|
||||
"Name" : "Ad",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Sharing" : "Paylaşılır",
|
||||
"Create" : "Yarat",
|
||||
"Published" : "Nəşr edilmiş",
|
||||
"Delete" : "Sil",
|
||||
"Error" : "Səhv",
|
||||
"Share" : "Paylaş",
|
||||
"Loading" : "Loading",
|
||||
"Settings saved" : "Parametrlər yaddaşa verildi"
|
||||
},
|
||||
|
|
|
@ -6,10 +6,11 @@
|
|||
"Group" : "Qrup",
|
||||
"Name" : "Ad",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Sharing" : "Paylaşılır",
|
||||
"Create" : "Yarat",
|
||||
"Published" : "Nəşr edilmiş",
|
||||
"Delete" : "Sil",
|
||||
"Error" : "Səhv",
|
||||
"Share" : "Paylaş",
|
||||
"Loading" : "Loading",
|
||||
"Settings saved" : "Parametrlər yaddaşa verildi"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
|
|
@ -8,7 +8,6 @@ OC.L10N.register(
|
|||
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
||||
"Delete" : "Delete",
|
||||
"Error" : "Памылка",
|
||||
"Share" : "Падзяліцца",
|
||||
"Loading" : "Loading"
|
||||
},
|
||||
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
||||
"Delete" : "Delete",
|
||||
"Error" : "Памылка",
|
||||
"Share" : "Падзяліцца",
|
||||
"Loading" : "Loading"
|
||||
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
||||
}
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
|||
"Group" : "Група",
|
||||
"Searching" : "Търсене",
|
||||
"No matches" : "Няма съвпадения.",
|
||||
"admin" : "администратор",
|
||||
"moderator" : "модератор",
|
||||
"Name" : "Име",
|
||||
"Access" : "Достъп",
|
||||
"Max" : "Макс",
|
||||
|
@ -81,6 +83,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL адрес на стая",
|
||||
"Welcome" : "Добре дошли",
|
||||
"Participant limit" : "Лимит на участниците",
|
||||
"Sharing" : "Споделяне",
|
||||
"Every participant is moderator" : "Всеки участник е модератор",
|
||||
"Moderator access via URL" : "Достъп на модератор чрез URL",
|
||||
"Miscellaneous" : "Разни",
|
||||
|
@ -92,6 +95,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Присъединяване към срещата, заглушено",
|
||||
"Room name" : "Име на стаята",
|
||||
"Create" : "Създай",
|
||||
"Published" : "Публикувано",
|
||||
"Open recording" : "Отворено записване",
|
||||
"Copy to clipboard" : "Копиране в клипборда",
|
||||
"Save as file" : "Запиши като файл",
|
||||
|
@ -110,9 +114,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Изтриване?",
|
||||
"Could not delete record" : "Записът не можа да се изтрие",
|
||||
"Server error" : "Сървърна грешка",
|
||||
"moderator" : "модератор",
|
||||
"admin" : "администратор",
|
||||
"Share" : "Сподели",
|
||||
"Start" : "Начало",
|
||||
"Loading" : "Зареждане",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.",
|
||||
"Max. rooms" : "Макс. стаи",
|
||||
|
|
|
@ -54,6 +54,8 @@
|
|||
"Group" : "Група",
|
||||
"Searching" : "Търсене",
|
||||
"No matches" : "Няма съвпадения.",
|
||||
"admin" : "администратор",
|
||||
"moderator" : "модератор",
|
||||
"Name" : "Име",
|
||||
"Access" : "Достъп",
|
||||
"Max" : "Макс",
|
||||
|
@ -79,6 +81,7 @@
|
|||
"Room URL" : "URL адрес на стая",
|
||||
"Welcome" : "Добре дошли",
|
||||
"Participant limit" : "Лимит на участниците",
|
||||
"Sharing" : "Споделяне",
|
||||
"Every participant is moderator" : "Всеки участник е модератор",
|
||||
"Moderator access via URL" : "Достъп на модератор чрез URL",
|
||||
"Miscellaneous" : "Разни",
|
||||
|
@ -90,6 +93,7 @@
|
|||
"Join meeting muted" : "Присъединяване към срещата, заглушено",
|
||||
"Room name" : "Име на стаята",
|
||||
"Create" : "Създай",
|
||||
"Published" : "Публикувано",
|
||||
"Open recording" : "Отворено записване",
|
||||
"Copy to clipboard" : "Копиране в клипборда",
|
||||
"Save as file" : "Запиши като файл",
|
||||
|
@ -108,9 +112,7 @@
|
|||
"Delete?" : "Изтриване?",
|
||||
"Could not delete record" : "Записът не можа да се изтрие",
|
||||
"Server error" : "Сървърна грешка",
|
||||
"moderator" : "модератор",
|
||||
"admin" : "администратор",
|
||||
"Share" : "Сподели",
|
||||
"Start" : "Начало",
|
||||
"Loading" : "Зареждане",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.",
|
||||
"Max. rooms" : "Макс. стаи",
|
||||
|
|
|
@ -7,10 +7,10 @@ OC.L10N.register(
|
|||
"Group" : "গোষ্ঠীসমূহ",
|
||||
"Name" : "নাম",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Sharing" : "ভাগাভাগিরত",
|
||||
"Create" : "তৈরী কর",
|
||||
"Delete" : "মুছে",
|
||||
"Error" : "সমস্যা",
|
||||
"Share" : "ভাগাভাগি কর",
|
||||
"Loading" : "Loading"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
"Group" : "গোষ্ঠীসমূহ",
|
||||
"Name" : "নাম",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Sharing" : "ভাগাভাগিরত",
|
||||
"Create" : "তৈরী কর",
|
||||
"Delete" : "মুছে",
|
||||
"Error" : "সমস্যা",
|
||||
"Share" : "ভাগাভাগি কর",
|
||||
"Loading" : "Loading"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
|
@ -11,14 +11,14 @@ OC.L10N.register(
|
|||
"Hello %s" : "Degemer mat %s",
|
||||
"Group" : "Stollad",
|
||||
"No matches" : "Kejadenn ebet",
|
||||
"admin" : "merour",
|
||||
"moderator" : "habaskaer",
|
||||
"Name" : "Anv",
|
||||
"Edit" : "Cheñch",
|
||||
"Sharing" : "Rannan",
|
||||
"Create" : "Krouiñ",
|
||||
"Delete" : "Dilemel",
|
||||
"Error" : "Fazi",
|
||||
"moderator" : "habaskaer",
|
||||
"admin" : "merour",
|
||||
"Share" : "Rannan",
|
||||
"Loading" : "Kargañ",
|
||||
"Settings saved" : "Stummoù enrollet"
|
||||
},
|
||||
|
|
|
@ -9,14 +9,14 @@
|
|||
"Hello %s" : "Degemer mat %s",
|
||||
"Group" : "Stollad",
|
||||
"No matches" : "Kejadenn ebet",
|
||||
"admin" : "merour",
|
||||
"moderator" : "habaskaer",
|
||||
"Name" : "Anv",
|
||||
"Edit" : "Cheñch",
|
||||
"Sharing" : "Rannan",
|
||||
"Create" : "Krouiñ",
|
||||
"Delete" : "Dilemel",
|
||||
"Error" : "Fazi",
|
||||
"moderator" : "habaskaer",
|
||||
"admin" : "merour",
|
||||
"Share" : "Rannan",
|
||||
"Loading" : "Kargañ",
|
||||
"Settings saved" : "Stummoù enrollet"
|
||||
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
|
||||
|
|
|
@ -7,10 +7,10 @@ OC.L10N.register(
|
|||
"Group" : "Grupa",
|
||||
"Name" : "Ime",
|
||||
"Edit" : "Izmjeni",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Create" : "Ustvari",
|
||||
"Delete" : "Obriši",
|
||||
"Error" : "Greška",
|
||||
"Share" : "Podjeli",
|
||||
"Loading" : "Loading"
|
||||
},
|
||||
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
"Group" : "Grupa",
|
||||
"Name" : "Ime",
|
||||
"Edit" : "Izmjeni",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Create" : "Ustvari",
|
||||
"Delete" : "Obriši",
|
||||
"Error" : "Greška",
|
||||
"Share" : "Podjeli",
|
||||
"Loading" : "Loading"
|
||||
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
|
||||
}
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
|||
"Group" : "Grup",
|
||||
"Searching" : "Cerca",
|
||||
"No matches" : "Cap coincidència",
|
||||
"admin" : "administrador",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nom",
|
||||
"Access" : "Accés",
|
||||
"Max" : "Màx",
|
||||
|
@ -81,6 +83,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Benvingut",
|
||||
"Participant limit" : "Límit de participants",
|
||||
"Sharing" : "Ús compartit",
|
||||
"Every participant is moderator" : "Cada participant és moderador",
|
||||
"Moderator access via URL" : "Accés moderador mitjançant URL",
|
||||
"Miscellaneous" : "Miscel·lània",
|
||||
|
@ -92,6 +95,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Uneix-te a la reunió en silenci",
|
||||
"Room name" : "Nom de la sala",
|
||||
"Create" : "Crea",
|
||||
"Published" : "Publicat",
|
||||
"Open recording" : "Obre enregistrament",
|
||||
"Copy to clipboard" : "Copia-ho al porta-papers",
|
||||
"Save as file" : "Desa com a fitxer",
|
||||
|
@ -110,9 +114,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Suprimeix?",
|
||||
"Could not delete record" : "No s' ha pogut suprimir el registre",
|
||||
"Server error" : "Error del servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "administrador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inici",
|
||||
"Loading" : "Carregant",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "No podeu canviar aquesta opció perquè aquesta sala es comparteix amb vostè.",
|
||||
"Max. rooms" : "Màx. sales",
|
||||
|
|
|
@ -54,6 +54,8 @@
|
|||
"Group" : "Grup",
|
||||
"Searching" : "Cerca",
|
||||
"No matches" : "Cap coincidència",
|
||||
"admin" : "administrador",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nom",
|
||||
"Access" : "Accés",
|
||||
"Max" : "Màx",
|
||||
|
@ -79,6 +81,7 @@
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Benvingut",
|
||||
"Participant limit" : "Límit de participants",
|
||||
"Sharing" : "Ús compartit",
|
||||
"Every participant is moderator" : "Cada participant és moderador",
|
||||
"Moderator access via URL" : "Accés moderador mitjançant URL",
|
||||
"Miscellaneous" : "Miscel·lània",
|
||||
|
@ -90,6 +93,7 @@
|
|||
"Join meeting muted" : "Uneix-te a la reunió en silenci",
|
||||
"Room name" : "Nom de la sala",
|
||||
"Create" : "Crea",
|
||||
"Published" : "Publicat",
|
||||
"Open recording" : "Obre enregistrament",
|
||||
"Copy to clipboard" : "Copia-ho al porta-papers",
|
||||
"Save as file" : "Desa com a fitxer",
|
||||
|
@ -108,9 +112,7 @@
|
|||
"Delete?" : "Suprimeix?",
|
||||
"Could not delete record" : "No s' ha pogut suprimir el registre",
|
||||
"Server error" : "Error del servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "administrador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inici",
|
||||
"Loading" : "Carregant",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "No podeu canviar aquesta opció perquè aquesta sala es comparteix amb vostè.",
|
||||
"Max. rooms" : "Màx. sales",
|
||||
|
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
|||
"Group" : "Skupina",
|
||||
"Searching" : "Hledá se",
|
||||
"No matches" : "Žádné shody",
|
||||
"admin" : "správce",
|
||||
"moderator" : "moderátor",
|
||||
"Name" : "Název",
|
||||
"Access" : "Přístup",
|
||||
"Max" : "Nejvýše",
|
||||
|
@ -81,6 +83,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL místnosti",
|
||||
"Welcome" : "Vítejte",
|
||||
"Participant limit" : "Limit počtu účastníků",
|
||||
"Sharing" : "Sdílení",
|
||||
"Every participant is moderator" : "Každý z účastníků má práva moderátora",
|
||||
"Moderator access via URL" : "Moderátorský přístup přez URL",
|
||||
"Miscellaneous" : "Různé",
|
||||
|
@ -92,6 +95,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Připojit ke schůzce ztlumené",
|
||||
"Room name" : "Název místnosti",
|
||||
"Create" : "Vytvořit",
|
||||
"Published" : "Zveřejněno",
|
||||
"Open recording" : "Zahájit zaznamenávání",
|
||||
"Copy to clipboard" : "Zkopírovat do schránky",
|
||||
"Save as file" : "Uložit jako soubor",
|
||||
|
@ -110,9 +114,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Smazat?",
|
||||
"Could not delete record" : "Záznam se nedaří smazat",
|
||||
"Server error" : "Chyba serveru",
|
||||
"moderator" : "moderátor",
|
||||
"admin" : "správce",
|
||||
"Share" : "Sdílet",
|
||||
"Start" : "Spustit",
|
||||
"Loading" : "Načítání",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Nemáte oprávnění měnit tuto volbu, protože tato místnost je vám jen nasdílena.",
|
||||
"Max. rooms" : "Nejvýše místností",
|
||||
|
|
|
@ -54,6 +54,8 @@
|
|||
"Group" : "Skupina",
|
||||
"Searching" : "Hledá se",
|
||||
"No matches" : "Žádné shody",
|
||||
"admin" : "správce",
|
||||
"moderator" : "moderátor",
|
||||
"Name" : "Název",
|
||||
"Access" : "Přístup",
|
||||
"Max" : "Nejvýše",
|
||||
|
@ -79,6 +81,7 @@
|
|||
"Room URL" : "URL místnosti",
|
||||
"Welcome" : "Vítejte",
|
||||
"Participant limit" : "Limit počtu účastníků",
|
||||
"Sharing" : "Sdílení",
|
||||
"Every participant is moderator" : "Každý z účastníků má práva moderátora",
|
||||
"Moderator access via URL" : "Moderátorský přístup přez URL",
|
||||
"Miscellaneous" : "Různé",
|
||||
|
@ -90,6 +93,7 @@
|
|||
"Join meeting muted" : "Připojit ke schůzce ztlumené",
|
||||
"Room name" : "Název místnosti",
|
||||
"Create" : "Vytvořit",
|
||||
"Published" : "Zveřejněno",
|
||||
"Open recording" : "Zahájit zaznamenávání",
|
||||
"Copy to clipboard" : "Zkopírovat do schránky",
|
||||
"Save as file" : "Uložit jako soubor",
|
||||
|
@ -108,9 +112,7 @@
|
|||
"Delete?" : "Smazat?",
|
||||
"Could not delete record" : "Záznam se nedaří smazat",
|
||||
"Server error" : "Chyba serveru",
|
||||
"moderator" : "moderátor",
|
||||
"admin" : "správce",
|
||||
"Share" : "Sdílet",
|
||||
"Start" : "Spustit",
|
||||
"Loading" : "Načítání",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Nemáte oprávnění měnit tuto volbu, protože tato místnost je vám jen nasdílena.",
|
||||
"Max. rooms" : "Nejvýše místností",
|
||||
|
|
|
@ -12,7 +12,6 @@ OC.L10N.register(
|
|||
"Create" : "Creu",
|
||||
"Delete" : "Dileu",
|
||||
"Error" : "Gwall",
|
||||
"Share" : "Rhannu",
|
||||
"Loading" : "Llwytho"
|
||||
},
|
||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
"Create" : "Creu",
|
||||
"Delete" : "Dileu",
|
||||
"Error" : "Gwall",
|
||||
"Share" : "Rhannu",
|
||||
"Loading" : "Llwytho"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||
}
|
|
@ -11,21 +11,23 @@ OC.L10N.register(
|
|||
"Hello %s" : "Hej %s",
|
||||
"Group" : "Gruppe",
|
||||
"No matches" : "Ingen matches",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"Name" : "Navn",
|
||||
"Access" : "Adgang",
|
||||
"Max" : "Maks",
|
||||
"Edit" : "Rediger",
|
||||
"Welcome" : "Velkommen",
|
||||
"Sharing" : "Deling",
|
||||
"Miscellaneous" : "Diverse",
|
||||
"Room name" : "Rumnavn",
|
||||
"Create" : "Opret",
|
||||
"Published" : "Udgivet",
|
||||
"Copy to clipboard" : "Kopier til udklipsholder",
|
||||
"Delete" : "Slet",
|
||||
"Error" : "Fejl",
|
||||
"Delete?" : "Slet?",
|
||||
"Server error" : "Serverfejl",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "Del",
|
||||
"Loading" : "Indlæser",
|
||||
"Settings saved" : "Indstillinger gemt"
|
||||
},
|
||||
|
|
|
@ -9,21 +9,23 @@
|
|||
"Hello %s" : "Hej %s",
|
||||
"Group" : "Gruppe",
|
||||
"No matches" : "Ingen matches",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"Name" : "Navn",
|
||||
"Access" : "Adgang",
|
||||
"Max" : "Maks",
|
||||
"Edit" : "Rediger",
|
||||
"Welcome" : "Velkommen",
|
||||
"Sharing" : "Deling",
|
||||
"Miscellaneous" : "Diverse",
|
||||
"Room name" : "Rumnavn",
|
||||
"Create" : "Opret",
|
||||
"Published" : "Udgivet",
|
||||
"Copy to clipboard" : "Kopier til udklipsholder",
|
||||
"Delete" : "Slet",
|
||||
"Error" : "Fejl",
|
||||
"Delete?" : "Slet?",
|
||||
"Server error" : "Serverfejl",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "Del",
|
||||
"Loading" : "Indlæser",
|
||||
"Settings saved" : "Indstillinger gemt"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
|
13
l10n/de.js
13
l10n/de.js
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "Gruppe",
|
||||
"Searching" : "Suche",
|
||||
"No matches" : "Keine Übereinstimmungen",
|
||||
"admin" : "Administrator",
|
||||
"moderator" : "Moderator",
|
||||
"user" : "Benutzer",
|
||||
"Name" : "Name",
|
||||
"Access" : "Zugriff",
|
||||
"Max" : "Max",
|
||||
|
@ -69,6 +72,7 @@ OC.L10N.register(
|
|||
"This message is shown to all users in the chat area after they joined." : "Diese Nachricht wird allen Benutzern im Chat-Bereich nach ihrem Beitritt angezeigt.",
|
||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Legt eine Begrenzung der Teilnehmerzahl für diesen Raum fest. Null bedeutet, dass es keine Begrenzung gibt.",
|
||||
"If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.",
|
||||
"Explanation of the different concepts that constitute access options :<br>- Public: Anyone who has the link can join.- <br>Internal: Only Nextcloud users can join.- <br>Password: Only guests who have the password can join..- <br>Waiting room: A moderator must accept each guest before they can join.- <br>Restricted : Only selected users and groups can access this room." : "Erläuterung der verschiedenen Konzepte bezüglich der Zugriffsrechte:<br>- Öffentlich: Jeder, der den Link hat, kann beitreten. <br>- Intern: Nur Nextcloud-Benutzer können beitreten. <br>- Passwort: Nur Gäste, die das Passwort haben, können beitreten. <br>- Warteraum: Ein Moderator muss jeden Gast vor dem Beitreten bestätigen.<br> – Eingeschränkt: Nur ausgewählte Benutzer und Gruppen haben Zugriff auf diesen Raum.",
|
||||
"A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ein Moderator kann die Teilnehmer einer Besprechung verwalten, was das Ausschließen, Stummschalten oder Gewährung von Moderatorenrechten beinhaltet. Benutzer mit Moderatorenrechten können auch die Besprechung schließen oder die Standardeinstellungen ändern.",
|
||||
"If enabled, normal users have to wait until a moderator is in the room." : "Wenn aktiviert müssen Benutzer warten, bis ein Moderator den Raum betritt.",
|
||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Wenn aktiviert, wird eine Moderator-URL generiert, die den Zugriff mit Moderatorberechtigung ermöglicht.",
|
||||
|
@ -81,6 +85,7 @@ OC.L10N.register(
|
|||
"Room URL" : "Raum-URL",
|
||||
"Welcome" : "Willkommen",
|
||||
"Participant limit" : "Teilnehmerbegrenzung",
|
||||
"Sharing" : "Teilen",
|
||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||
"Miscellaneous" : "Verschiedenes",
|
||||
|
@ -92,6 +97,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Der Besprechung stumm beitreten",
|
||||
"Room name" : "Raumname",
|
||||
"Create" : "Erstellen",
|
||||
"Published" : "Veröffentlicht",
|
||||
"Open recording" : "Aufnahme öffnen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Save as file" : "Als Datei speichern",
|
||||
|
@ -110,9 +116,10 @@ OC.L10N.register(
|
|||
"Delete?" : "Löschen?",
|
||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||
"Server error" : "Serverfehler",
|
||||
"moderator" : "Moderator",
|
||||
"admin" : "Administrator",
|
||||
"Share" : "Teilen",
|
||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||
"Open room" : "Raum öffnen",
|
||||
"Start" : "Start",
|
||||
"Clone room" : "Raum duplizieren",
|
||||
"Loading" : "Lade",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Du bist nicht berechtigt, diese Einstellung zu ändern, da dieser Raum mit dir geteilt wurde.",
|
||||
"Max. rooms" : "Max. Räume",
|
||||
|
|
13
l10n/de.json
13
l10n/de.json
|
@ -54,6 +54,9 @@
|
|||
"Group" : "Gruppe",
|
||||
"Searching" : "Suche",
|
||||
"No matches" : "Keine Übereinstimmungen",
|
||||
"admin" : "Administrator",
|
||||
"moderator" : "Moderator",
|
||||
"user" : "Benutzer",
|
||||
"Name" : "Name",
|
||||
"Access" : "Zugriff",
|
||||
"Max" : "Max",
|
||||
|
@ -67,6 +70,7 @@
|
|||
"This message is shown to all users in the chat area after they joined." : "Diese Nachricht wird allen Benutzern im Chat-Bereich nach ihrem Beitritt angezeigt.",
|
||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Legt eine Begrenzung der Teilnehmerzahl für diesen Raum fest. Null bedeutet, dass es keine Begrenzung gibt.",
|
||||
"If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.",
|
||||
"Explanation of the different concepts that constitute access options :<br>- Public: Anyone who has the link can join.- <br>Internal: Only Nextcloud users can join.- <br>Password: Only guests who have the password can join..- <br>Waiting room: A moderator must accept each guest before they can join.- <br>Restricted : Only selected users and groups can access this room." : "Erläuterung der verschiedenen Konzepte bezüglich der Zugriffsrechte:<br>- Öffentlich: Jeder, der den Link hat, kann beitreten. <br>- Intern: Nur Nextcloud-Benutzer können beitreten. <br>- Passwort: Nur Gäste, die das Passwort haben, können beitreten. <br>- Warteraum: Ein Moderator muss jeden Gast vor dem Beitreten bestätigen.<br> – Eingeschränkt: Nur ausgewählte Benutzer und Gruppen haben Zugriff auf diesen Raum.",
|
||||
"A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ein Moderator kann die Teilnehmer einer Besprechung verwalten, was das Ausschließen, Stummschalten oder Gewährung von Moderatorenrechten beinhaltet. Benutzer mit Moderatorenrechten können auch die Besprechung schließen oder die Standardeinstellungen ändern.",
|
||||
"If enabled, normal users have to wait until a moderator is in the room." : "Wenn aktiviert müssen Benutzer warten, bis ein Moderator den Raum betritt.",
|
||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Wenn aktiviert, wird eine Moderator-URL generiert, die den Zugriff mit Moderatorberechtigung ermöglicht.",
|
||||
|
@ -79,6 +83,7 @@
|
|||
"Room URL" : "Raum-URL",
|
||||
"Welcome" : "Willkommen",
|
||||
"Participant limit" : "Teilnehmerbegrenzung",
|
||||
"Sharing" : "Teilen",
|
||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||
"Miscellaneous" : "Verschiedenes",
|
||||
|
@ -90,6 +95,7 @@
|
|||
"Join meeting muted" : "Der Besprechung stumm beitreten",
|
||||
"Room name" : "Raumname",
|
||||
"Create" : "Erstellen",
|
||||
"Published" : "Veröffentlicht",
|
||||
"Open recording" : "Aufnahme öffnen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Save as file" : "Als Datei speichern",
|
||||
|
@ -108,9 +114,10 @@
|
|||
"Delete?" : "Löschen?",
|
||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||
"Server error" : "Serverfehler",
|
||||
"moderator" : "Moderator",
|
||||
"admin" : "Administrator",
|
||||
"Share" : "Teilen",
|
||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||
"Open room" : "Raum öffnen",
|
||||
"Start" : "Start",
|
||||
"Clone room" : "Raum duplizieren",
|
||||
"Loading" : "Lade",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Du bist nicht berechtigt, diese Einstellung zu ändern, da dieser Raum mit dir geteilt wurde.",
|
||||
"Max. rooms" : "Max. Räume",
|
||||
|
|
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "Gruppe",
|
||||
"Searching" : "Suche",
|
||||
"No matches" : "Keine Übereinstimmungen",
|
||||
"admin" : "Administrator",
|
||||
"moderator" : "Moderator",
|
||||
"user" : "Benutzer",
|
||||
"Name" : "Name",
|
||||
"Access" : "Zugriff",
|
||||
"Max" : "Max",
|
||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
|||
"Room URL" : "Raum-URL",
|
||||
"Welcome" : "Willkommen",
|
||||
"Participant limit" : "Teilnehmerbegrenzung",
|
||||
"Sharing" : "Teilen",
|
||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||
"Miscellaneous" : "Verschiedenes",
|
||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Besprechung stumm beitreten",
|
||||
"Room name" : "Raumname",
|
||||
"Create" : "Erstellen",
|
||||
"Published" : "Veröffentlicht",
|
||||
"Open recording" : "Aufnahme öffnen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Save as file" : "Als Datei speichern",
|
||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
|||
"Delete?" : "Löschen?",
|
||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||
"Server error" : "Serverfehler",
|
||||
"moderator" : "Moderator",
|
||||
"admin" : "Administrator",
|
||||
"Share" : "Teilen",
|
||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||
"Open room" : "Raum öffnen",
|
||||
"Start" : "Start",
|
||||
"Clone room" : "Raum duplizieren",
|
||||
"Loading" : "Lade",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Sie können diese Einstellung nicht ändern, da dieser Raum mit Ihnen geteilt wurde.",
|
||||
"Max. rooms" : "Max. Räume",
|
||||
|
|
|
@ -54,6 +54,9 @@
|
|||
"Group" : "Gruppe",
|
||||
"Searching" : "Suche",
|
||||
"No matches" : "Keine Übereinstimmungen",
|
||||
"admin" : "Administrator",
|
||||
"moderator" : "Moderator",
|
||||
"user" : "Benutzer",
|
||||
"Name" : "Name",
|
||||
"Access" : "Zugriff",
|
||||
"Max" : "Max",
|
||||
|
@ -80,6 +83,7 @@
|
|||
"Room URL" : "Raum-URL",
|
||||
"Welcome" : "Willkommen",
|
||||
"Participant limit" : "Teilnehmerbegrenzung",
|
||||
"Sharing" : "Teilen",
|
||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||
"Miscellaneous" : "Verschiedenes",
|
||||
|
@ -91,6 +95,7 @@
|
|||
"Join meeting muted" : "Besprechung stumm beitreten",
|
||||
"Room name" : "Raumname",
|
||||
"Create" : "Erstellen",
|
||||
"Published" : "Veröffentlicht",
|
||||
"Open recording" : "Aufnahme öffnen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Save as file" : "Als Datei speichern",
|
||||
|
@ -109,9 +114,10 @@
|
|||
"Delete?" : "Löschen?",
|
||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||
"Server error" : "Serverfehler",
|
||||
"moderator" : "Moderator",
|
||||
"admin" : "Administrator",
|
||||
"Share" : "Teilen",
|
||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||
"Open room" : "Raum öffnen",
|
||||
"Start" : "Start",
|
||||
"Clone room" : "Raum duplizieren",
|
||||
"Loading" : "Lade",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Sie können diese Einstellung nicht ändern, da dieser Raum mit Ihnen geteilt wurde.",
|
||||
"Max. rooms" : "Max. Räume",
|
||||
|
|
|
@ -47,6 +47,8 @@ OC.L10N.register(
|
|||
"Group" : "Ομάδα",
|
||||
"Searching" : "Αναζήτηση",
|
||||
"No matches" : "Καμιά αντιστοιχία",
|
||||
"admin" : "διαχειριστής",
|
||||
"moderator" : "συντονιστής",
|
||||
"Name" : "Όνομα",
|
||||
"Access" : "Πρόσβαση",
|
||||
"Max" : "Μέγιστο",
|
||||
|
@ -68,6 +70,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL αίθουσας",
|
||||
"Welcome" : "Καλώς ήλθατε",
|
||||
"Participant limit" : "Όριο συμμετεχόντων",
|
||||
"Sharing" : "Διαμοιρασμός",
|
||||
"Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές",
|
||||
"Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου",
|
||||
"Miscellaneous" : "Διάφορα",
|
||||
|
@ -75,6 +78,7 @@ OC.L10N.register(
|
|||
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
||||
"Room name" : "Όνομα δωματίου",
|
||||
"Create" : "Δημιουργία",
|
||||
"Published" : "Δημοσιεύτηκε",
|
||||
"Open recording" : "Άνοιγμα καταγραφής",
|
||||
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
||||
"Save as file" : "Αποθήκευση ως αρχείο",
|
||||
|
@ -91,9 +95,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Διαγραφή;",
|
||||
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
||||
"Server error" : "Σφάλμα διακομιστή",
|
||||
"moderator" : "συντονιστής",
|
||||
"admin" : "διαχειριστής",
|
||||
"Share" : "Κοινή χρήση",
|
||||
"Start" : "Έναρξη",
|
||||
"Loading" : "Γίνεται φόρτωση",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.",
|
||||
"Max. rooms" : "Μέγιστα δωμάτια",
|
||||
|
|
|
@ -45,6 +45,8 @@
|
|||
"Group" : "Ομάδα",
|
||||
"Searching" : "Αναζήτηση",
|
||||
"No matches" : "Καμιά αντιστοιχία",
|
||||
"admin" : "διαχειριστής",
|
||||
"moderator" : "συντονιστής",
|
||||
"Name" : "Όνομα",
|
||||
"Access" : "Πρόσβαση",
|
||||
"Max" : "Μέγιστο",
|
||||
|
@ -66,6 +68,7 @@
|
|||
"Room URL" : "URL αίθουσας",
|
||||
"Welcome" : "Καλώς ήλθατε",
|
||||
"Participant limit" : "Όριο συμμετεχόντων",
|
||||
"Sharing" : "Διαμοιρασμός",
|
||||
"Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές",
|
||||
"Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου",
|
||||
"Miscellaneous" : "Διάφορα",
|
||||
|
@ -73,6 +76,7 @@
|
|||
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
||||
"Room name" : "Όνομα δωματίου",
|
||||
"Create" : "Δημιουργία",
|
||||
"Published" : "Δημοσιεύτηκε",
|
||||
"Open recording" : "Άνοιγμα καταγραφής",
|
||||
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
||||
"Save as file" : "Αποθήκευση ως αρχείο",
|
||||
|
@ -89,9 +93,7 @@
|
|||
"Delete?" : "Διαγραφή;",
|
||||
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
||||
"Server error" : "Σφάλμα διακομιστή",
|
||||
"moderator" : "συντονιστής",
|
||||
"admin" : "διαχειριστής",
|
||||
"Share" : "Κοινή χρήση",
|
||||
"Start" : "Έναρξη",
|
||||
"Loading" : "Γίνεται φόρτωση",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.",
|
||||
"Max. rooms" : "Μέγιστα δωμάτια",
|
||||
|
|
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "Group",
|
||||
"Searching" : "Searching",
|
||||
"No matches" : "No matches",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"user" : "user",
|
||||
"Name" : "Name",
|
||||
"Access" : "Access",
|
||||
"Max" : "Max",
|
||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
|||
"Room URL" : "Room URL",
|
||||
"Welcome" : "Welcome",
|
||||
"Participant limit" : "Participant limit",
|
||||
"Sharing" : "Sharing",
|
||||
"Every participant is moderator" : "Every participant is moderator",
|
||||
"Moderator access via URL" : "Moderator access via URL",
|
||||
"Miscellaneous" : "Miscellaneous",
|
||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Join meeting muted",
|
||||
"Room name" : "Room name",
|
||||
"Create" : "Create",
|
||||
"Published" : "Published",
|
||||
"Open recording" : "Open recording",
|
||||
"Copy to clipboard" : "Copy to clipboard",
|
||||
"Save as file" : "Save as file",
|
||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
|||
"Delete?" : "Delete?",
|
||||
"Could not delete record" : "Could not delete record",
|
||||
"Server error" : "Server error",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "Share",
|
||||
"Could not modify publishing state" : "Could not modify publishing state",
|
||||
"Open room" : "Open room",
|
||||
"Start" : "Start",
|
||||
"Clone room" : "Clone room",
|
||||
"Loading" : "Loading",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.",
|
||||
"Max. rooms" : "Max. rooms",
|
||||
|
|
|
@ -54,6 +54,9 @@
|
|||
"Group" : "Group",
|
||||
"Searching" : "Searching",
|
||||
"No matches" : "No matches",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"user" : "user",
|
||||
"Name" : "Name",
|
||||
"Access" : "Access",
|
||||
"Max" : "Max",
|
||||
|
@ -80,6 +83,7 @@
|
|||
"Room URL" : "Room URL",
|
||||
"Welcome" : "Welcome",
|
||||
"Participant limit" : "Participant limit",
|
||||
"Sharing" : "Sharing",
|
||||
"Every participant is moderator" : "Every participant is moderator",
|
||||
"Moderator access via URL" : "Moderator access via URL",
|
||||
"Miscellaneous" : "Miscellaneous",
|
||||
|
@ -91,6 +95,7 @@
|
|||
"Join meeting muted" : "Join meeting muted",
|
||||
"Room name" : "Room name",
|
||||
"Create" : "Create",
|
||||
"Published" : "Published",
|
||||
"Open recording" : "Open recording",
|
||||
"Copy to clipboard" : "Copy to clipboard",
|
||||
"Save as file" : "Save as file",
|
||||
|
@ -109,9 +114,10 @@
|
|||
"Delete?" : "Delete?",
|
||||
"Could not delete record" : "Could not delete record",
|
||||
"Server error" : "Server error",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "Share",
|
||||
"Could not modify publishing state" : "Could not modify publishing state",
|
||||
"Open room" : "Open room",
|
||||
"Start" : "Start",
|
||||
"Clone room" : "Clone room",
|
||||
"Loading" : "Loading",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.",
|
||||
"Max. rooms" : "Max. rooms",
|
||||
|
|
|
@ -12,12 +12,13 @@ OC.L10N.register(
|
|||
"Name" : "Nomo",
|
||||
"Access" : "Aliro",
|
||||
"Edit" : "Modifi",
|
||||
"Sharing" : "Kunhavigo",
|
||||
"Create" : "Krei",
|
||||
"Copy to clipboard" : "Kopii tondejen",
|
||||
"Delete" : "Forigi",
|
||||
"Error" : "Eraro",
|
||||
"Server error" : "Eraro pri servilo",
|
||||
"Share" : "Kunhavigi",
|
||||
"Start" : "Komenco",
|
||||
"Loading" : "Ŝargado",
|
||||
"Settings saved" : "Agordoj konservitaj"
|
||||
},
|
||||
|
|
|
@ -10,12 +10,13 @@
|
|||
"Name" : "Nomo",
|
||||
"Access" : "Aliro",
|
||||
"Edit" : "Modifi",
|
||||
"Sharing" : "Kunhavigo",
|
||||
"Create" : "Krei",
|
||||
"Copy to clipboard" : "Kopii tondejen",
|
||||
"Delete" : "Forigi",
|
||||
"Error" : "Eraro",
|
||||
"Server error" : "Eraro pri servilo",
|
||||
"Share" : "Kunhavigi",
|
||||
"Start" : "Komenco",
|
||||
"Loading" : "Ŝargado",
|
||||
"Settings saved" : "Agordoj konservitaj"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
|||
"Group" : "Grupo",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Sin coincidencias",
|
||||
"admin" : "administrador",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Max" : "Máx",
|
||||
|
@ -82,6 +84,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Participant limit" : "Límite de participantes",
|
||||
"Sharing" : "Compartición",
|
||||
"Every participant is moderator" : "Cada participante es un moderador",
|
||||
"Moderator access via URL" : "Acceso como moderador vía URL",
|
||||
"Miscellaneous" : "Varios",
|
||||
|
@ -93,6 +96,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Entrar a la reunión silenciado",
|
||||
"Room name" : "Nombre de la sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Open recording" : "Abrir grabación",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Save as file" : "Guardar como",
|
||||
|
@ -111,9 +115,7 @@ OC.L10N.register(
|
|||
"Delete?" : "¿Eliminar?",
|
||||
"Could not delete record" : "No se ha podido eliminar el registro",
|
||||
"Server error" : "Error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "administrador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Iniciar",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "No puedes cambiar esta opción ya que esta sala está compartida contigo.",
|
||||
"Max. rooms" : "Máximo de salas",
|
||||
|
|
|
@ -54,6 +54,8 @@
|
|||
"Group" : "Grupo",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Sin coincidencias",
|
||||
"admin" : "administrador",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Max" : "Máx",
|
||||
|
@ -80,6 +82,7 @@
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Participant limit" : "Límite de participantes",
|
||||
"Sharing" : "Compartición",
|
||||
"Every participant is moderator" : "Cada participante es un moderador",
|
||||
"Moderator access via URL" : "Acceso como moderador vía URL",
|
||||
"Miscellaneous" : "Varios",
|
||||
|
@ -91,6 +94,7 @@
|
|||
"Join meeting muted" : "Entrar a la reunión silenciado",
|
||||
"Room name" : "Nombre de la sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Open recording" : "Abrir grabación",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Save as file" : "Guardar como",
|
||||
|
@ -109,9 +113,7 @@
|
|||
"Delete?" : "¿Eliminar?",
|
||||
"Could not delete record" : "No se ha podido eliminar el registro",
|
||||
"Server error" : "Error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "administrador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Iniciar",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "No puedes cambiar esta opción ya que esta sala está compartida contigo.",
|
||||
"Max. rooms" : "Máximo de salas",
|
||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,18 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -12,12 +12,12 @@ OC.L10N.register(
|
|||
"Name" : "Nombre",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Eliminar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Configuraciones guardadas"
|
||||
},
|
||||
|
|
|
@ -10,12 +10,12 @@
|
|||
"Name" : "Nombre",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Eliminar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Configuraciones guardadas"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
|||
"Group" : "Grupo",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Sin coincidencias",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Max" : "Máx.",
|
||||
|
@ -81,6 +83,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Participant limit" : "Límite de participantes",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Every participant is moderator" : "Cada participante es moderador",
|
||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||
"Miscellaneous" : "Varios",
|
||||
|
@ -92,6 +95,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Unirse a la reunión con el sonido desactivado",
|
||||
"Room name" : "Nombre de la sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Open recording" : "Abrir grabación",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Save as file" : "Guardar como archivo",
|
||||
|
@ -110,9 +114,6 @@ OC.L10N.register(
|
|||
"Delete?" : "¿Eliminar?",
|
||||
"Could not delete record" : "No se pudo eliminar el registro",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "admin",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "No tienes permitido cambiar esta opción porque esta sala se comparte contigo.",
|
||||
"Max. rooms" : "Máx. salas",
|
||||
|
|
|
@ -54,6 +54,8 @@
|
|||
"Group" : "Grupo",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Sin coincidencias",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Max" : "Máx.",
|
||||
|
@ -79,6 +81,7 @@
|
|||
"Room URL" : "URL de la sala",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Participant limit" : "Límite de participantes",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Every participant is moderator" : "Cada participante es moderador",
|
||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||
"Miscellaneous" : "Varios",
|
||||
|
@ -90,6 +93,7 @@
|
|||
"Join meeting muted" : "Unirse a la reunión con el sonido desactivado",
|
||||
"Room name" : "Nombre de la sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Open recording" : "Abrir grabación",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Save as file" : "Guardar como archivo",
|
||||
|
@ -108,9 +112,6 @@
|
|||
"Delete?" : "¿Eliminar?",
|
||||
"Could not delete record" : "No se pudo eliminar el registro",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "admin",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "No tienes permitido cambiar esta opción porque esta sala se comparte contigo.",
|
||||
"Max. rooms" : "Máx. salas",
|
||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,18 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -9,18 +9,21 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Miscellaneous" : "Misceláneo",
|
||||
"Room name" : "Nombre del cuarto",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -7,18 +7,21 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Miscellaneous" : "Misceláneo",
|
||||
"Room name" : "Nombre del cuarto",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,18 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,18 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,18 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,18 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Start" : "Inicio",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
"Password" : "Contraseña",
|
||||
"Hello %s" : "Hola %s",
|
||||
"Group" : "Grupo",
|
||||
"moderator" : "moderador",
|
||||
"Name" : "Nombre",
|
||||
"Access" : "Acceso",
|
||||
"Edit" : "Editar",
|
||||
"Welcome" : "Bienvenido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Create" : "Crear",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Delete" : "Borrar",
|
||||
"Error" : "Error",
|
||||
"Server error" : "Se presentó un error en el servidor",
|
||||
"moderator" : "moderador",
|
||||
"Share" : "Compartir",
|
||||
"Loading" : "Cargando",
|
||||
"Settings saved" : "Se han guardado las configuraciones "
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
|
|
|
@ -10,12 +10,13 @@ OC.L10N.register(
|
|||
"Name" : "Nimi",
|
||||
"Access" : "Ligipääs",
|
||||
"Edit" : "Redigeeri",
|
||||
"Sharing" : "Jagamine",
|
||||
"Create" : "Loo",
|
||||
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
|
||||
"Delete" : "Kustuta",
|
||||
"Error" : "Viga",
|
||||
"Server error" : "Serveri tõrge",
|
||||
"Share" : "Jaga",
|
||||
"Start" : "Algus",
|
||||
"Loading" : "Laadimine",
|
||||
"Settings saved" : "Seaded salvestatud"
|
||||
},
|
||||
|
|
|
@ -8,12 +8,13 @@
|
|||
"Name" : "Nimi",
|
||||
"Access" : "Ligipääs",
|
||||
"Edit" : "Redigeeri",
|
||||
"Sharing" : "Jagamine",
|
||||
"Create" : "Loo",
|
||||
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
|
||||
"Delete" : "Kustuta",
|
||||
"Error" : "Viga",
|
||||
"Server error" : "Serveri tõrge",
|
||||
"Share" : "Jaga",
|
||||
"Start" : "Algus",
|
||||
"Loading" : "Laadimine",
|
||||
"Settings saved" : "Seaded salvestatud"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
|
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "Taldea",
|
||||
"Searching" : "BIlatzen",
|
||||
"No matches" : "Ez dago bat datorrenik",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderatzailea",
|
||||
"user" : "erabiltzailea",
|
||||
"Name" : "Izena",
|
||||
"Access" : "Sarbidea",
|
||||
"Max" : "Maximoa",
|
||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
|||
"Room URL" : "Gelaren URLa",
|
||||
"Welcome" : "Ongi etorri",
|
||||
"Participant limit" : "Partaideen muga",
|
||||
"Sharing" : "Partekatzea",
|
||||
"Every participant is moderator" : "Partaide guztiak dira moderatzaile",
|
||||
"Moderator access via URL" : "Moderatzailearen sarbidea URL bidez",
|
||||
"Miscellaneous" : "Askotarikoa",
|
||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Sartu bileran mutu",
|
||||
"Room name" : "Gelaren izena",
|
||||
"Create" : "Sortu",
|
||||
"Published" : "Argitaratuta",
|
||||
"Open recording" : "Ireki grabaketa",
|
||||
"Copy to clipboard" : "Kopiatu arbelera",
|
||||
"Save as file" : "Gorde fitxategi moduan",
|
||||
|
@ -111,9 +116,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Ezabatu?",
|
||||
"Could not delete record" : "Ezin izan da grabazioa ezabatu",
|
||||
"Server error" : "Zerbitzari akatsa",
|
||||
"moderator" : "moderatzailea",
|
||||
"admin" : "admin",
|
||||
"Share" : "Partekatu",
|
||||
"Start" : "Hasiera",
|
||||
"Loading" : "Kargatzen",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Ez duzu baimenik aukera hau aldatzeko, gela hau zurekin partekatua delako.",
|
||||
"Max. rooms" : "Gela max.",
|
||||
|
|
|
@ -54,6 +54,9 @@
|
|||
"Group" : "Taldea",
|
||||
"Searching" : "BIlatzen",
|
||||
"No matches" : "Ez dago bat datorrenik",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderatzailea",
|
||||
"user" : "erabiltzailea",
|
||||
"Name" : "Izena",
|
||||
"Access" : "Sarbidea",
|
||||
"Max" : "Maximoa",
|
||||
|
@ -80,6 +83,7 @@
|
|||
"Room URL" : "Gelaren URLa",
|
||||
"Welcome" : "Ongi etorri",
|
||||
"Participant limit" : "Partaideen muga",
|
||||
"Sharing" : "Partekatzea",
|
||||
"Every participant is moderator" : "Partaide guztiak dira moderatzaile",
|
||||
"Moderator access via URL" : "Moderatzailearen sarbidea URL bidez",
|
||||
"Miscellaneous" : "Askotarikoa",
|
||||
|
@ -91,6 +95,7 @@
|
|||
"Join meeting muted" : "Sartu bileran mutu",
|
||||
"Room name" : "Gelaren izena",
|
||||
"Create" : "Sortu",
|
||||
"Published" : "Argitaratuta",
|
||||
"Open recording" : "Ireki grabaketa",
|
||||
"Copy to clipboard" : "Kopiatu arbelera",
|
||||
"Save as file" : "Gorde fitxategi moduan",
|
||||
|
@ -109,9 +114,7 @@
|
|||
"Delete?" : "Ezabatu?",
|
||||
"Could not delete record" : "Ezin izan da grabazioa ezabatu",
|
||||
"Server error" : "Zerbitzari akatsa",
|
||||
"moderator" : "moderatzailea",
|
||||
"admin" : "admin",
|
||||
"Share" : "Partekatu",
|
||||
"Start" : "Hasiera",
|
||||
"Loading" : "Kargatzen",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Ez duzu baimenik aukera hau aldatzeko, gela hau zurekin partekatua delako.",
|
||||
"Max. rooms" : "Gela max.",
|
||||
|
|
|
@ -22,7 +22,6 @@ OC.L10N.register(
|
|||
"API URL or secret not configured. Please contact your administrator." : "API URL or secret not configured. Please contact your administrator.",
|
||||
"BigBlueButton Integration" : "BigBlueButton Integration",
|
||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud",
|
||||
"This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*",
|
||||
"Room not found" : "اتاق یافت نشد",
|
||||
"The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟",
|
||||
"Back to %s" : "Back to %s",
|
||||
|
@ -56,6 +55,8 @@ OC.L10N.register(
|
|||
"Group" : "گروه",
|
||||
"Searching" : "Searching",
|
||||
"No matches" : "No matches",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"Name" : "نام",
|
||||
"Access" : "دسترسی",
|
||||
"Max" : "Max",
|
||||
|
@ -81,6 +82,7 @@ OC.L10N.register(
|
|||
"Room URL" : "Room URL",
|
||||
"Welcome" : "خوش آمدی",
|
||||
"Participant limit" : "Participant limit",
|
||||
"Sharing" : "همرسانی",
|
||||
"Every participant is moderator" : "Every participant is moderator",
|
||||
"Moderator access via URL" : "Moderator access via URL",
|
||||
"Miscellaneous" : "متفرقه",
|
||||
|
@ -92,6 +94,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Join meeting muted",
|
||||
"Room name" : "Room name",
|
||||
"Create" : "ایجاد شده",
|
||||
"Published" : "منتشر شده",
|
||||
"Open recording" : "Open recording",
|
||||
"Copy to clipboard" : "کپی کردن به حافظه موقت",
|
||||
"Save as file" : "Save as file",
|
||||
|
@ -110,9 +113,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Delete?",
|
||||
"Could not delete record" : "Could not delete record",
|
||||
"Server error" : "خطای سرور",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "همرسانی",
|
||||
"Start" : "شروع",
|
||||
"Loading" : "در حال بار گزاری",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.",
|
||||
"Max. rooms" : "Max. rooms",
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"API URL or secret not configured. Please contact your administrator." : "API URL or secret not configured. Please contact your administrator.",
|
||||
"BigBlueButton Integration" : "BigBlueButton Integration",
|
||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud",
|
||||
"This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*",
|
||||
"Room not found" : "اتاق یافت نشد",
|
||||
"The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟",
|
||||
"Back to %s" : "Back to %s",
|
||||
|
@ -54,6 +53,8 @@
|
|||
"Group" : "گروه",
|
||||
"Searching" : "Searching",
|
||||
"No matches" : "No matches",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"Name" : "نام",
|
||||
"Access" : "دسترسی",
|
||||
"Max" : "Max",
|
||||
|
@ -79,6 +80,7 @@
|
|||
"Room URL" : "Room URL",
|
||||
"Welcome" : "خوش آمدی",
|
||||
"Participant limit" : "Participant limit",
|
||||
"Sharing" : "همرسانی",
|
||||
"Every participant is moderator" : "Every participant is moderator",
|
||||
"Moderator access via URL" : "Moderator access via URL",
|
||||
"Miscellaneous" : "متفرقه",
|
||||
|
@ -90,6 +92,7 @@
|
|||
"Join meeting muted" : "Join meeting muted",
|
||||
"Room name" : "Room name",
|
||||
"Create" : "ایجاد شده",
|
||||
"Published" : "منتشر شده",
|
||||
"Open recording" : "Open recording",
|
||||
"Copy to clipboard" : "کپی کردن به حافظه موقت",
|
||||
"Save as file" : "Save as file",
|
||||
|
@ -108,9 +111,7 @@
|
|||
"Delete?" : "Delete?",
|
||||
"Could not delete record" : "Could not delete record",
|
||||
"Server error" : "خطای سرور",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "همرسانی",
|
||||
"Start" : "شروع",
|
||||
"Loading" : "در حال بار گزاری",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.",
|
||||
"Max. rooms" : "Max. rooms",
|
||||
|
|
|
@ -41,6 +41,7 @@ OC.L10N.register(
|
|||
"Name, group …" : "Nimi, ryhmä…",
|
||||
"Group" : "Ryhmä",
|
||||
"No matches" : "Ei täsmääviä",
|
||||
"moderator" : "moderaattori",
|
||||
"Name" : "Nimi",
|
||||
"Access" : "Käyttöoikeudet",
|
||||
"Max" : "Enintään",
|
||||
|
@ -55,10 +56,12 @@ OC.L10N.register(
|
|||
"Room URL" : "Huoneen URL-osoite",
|
||||
"Welcome" : "Tervetuloa",
|
||||
"Participant limit" : "Osallistujaraja",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Miscellaneous" : "Sekalaiset",
|
||||
"Join meeting muted" : "Liity kokoukseen mykistettynä",
|
||||
"Room name" : "Huoneen nimi",
|
||||
"Create" : "Luo",
|
||||
"Published" : "Julkaistu",
|
||||
"Open recording" : "Avaa nauhoitus",
|
||||
"Copy to clipboard" : "Kopioi leikepöydälle",
|
||||
"Save as file" : "Tallenna tiedostona",
|
||||
|
@ -73,8 +76,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Poistetaanko?",
|
||||
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
||||
"Server error" : "Palvelinvirhe",
|
||||
"moderator" : "moderaattori",
|
||||
"Share" : "Jaa",
|
||||
"Start" : "Alku",
|
||||
"Loading" : "Ladataan",
|
||||
"Max. rooms" : "Huoneita enintään",
|
||||
"Max. participants" : "Osallistujia enintään",
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
"Name, group …" : "Nimi, ryhmä…",
|
||||
"Group" : "Ryhmä",
|
||||
"No matches" : "Ei täsmääviä",
|
||||
"moderator" : "moderaattori",
|
||||
"Name" : "Nimi",
|
||||
"Access" : "Käyttöoikeudet",
|
||||
"Max" : "Enintään",
|
||||
|
@ -53,10 +54,12 @@
|
|||
"Room URL" : "Huoneen URL-osoite",
|
||||
"Welcome" : "Tervetuloa",
|
||||
"Participant limit" : "Osallistujaraja",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Miscellaneous" : "Sekalaiset",
|
||||
"Join meeting muted" : "Liity kokoukseen mykistettynä",
|
||||
"Room name" : "Huoneen nimi",
|
||||
"Create" : "Luo",
|
||||
"Published" : "Julkaistu",
|
||||
"Open recording" : "Avaa nauhoitus",
|
||||
"Copy to clipboard" : "Kopioi leikepöydälle",
|
||||
"Save as file" : "Tallenna tiedostona",
|
||||
|
@ -71,8 +74,7 @@
|
|||
"Delete?" : "Poistetaanko?",
|
||||
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
||||
"Server error" : "Palvelinvirhe",
|
||||
"moderator" : "moderaattori",
|
||||
"Share" : "Jaa",
|
||||
"Start" : "Alku",
|
||||
"Loading" : "Ladataan",
|
||||
"Max. rooms" : "Huoneita enintään",
|
||||
"Max. participants" : "Osallistujia enintään",
|
||||
|
|
12
l10n/fr.js
12
l10n/fr.js
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "Groupe",
|
||||
"Searching" : "Recherche en cours",
|
||||
"No matches" : "Pas de résultats",
|
||||
"admin" : "administrateur",
|
||||
"moderator" : "modérateur",
|
||||
"user" : "utilisateur",
|
||||
"Name" : "Nom",
|
||||
"Access" : "Accès",
|
||||
"Max" : "Max",
|
||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL de la salle",
|
||||
"Welcome" : "Bienvenue",
|
||||
"Participant limit" : "Limite de participants",
|
||||
"Sharing" : "Partage",
|
||||
"Every participant is moderator" : "Tous les participants sont des modérateurs",
|
||||
"Moderator access via URL" : "Accès modérateur via URL",
|
||||
"Miscellaneous" : "Divers",
|
||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Rejoindre la réunion en sourdine",
|
||||
"Room name" : "Nom de la salle",
|
||||
"Create" : "Créer",
|
||||
"Published" : "Publié",
|
||||
"Open recording" : "Ouvrir l'enregistrement",
|
||||
"Copy to clipboard" : "Copier dans le presse-papier",
|
||||
"Save as file" : "Enregistrer dans un fichier",
|
||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
|||
"Delete?" : "Supprimer ?",
|
||||
"Could not delete record" : "Impossible de supprimer l'enregistrement",
|
||||
"Server error" : "Erreur serveur",
|
||||
"moderator" : "modérateur",
|
||||
"admin" : "administrateur",
|
||||
"Share" : "Partager",
|
||||
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
||||
"Open room" : "Ouvrir la salle",
|
||||
"Start" : "Démarrer",
|
||||
"Clone room" : "Cloner la salle",
|
||||
"Loading" : "Chargement",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Vous n'êtes pas autorisé à changer cette option car cette salle est partagée avec vous.",
|
||||
"Max. rooms" : "Nombre max. de salles",
|
||||
|
|
12
l10n/fr.json
12
l10n/fr.json
|
@ -54,6 +54,9 @@
|
|||
"Group" : "Groupe",
|
||||
"Searching" : "Recherche en cours",
|
||||
"No matches" : "Pas de résultats",
|
||||
"admin" : "administrateur",
|
||||
"moderator" : "modérateur",
|
||||
"user" : "utilisateur",
|
||||
"Name" : "Nom",
|
||||
"Access" : "Accès",
|
||||
"Max" : "Max",
|
||||
|
@ -80,6 +83,7 @@
|
|||
"Room URL" : "URL de la salle",
|
||||
"Welcome" : "Bienvenue",
|
||||
"Participant limit" : "Limite de participants",
|
||||
"Sharing" : "Partage",
|
||||
"Every participant is moderator" : "Tous les participants sont des modérateurs",
|
||||
"Moderator access via URL" : "Accès modérateur via URL",
|
||||
"Miscellaneous" : "Divers",
|
||||
|
@ -91,6 +95,7 @@
|
|||
"Join meeting muted" : "Rejoindre la réunion en sourdine",
|
||||
"Room name" : "Nom de la salle",
|
||||
"Create" : "Créer",
|
||||
"Published" : "Publié",
|
||||
"Open recording" : "Ouvrir l'enregistrement",
|
||||
"Copy to clipboard" : "Copier dans le presse-papier",
|
||||
"Save as file" : "Enregistrer dans un fichier",
|
||||
|
@ -109,9 +114,10 @@
|
|||
"Delete?" : "Supprimer ?",
|
||||
"Could not delete record" : "Impossible de supprimer l'enregistrement",
|
||||
"Server error" : "Erreur serveur",
|
||||
"moderator" : "modérateur",
|
||||
"admin" : "administrateur",
|
||||
"Share" : "Partager",
|
||||
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
||||
"Open room" : "Ouvrir la salle",
|
||||
"Start" : "Démarrer",
|
||||
"Clone room" : "Cloner la salle",
|
||||
"Loading" : "Chargement",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Vous n'êtes pas autorisé à changer cette option car cette salle est partagée avec vous.",
|
||||
"Max. rooms" : "Nombre max. de salles",
|
||||
|
|
12
l10n/ga.js
12
l10n/ga.js
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "Grúpa",
|
||||
"Searching" : "Cuardach",
|
||||
"No matches" : "Gan aon chluichí",
|
||||
"admin" : "riar",
|
||||
"moderator" : "modhnóir",
|
||||
"user" : "úsáideoir",
|
||||
"Name" : "Ainm",
|
||||
"Access" : "Rochtain",
|
||||
"Max" : "Uas",
|
||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL an tseomra",
|
||||
"Welcome" : "Fáilte",
|
||||
"Participant limit" : "Teorainn rannpháirtí",
|
||||
"Sharing" : "Roinnt",
|
||||
"Every participant is moderator" : "Is modhnóir é gach rannpháirtí",
|
||||
"Moderator access via URL" : "Rochtain mhodhnóra trí URL",
|
||||
"Miscellaneous" : "Ilghnéitheach",
|
||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Balbhaíodh cruinniú páirte",
|
||||
"Room name" : "Ainm an tseomra",
|
||||
"Create" : "Cruthaigh",
|
||||
"Published" : "Foilsithe",
|
||||
"Open recording" : "Taifeadadh oscailte",
|
||||
"Copy to clipboard" : "Cóipeáil chuig an ngearrthaisce",
|
||||
"Save as file" : "Sábháil mar chomhad",
|
||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
|||
"Delete?" : "Scrios?",
|
||||
"Could not delete record" : "Níorbh fhéidir an taifead a scriosadh",
|
||||
"Server error" : "Earráid freastalaí",
|
||||
"moderator" : "modhnóir",
|
||||
"admin" : "riar",
|
||||
"Share" : "Comhroinn",
|
||||
"Could not modify publishing state" : "Níorbh fhéidir an stát foilsitheoireachta a mhodhnú",
|
||||
"Open room" : "Seomra oscailte",
|
||||
"Start" : "Tosaigh",
|
||||
"Clone room" : "Seomra clón",
|
||||
"Loading" : "Ag lódáil",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Níl cead agat an rogha seo a athrú, toisc go bhfuil an seomra seo roinnte leat.",
|
||||
"Max. rooms" : "uas. seomraí",
|
||||
|
|
12
l10n/ga.json
12
l10n/ga.json
|
@ -54,6 +54,9 @@
|
|||
"Group" : "Grúpa",
|
||||
"Searching" : "Cuardach",
|
||||
"No matches" : "Gan aon chluichí",
|
||||
"admin" : "riar",
|
||||
"moderator" : "modhnóir",
|
||||
"user" : "úsáideoir",
|
||||
"Name" : "Ainm",
|
||||
"Access" : "Rochtain",
|
||||
"Max" : "Uas",
|
||||
|
@ -80,6 +83,7 @@
|
|||
"Room URL" : "URL an tseomra",
|
||||
"Welcome" : "Fáilte",
|
||||
"Participant limit" : "Teorainn rannpháirtí",
|
||||
"Sharing" : "Roinnt",
|
||||
"Every participant is moderator" : "Is modhnóir é gach rannpháirtí",
|
||||
"Moderator access via URL" : "Rochtain mhodhnóra trí URL",
|
||||
"Miscellaneous" : "Ilghnéitheach",
|
||||
|
@ -91,6 +95,7 @@
|
|||
"Join meeting muted" : "Balbhaíodh cruinniú páirte",
|
||||
"Room name" : "Ainm an tseomra",
|
||||
"Create" : "Cruthaigh",
|
||||
"Published" : "Foilsithe",
|
||||
"Open recording" : "Taifeadadh oscailte",
|
||||
"Copy to clipboard" : "Cóipeáil chuig an ngearrthaisce",
|
||||
"Save as file" : "Sábháil mar chomhad",
|
||||
|
@ -109,9 +114,10 @@
|
|||
"Delete?" : "Scrios?",
|
||||
"Could not delete record" : "Níorbh fhéidir an taifead a scriosadh",
|
||||
"Server error" : "Earráid freastalaí",
|
||||
"moderator" : "modhnóir",
|
||||
"admin" : "riar",
|
||||
"Share" : "Comhroinn",
|
||||
"Could not modify publishing state" : "Níorbh fhéidir an stát foilsitheoireachta a mhodhnú",
|
||||
"Open room" : "Seomra oscailte",
|
||||
"Start" : "Tosaigh",
|
||||
"Clone room" : "Seomra clón",
|
||||
"Loading" : "Ag lódáil",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Níl cead agat an rogha seo a athrú, toisc go bhfuil an seomra seo roinnte leat.",
|
||||
"Max. rooms" : "uas. seomraí",
|
||||
|
|
|
@ -6,9 +6,9 @@ OC.L10N.register(
|
|||
"Password" : "Facal-faire",
|
||||
"Name" : "Ainm",
|
||||
"Edit" : "Deasaich",
|
||||
"Sharing" : "Co-roinneadh",
|
||||
"Create" : "Cruthaich",
|
||||
"Delete" : "Sguab às",
|
||||
"Error" : "Mearachd",
|
||||
"Share" : "Co-roinn"
|
||||
"Error" : "Mearachd"
|
||||
},
|
||||
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;");
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
"Password" : "Facal-faire",
|
||||
"Name" : "Ainm",
|
||||
"Edit" : "Deasaich",
|
||||
"Sharing" : "Co-roinneadh",
|
||||
"Create" : "Cruthaich",
|
||||
"Delete" : "Sguab às",
|
||||
"Error" : "Mearachd",
|
||||
"Share" : "Co-roinn"
|
||||
"Error" : "Mearachd"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
|
||||
}
|
18
l10n/gl.js
18
l10n/gl.js
|
@ -22,7 +22,7 @@ OC.L10N.register(
|
|||
"API URL or secret not configured. Please contact your administrator." : "URL ou segredo da API sen configurar. Póñase en contacto coa administración desta instancia.",
|
||||
"BigBlueButton Integration" : "Integración de BigBlueButton",
|
||||
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton en Nextcloud",
|
||||
"This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear xuntanzas cunha instalación externa de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Configuración de salas** Crear múltiples configuracións de salas con nome, mensaxe de benvida …\n* **Compartir a ligazón de convidados** Compartir a ligazón da sala con todos os seus convidados\n* **Compartir ligazón de moderador** Convida moderadores á sala\n* **Compartir salas** Compartir salas con membros, grupos ou círculos\n* **Presentación personalizada** Inicie unha sala cunha presentación seleccionada dende o seu navegador de ficheiros\n* **Xestionar as gravacións** Ver, compartir e eliminar as gravacións das súas salas\n* **Restricións** Restrinxir a creación de salas a determinados grupos\n* ** Actividades** Obteña unha visión xeral das actividades da súa sala\n\nGuía de inicio rápido e máis información no noso [léame](https://github.com/sualko/cloud_bbb).\nGústalle esta aplicación? Devolva algo á comunidade de código aberto e consulte as nosas\n[formas de colaborar](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBúscase programador! Se ten tempo, sería incríbel que puidese axudar a mellorar esta aplicación.\n\n*Esta aplicación integra BigBlueButton e non está aprobada nin certificada por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton son marcas comerciais de BigBlueButton Inc.*",
|
||||
"This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear xuntanzas cunha instalación externa de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Configuración de salas** Crear múltiples configuracións de salas con nome, mensaxe de benvida …\n* **Compartir a ligazón de convidados** Compartir a ligazón da sala con todos os seus convidados\n* **Compartir ligazón de moderador** Convida moderadores á sala\n* **Compartir salas** Compartir salas con membros, grupos ou círculos\n* **Presentación personalizada** Inicie unha sala cunha presentación seleccionada dende o seu navegador de ficheiros\n* **Xestionar as gravacións** Ver, compartir e eliminar as gravacións das súas salas\n* **Restricións** Restrinxir a creación de salas a determinados grupos\n* ** Actividades** Obteña unha vista xeral das actividades da súa sala\n\nGuía de inicio rápido e máis información no noso [léame](https://github.com/sualko/cloud_bbb).\nGústalle esta aplicación? Devolva algo á comunidade de código aberto e consulte as nosas\n[formas de colaborar](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBúscase programador! Se ten tempo, sería incríbel que puidese axudar a mellorar esta aplicación.\n\n*Esta aplicación integra BigBlueButton e non está aprobada nin certificada por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton son marcas comerciais de BigBlueButton Inc.*",
|
||||
"Room not found" : "Non se atopou a sala",
|
||||
"The room could not be found. Maybe it was deleted?" : "Non foi posíbel atopar a sala. Quizais foi eliminada.",
|
||||
"Back to %s" : "Volver a %s",
|
||||
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
|||
"Group" : "Grupo",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Non hai coincidencias",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderador",
|
||||
"user" : "usuario",
|
||||
"Name" : "Nome",
|
||||
"Access" : "Acceso",
|
||||
"Max" : "Máx",
|
||||
|
@ -77,11 +80,12 @@ OC.L10N.register(
|
|||
"If disabled, a microphone is needed to join the conference." : "Se está desactivado, é necesario un micrófono para unirse á conferencia.",
|
||||
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Se está activado, o usuario non ten que realizar unha proba de eco nin unha vista previa da cámara web na primeira unión (dispoñíbel dende o BBB servidor 2.3).",
|
||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Se está activado, a lista de usuarios, a área de parolas e a presentación están agochadas de xeito predeterminado.",
|
||||
"If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza silenciados.",
|
||||
"If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza enmudecidos.",
|
||||
"Edit \"{room}\"" : "Editar «{room}»",
|
||||
"Room URL" : "URL da sala",
|
||||
"Welcome" : "Benvido",
|
||||
"Participant limit" : "Límite de participantes",
|
||||
"Sharing" : "Compartindo",
|
||||
"Every participant is moderator" : "Todos os participantes son moderadores",
|
||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||
"Miscellaneous" : "Miscelánea",
|
||||
|
@ -90,9 +94,10 @@ OC.L10N.register(
|
|||
"Listen only option" : "Opción de só escoitar",
|
||||
"Skip media check before usage" : "Omitir a comprobación de medios antes do uso",
|
||||
"Clean layout" : "Disposición limpa",
|
||||
"Join meeting muted" : "Unirse á xuntanza silenciado",
|
||||
"Join meeting muted" : "Unirse á xuntanza enmudecido",
|
||||
"Room name" : "Nome da sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Open recording" : "Gravación aberta",
|
||||
"Copy to clipboard" : "Copiar no portapapeis.",
|
||||
"Save as file" : "Gardar como ficheiro",
|
||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
|||
"Delete?" : "Eliminar?",
|
||||
"Could not delete record" : "Non foi posíbel eliminar a gravación",
|
||||
"Server error" : "Produciuse un erro de servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "admin",
|
||||
"Share" : "Compartir",
|
||||
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
||||
"Open room" : "Sala aberta",
|
||||
"Start" : "Iniciar",
|
||||
"Clone room" : "Clonar a sala",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Non ten permiso para cambiar esta opción, porque esta é unha sala compartida con Vde.",
|
||||
"Max. rooms" : "Máx. de salas",
|
||||
|
|
18
l10n/gl.json
18
l10n/gl.json
|
@ -20,7 +20,7 @@
|
|||
"API URL or secret not configured. Please contact your administrator." : "URL ou segredo da API sen configurar. Póñase en contacto coa administración desta instancia.",
|
||||
"BigBlueButton Integration" : "Integración de BigBlueButton",
|
||||
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton en Nextcloud",
|
||||
"This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear xuntanzas cunha instalación externa de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Configuración de salas** Crear múltiples configuracións de salas con nome, mensaxe de benvida …\n* **Compartir a ligazón de convidados** Compartir a ligazón da sala con todos os seus convidados\n* **Compartir ligazón de moderador** Convida moderadores á sala\n* **Compartir salas** Compartir salas con membros, grupos ou círculos\n* **Presentación personalizada** Inicie unha sala cunha presentación seleccionada dende o seu navegador de ficheiros\n* **Xestionar as gravacións** Ver, compartir e eliminar as gravacións das súas salas\n* **Restricións** Restrinxir a creación de salas a determinados grupos\n* ** Actividades** Obteña unha visión xeral das actividades da súa sala\n\nGuía de inicio rápido e máis información no noso [léame](https://github.com/sualko/cloud_bbb).\nGústalle esta aplicación? Devolva algo á comunidade de código aberto e consulte as nosas\n[formas de colaborar](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBúscase programador! Se ten tempo, sería incríbel que puidese axudar a mellorar esta aplicación.\n\n*Esta aplicación integra BigBlueButton e non está aprobada nin certificada por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton son marcas comerciais de BigBlueButton Inc.*",
|
||||
"This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear xuntanzas cunha instalación externa de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Configuración de salas** Crear múltiples configuracións de salas con nome, mensaxe de benvida …\n* **Compartir a ligazón de convidados** Compartir a ligazón da sala con todos os seus convidados\n* **Compartir ligazón de moderador** Convida moderadores á sala\n* **Compartir salas** Compartir salas con membros, grupos ou círculos\n* **Presentación personalizada** Inicie unha sala cunha presentación seleccionada dende o seu navegador de ficheiros\n* **Xestionar as gravacións** Ver, compartir e eliminar as gravacións das súas salas\n* **Restricións** Restrinxir a creación de salas a determinados grupos\n* ** Actividades** Obteña unha vista xeral das actividades da súa sala\n\nGuía de inicio rápido e máis información no noso [léame](https://github.com/sualko/cloud_bbb).\nGústalle esta aplicación? Devolva algo á comunidade de código aberto e consulte as nosas\n[formas de colaborar](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBúscase programador! Se ten tempo, sería incríbel que puidese axudar a mellorar esta aplicación.\n\n*Esta aplicación integra BigBlueButton e non está aprobada nin certificada por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton son marcas comerciais de BigBlueButton Inc.*",
|
||||
"Room not found" : "Non se atopou a sala",
|
||||
"The room could not be found. Maybe it was deleted?" : "Non foi posíbel atopar a sala. Quizais foi eliminada.",
|
||||
"Back to %s" : "Volver a %s",
|
||||
|
@ -54,6 +54,9 @@
|
|||
"Group" : "Grupo",
|
||||
"Searching" : "Buscando",
|
||||
"No matches" : "Non hai coincidencias",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderador",
|
||||
"user" : "usuario",
|
||||
"Name" : "Nome",
|
||||
"Access" : "Acceso",
|
||||
"Max" : "Máx",
|
||||
|
@ -75,11 +78,12 @@
|
|||
"If disabled, a microphone is needed to join the conference." : "Se está desactivado, é necesario un micrófono para unirse á conferencia.",
|
||||
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Se está activado, o usuario non ten que realizar unha proba de eco nin unha vista previa da cámara web na primeira unión (dispoñíbel dende o BBB servidor 2.3).",
|
||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Se está activado, a lista de usuarios, a área de parolas e a presentación están agochadas de xeito predeterminado.",
|
||||
"If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza silenciados.",
|
||||
"If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza enmudecidos.",
|
||||
"Edit \"{room}\"" : "Editar «{room}»",
|
||||
"Room URL" : "URL da sala",
|
||||
"Welcome" : "Benvido",
|
||||
"Participant limit" : "Límite de participantes",
|
||||
"Sharing" : "Compartindo",
|
||||
"Every participant is moderator" : "Todos os participantes son moderadores",
|
||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||
"Miscellaneous" : "Miscelánea",
|
||||
|
@ -88,9 +92,10 @@
|
|||
"Listen only option" : "Opción de só escoitar",
|
||||
"Skip media check before usage" : "Omitir a comprobación de medios antes do uso",
|
||||
"Clean layout" : "Disposición limpa",
|
||||
"Join meeting muted" : "Unirse á xuntanza silenciado",
|
||||
"Join meeting muted" : "Unirse á xuntanza enmudecido",
|
||||
"Room name" : "Nome da sala",
|
||||
"Create" : "Crear",
|
||||
"Published" : "Publicado",
|
||||
"Open recording" : "Gravación aberta",
|
||||
"Copy to clipboard" : "Copiar no portapapeis.",
|
||||
"Save as file" : "Gardar como ficheiro",
|
||||
|
@ -109,9 +114,10 @@
|
|||
"Delete?" : "Eliminar?",
|
||||
"Could not delete record" : "Non foi posíbel eliminar a gravación",
|
||||
"Server error" : "Produciuse un erro de servidor",
|
||||
"moderator" : "moderador",
|
||||
"admin" : "admin",
|
||||
"Share" : "Compartir",
|
||||
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
||||
"Open room" : "Sala aberta",
|
||||
"Start" : "Iniciar",
|
||||
"Clone room" : "Clonar a sala",
|
||||
"Loading" : "Cargando",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Non ten permiso para cambiar esta opción, porque esta é unha sala compartida con Vde.",
|
||||
"Max. rooms" : "Máx. de salas",
|
||||
|
|
|
@ -16,6 +16,7 @@ OC.L10N.register(
|
|||
"Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.",
|
||||
"Hello %s" : "שלום %s",
|
||||
"Group" : "קבוצה",
|
||||
"moderator" : "מפקח/ת",
|
||||
"Name" : "שם",
|
||||
"Access" : "גישה",
|
||||
"Max" : "מרבי",
|
||||
|
@ -23,6 +24,7 @@ OC.L10N.register(
|
|||
"Recordings" : "הקלטה",
|
||||
"Edit" : "עריכה",
|
||||
"Welcome" : "ברוך בואך",
|
||||
"Sharing" : "שיתוף",
|
||||
"Miscellaneous" : "שונות",
|
||||
"Room name" : "שם החדר",
|
||||
"Create" : "יצירה",
|
||||
|
@ -40,8 +42,7 @@ OC.L10N.register(
|
|||
"Delete?" : "למחוק?",
|
||||
"Could not delete record" : "לא ניתן למחוק רשומה",
|
||||
"Server error" : "שגיאת שרת",
|
||||
"moderator" : "מפקח/ת",
|
||||
"Share" : "שיתוף",
|
||||
"Start" : "התחלה",
|
||||
"Loading" : "בטעינה",
|
||||
"Settings saved" : "הגדרות נשמרו",
|
||||
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
"Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.",
|
||||
"Hello %s" : "שלום %s",
|
||||
"Group" : "קבוצה",
|
||||
"moderator" : "מפקח/ת",
|
||||
"Name" : "שם",
|
||||
"Access" : "גישה",
|
||||
"Max" : "מרבי",
|
||||
|
@ -21,6 +22,7 @@
|
|||
"Recordings" : "הקלטה",
|
||||
"Edit" : "עריכה",
|
||||
"Welcome" : "ברוך בואך",
|
||||
"Sharing" : "שיתוף",
|
||||
"Miscellaneous" : "שונות",
|
||||
"Room name" : "שם החדר",
|
||||
"Create" : "יצירה",
|
||||
|
@ -38,8 +40,7 @@
|
|||
"Delete?" : "למחוק?",
|
||||
"Could not delete record" : "לא ניתן למחוק רשומה",
|
||||
"Server error" : "שגיאת שרת",
|
||||
"moderator" : "מפקח/ת",
|
||||
"Share" : "שיתוף",
|
||||
"Start" : "התחלה",
|
||||
"Loading" : "בטעינה",
|
||||
"Settings saved" : "הגדרות נשמרו",
|
||||
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
||||
|
|
|
@ -52,6 +52,8 @@ OC.L10N.register(
|
|||
"Group" : "Grupa",
|
||||
"Searching" : "Traženje",
|
||||
"No matches" : "Nema podudaranja",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"Name" : "Naziv",
|
||||
"Access" : "Pristup",
|
||||
"Max" : "Maks.",
|
||||
|
@ -76,6 +78,7 @@ OC.L10N.register(
|
|||
"Room URL" : "URL sobe",
|
||||
"Welcome" : "Dobrodošli",
|
||||
"Participant limit" : "Ograničenje broja sudionika",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Every participant is moderator" : "Svaki sudionik je moderator",
|
||||
"Moderator access via URL" : "Pristup moderatora putem URL-a",
|
||||
"Miscellaneous" : "Razno",
|
||||
|
@ -104,9 +107,6 @@ OC.L10N.register(
|
|||
"Delete?" : "Izbrisati?",
|
||||
"Could not delete record" : "Zapis nije moguće izbrisati",
|
||||
"Server error" : "Greška poslužitelja",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "Dijeli",
|
||||
"Loading" : "Učitavanje",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Ne možete mijenjati ovu mogućnost jer soba nije dijeljena s vama.",
|
||||
"Max. rooms" : "Maks. soba",
|
||||
|
|
|
@ -50,6 +50,8 @@
|
|||
"Group" : "Grupa",
|
||||
"Searching" : "Traženje",
|
||||
"No matches" : "Nema podudaranja",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderator",
|
||||
"Name" : "Naziv",
|
||||
"Access" : "Pristup",
|
||||
"Max" : "Maks.",
|
||||
|
@ -74,6 +76,7 @@
|
|||
"Room URL" : "URL sobe",
|
||||
"Welcome" : "Dobrodošli",
|
||||
"Participant limit" : "Ograničenje broja sudionika",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Every participant is moderator" : "Svaki sudionik je moderator",
|
||||
"Moderator access via URL" : "Pristup moderatora putem URL-a",
|
||||
"Miscellaneous" : "Razno",
|
||||
|
@ -102,9 +105,6 @@
|
|||
"Delete?" : "Izbrisati?",
|
||||
"Could not delete record" : "Zapis nije moguće izbrisati",
|
||||
"Server error" : "Greška poslužitelja",
|
||||
"moderator" : "moderator",
|
||||
"admin" : "admin",
|
||||
"Share" : "Dijeli",
|
||||
"Loading" : "Učitavanje",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Ne možete mijenjati ovu mogućnost jer soba nije dijeljena s vama.",
|
||||
"Max. rooms" : "Maks. soba",
|
||||
|
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
|||
"Group" : "Csoport",
|
||||
"Searching" : "Keresés",
|
||||
"No matches" : "Nincs egyezés",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderátor",
|
||||
"Name" : "Név",
|
||||
"Access" : "Hozzáférés",
|
||||
"Max" : "Maximum",
|
||||
|
@ -82,6 +84,7 @@ OC.L10N.register(
|
|||
"Room URL" : "Szoba webcíme",
|
||||
"Welcome" : "Üdvözöljük",
|
||||
"Participant limit" : "Résztvevők korlátja",
|
||||
"Sharing" : "Megosztás",
|
||||
"Every participant is moderator" : "Minden résztvevő moderátor",
|
||||
"Moderator access via URL" : "Moderátori elérés webcímen keresztül",
|
||||
"Miscellaneous" : "Vegyes",
|
||||
|
@ -93,6 +96,7 @@ OC.L10N.register(
|
|||
"Join meeting muted" : "Csatlakozás némítva",
|
||||
"Room name" : "Szoba neve",
|
||||
"Create" : "Létrehozás",
|
||||
"Published" : "Közzétett",
|
||||
"Open recording" : "Felvétel megnyitása",
|
||||
"Copy to clipboard" : "Másolás a vágólapra",
|
||||
"Save as file" : "Mentés fájlba",
|
||||
|
@ -111,9 +115,7 @@ OC.L10N.register(
|
|||
"Delete?" : "Törli?",
|
||||
"Could not delete record" : "A felvétel törlése sikertelen",
|
||||
"Server error" : "Kiszolgálóhiba",
|
||||
"moderator" : "moderátor",
|
||||
"admin" : "admin",
|
||||
"Share" : "Megosztás",
|
||||
"Start" : "Kezdet",
|
||||
"Loading" : "Betöltés",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Nem módosíthatja ezt a beállítást, mert a szobát megosztják Önnel.",
|
||||
"Max. rooms" : "Szobák legnagyobb száma",
|
||||
|
|
|
@ -54,6 +54,8 @@
|
|||
"Group" : "Csoport",
|
||||
"Searching" : "Keresés",
|
||||
"No matches" : "Nincs egyezés",
|
||||
"admin" : "admin",
|
||||
"moderator" : "moderátor",
|
||||
"Name" : "Név",
|
||||
"Access" : "Hozzáférés",
|
||||
"Max" : "Maximum",
|
||||
|
@ -80,6 +82,7 @@
|
|||
"Room URL" : "Szoba webcíme",
|
||||
"Welcome" : "Üdvözöljük",
|
||||
"Participant limit" : "Résztvevők korlátja",
|
||||
"Sharing" : "Megosztás",
|
||||
"Every participant is moderator" : "Minden résztvevő moderátor",
|
||||
"Moderator access via URL" : "Moderátori elérés webcímen keresztül",
|
||||
"Miscellaneous" : "Vegyes",
|
||||
|
@ -91,6 +94,7 @@
|
|||
"Join meeting muted" : "Csatlakozás némítva",
|
||||
"Room name" : "Szoba neve",
|
||||
"Create" : "Létrehozás",
|
||||
"Published" : "Közzétett",
|
||||
"Open recording" : "Felvétel megnyitása",
|
||||
"Copy to clipboard" : "Másolás a vágólapra",
|
||||
"Save as file" : "Mentés fájlba",
|
||||
|
@ -109,9 +113,7 @@
|
|||
"Delete?" : "Törli?",
|
||||
"Could not delete record" : "A felvétel törlése sikertelen",
|
||||
"Server error" : "Kiszolgálóhiba",
|
||||
"moderator" : "moderátor",
|
||||
"admin" : "admin",
|
||||
"Share" : "Megosztás",
|
||||
"Start" : "Kezdet",
|
||||
"Loading" : "Betöltés",
|
||||
"You are not allowed to change this option, because this room is shared with you." : "Nem módosíthatja ezt a beállítást, mert a szobát megosztják Önnel.",
|
||||
"Max. rooms" : "Szobák legnagyobb száma",
|
||||
|
|
|
@ -10,7 +10,6 @@ OC.L10N.register(
|
|||
"Create" : "Ստեղծել",
|
||||
"Delete" : "հեռացնել",
|
||||
"Error" : "Սխալ",
|
||||
"Share" : "Կիսվել",
|
||||
"Loading" : "Loading"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue