mirror of https://github.com/sualko/cloud_bbb
Compare commits
71 Commits
331ef4f575
...
7946e90e64
Author | SHA1 | Date |
---|---|---|
|
7946e90e64 | |
|
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 | |
|
c2298fd3af | |
|
f68b2cca93 | |
|
57eb2b519c | |
|
d6d736936e | |
|
ba06e7738b | |
|
dd48d55419 | |
|
ac2626bc2c | |
|
9fed698723 | |
|
fbf33378aa | |
|
e846404208 | |
|
081d2b9150 | |
|
9538c35e79 | |
|
0219cf5df0 |
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]
|
## [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)
|
## 2.6.0 (2024-04-28)
|
||||||
### Added
|
### Added
|
||||||
- add Search Provider
|
- 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.*
|
*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*
|
||||||
]]></description>
|
]]></description>
|
||||||
<version>2.6.0</version>
|
<version>2.7.1</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author mail="klaus@jsxc.org">Klaus Herberth</author>
|
<author mail="klaus@jsxc.org">Klaus Herberth</author>
|
||||||
<namespace>BigBlueButton</namespace>
|
<namespace>BigBlueButton</namespace>
|
||||||
|
|
|
@ -14,6 +14,7 @@ return [
|
||||||
['name' => 'server#check', 'url' => '/server/check', 'verb' => 'POST'],
|
['name' => 'server#check', 'url' => '/server/check', 'verb' => 'POST'],
|
||||||
['name' => 'server#version', 'url' => '/server/version', 'verb' => 'GET'],
|
['name' => 'server#version', 'url' => '/server/version', 'verb' => 'GET'],
|
||||||
['name' => 'server#delete_record', 'url' => '/server/record/{recordId}', 'verb' => 'DELETE'],
|
['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' => 'join#index', 'url' => '/b/{token}/{moderatorToken}', 'verb' => 'GET', 'defaults' => ['moderatorToken' => '']],
|
||||||
['name' => 'restriction#user', 'url' => '/restrictions/user', 'verb' => 'GET'],
|
['name' => 'restriction#user', 'url' => '/restrictions/user', 'verb' => 'GET'],
|
||||||
['name' => 'hook#meetingEnded', 'url' => '/hook/ended/{token}/{mac}', 'verb' => 'GET'],
|
['name' => 'hook#meetingEnded', 'url' => '/hook/ended/{token}/{mac}', 'verb' => 'GET'],
|
||||||
|
|
|
@ -15,7 +15,7 @@ OC.L10N.register(
|
||||||
"Delete" : "Skrap",
|
"Delete" : "Skrap",
|
||||||
"Error" : "Fout",
|
"Error" : "Fout",
|
||||||
"Server error" : "Bedienerfout",
|
"Server error" : "Bedienerfout",
|
||||||
"Share" : "Deel",
|
"Start" : "Begin",
|
||||||
"Loading" : "Laai tans..",
|
"Loading" : "Laai tans..",
|
||||||
"Settings saved" : "Instellings gestoor"
|
"Settings saved" : "Instellings gestoor"
|
||||||
},
|
},
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"Delete" : "Skrap",
|
"Delete" : "Skrap",
|
||||||
"Error" : "Fout",
|
"Error" : "Fout",
|
||||||
"Server error" : "Bedienerfout",
|
"Server error" : "Bedienerfout",
|
||||||
"Share" : "Deel",
|
"Start" : "Begin",
|
||||||
"Loading" : "Laai tans..",
|
"Loading" : "Laai tans..",
|
||||||
"Settings saved" : "Instellings gestoor"
|
"Settings saved" : "Instellings gestoor"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"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);"
|
|
||||||
}
|
|
14
l10n/ar.js
14
l10n/ar.js
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
||||||
"Group" : "المجموعة",
|
"Group" : "المجموعة",
|
||||||
"Searching" : "بحث",
|
"Searching" : "بحث",
|
||||||
"No matches" : "لا يوجد تطابق",
|
"No matches" : "لا يوجد تطابق",
|
||||||
|
"admin" : "مشرف",
|
||||||
|
"moderator" : "مشرف",
|
||||||
|
"user" : "مستخدِم",
|
||||||
"Name" : "الاسم",
|
"Name" : "الاسم",
|
||||||
"Access" : "النفاذ",
|
"Access" : "النفاذ",
|
||||||
"Max" : "أقصى",
|
"Max" : "أقصى",
|
||||||
|
@ -69,7 +72,7 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "هذه الرسالة تعرض على كل المستخدمين في مساحة الدردشة بعد الانضمام.",
|
"This message is shown to all users in the chat area after they joined." : "هذه الرسالة تعرض على كل المستخدمين في مساحة الدردشة بعد الانضمام.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "عيّن حدّاً أقصى لعدد المشاركين في الغرفة. صفر تعني أنه لا يوجد حد.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "عيّن حدّاً أقصى لعدد المشاركين في الغرفة. صفر تعني أنه لا يوجد حد.",
|
||||||
"If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المنسق moderator يستطيع تشغيل التسجيل.",
|
"If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المنسق moderator يستطيع تشغيل التسجيل.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "عام: كل شخص يعرف الرابط يمكنه الانضمام. \nكلمة المرور: يجب على الضيوف تقديم كلمة مرور. \nغرفة الانتظار: يجب على الوسيط قبول كل ضيف قبل أن يتمكنوا من الانضمام. \nداخلي: يمكن فقط لمستخدمي نكست كلاود الانضمام.",
|
"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." : "شرح المفاهيم الأساسية التي تشكل خيارات الوصول :<br>- عمومي: أي شخص لديه الرابط يمكنه الانضمام.- <br>داخلي: مستخدمو نكست كلاود فقط يمكنهم الانضمام.- <br>كلمة مرور: فقط الأشخاص الذين يعرفون كلمة المرور يمكنهم الانضمام.- <br>غرفة انتظار: يجب أن يقوم المنسق بقبول كل ضيف قبل أن يستطيع الانضمام.-<br> مُقيّد: فقط الأشخاص و المجموعات المحددة يمكنهم الوصول إلى هذه الغرفة.",
|
||||||
"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." : "يمكن للمنسّق إدارة جميع المشاركين في الاجتماع بما في ذلك الطرد أو كتم الصوت أو اختيار مقدم العرض. يمكن للمستخدمين الذين يلعبون دور المشرف أيضًا إغلاق اجتماع أو تغيير الإعدادات الافتراضية.",
|
"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." : "يمكن للمنسّق إدارة جميع المشاركين في الاجتماع بما في ذلك الطرد أو كتم الصوت أو اختيار مقدم العرض. يمكن للمستخدمين الذين يلعبون دور المشرف أيضًا إغلاق اجتماع أو تغيير الإعدادات الافتراضية.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "إذا تمّ التمكين، فيجب على المستخدمين العاديين الانتظار حتى يدخل منسق إلى الغرفة.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "إذا تمّ التمكين، فيجب على المستخدمين العاديين الانتظار حتى يدخل منسق إلى الغرفة.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "إذا تمّ التمكين، سيتم توليد رابط URL منسّق يُمكّن من الدخول بصلاحيات منسّق.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "إذا تمّ التمكين، سيتم توليد رابط URL منسّق يُمكّن من الدخول بصلاحيات منسّق.",
|
||||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "عنوان URL الغرفة",
|
"Room URL" : "عنوان URL الغرفة",
|
||||||
"Welcome" : "مرحباً",
|
"Welcome" : "مرحباً",
|
||||||
"Participant limit" : "الحد الأقصى للمشاركين",
|
"Participant limit" : "الحد الأقصى للمشاركين",
|
||||||
|
"Sharing" : "المشاركة",
|
||||||
"Every participant is moderator" : "كل مشارك هو منسق",
|
"Every participant is moderator" : "كل مشارك هو منسق",
|
||||||
"Moderator access via URL" : "وصول المنسق عن طريق العنوان URL",
|
"Moderator access via URL" : "وصول المنسق عن طريق العنوان URL",
|
||||||
"Miscellaneous" : "متنوع",
|
"Miscellaneous" : "متنوع",
|
||||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "أدخُل الاجتماع بدون صوت",
|
"Join meeting muted" : "أدخُل الاجتماع بدون صوت",
|
||||||
"Room name" : "اسم الغرفة",
|
"Room name" : "اسم الغرفة",
|
||||||
"Create" : "إنشاء",
|
"Create" : "إنشاء",
|
||||||
|
"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" : "مشرف",
|
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
||||||
"admin" : "مشرف",
|
"Open room" : "فتح غرفة",
|
||||||
"Share" : "شارك",
|
"Start" : "ابدأ",
|
||||||
|
"Clone room" : "استنساخ غرفة",
|
||||||
"Loading" : "Loading",
|
"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" : "أقصى عدد من الغرف",
|
||||||
|
|
14
l10n/ar.json
14
l10n/ar.json
|
@ -54,6 +54,9 @@
|
||||||
"Group" : "المجموعة",
|
"Group" : "المجموعة",
|
||||||
"Searching" : "بحث",
|
"Searching" : "بحث",
|
||||||
"No matches" : "لا يوجد تطابق",
|
"No matches" : "لا يوجد تطابق",
|
||||||
|
"admin" : "مشرف",
|
||||||
|
"moderator" : "مشرف",
|
||||||
|
"user" : "مستخدِم",
|
||||||
"Name" : "الاسم",
|
"Name" : "الاسم",
|
||||||
"Access" : "النفاذ",
|
"Access" : "النفاذ",
|
||||||
"Max" : "أقصى",
|
"Max" : "أقصى",
|
||||||
|
@ -67,7 +70,7 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "هذه الرسالة تعرض على كل المستخدمين في مساحة الدردشة بعد الانضمام.",
|
"This message is shown to all users in the chat area after they joined." : "هذه الرسالة تعرض على كل المستخدمين في مساحة الدردشة بعد الانضمام.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "عيّن حدّاً أقصى لعدد المشاركين في الغرفة. صفر تعني أنه لا يوجد حد.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "عيّن حدّاً أقصى لعدد المشاركين في الغرفة. صفر تعني أنه لا يوجد حد.",
|
||||||
"If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المنسق moderator يستطيع تشغيل التسجيل.",
|
"If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المنسق moderator يستطيع تشغيل التسجيل.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "عام: كل شخص يعرف الرابط يمكنه الانضمام. \nكلمة المرور: يجب على الضيوف تقديم كلمة مرور. \nغرفة الانتظار: يجب على الوسيط قبول كل ضيف قبل أن يتمكنوا من الانضمام. \nداخلي: يمكن فقط لمستخدمي نكست كلاود الانضمام.",
|
"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." : "شرح المفاهيم الأساسية التي تشكل خيارات الوصول :<br>- عمومي: أي شخص لديه الرابط يمكنه الانضمام.- <br>داخلي: مستخدمو نكست كلاود فقط يمكنهم الانضمام.- <br>كلمة مرور: فقط الأشخاص الذين يعرفون كلمة المرور يمكنهم الانضمام.- <br>غرفة انتظار: يجب أن يقوم المنسق بقبول كل ضيف قبل أن يستطيع الانضمام.-<br> مُقيّد: فقط الأشخاص و المجموعات المحددة يمكنهم الوصول إلى هذه الغرفة.",
|
||||||
"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." : "يمكن للمنسّق إدارة جميع المشاركين في الاجتماع بما في ذلك الطرد أو كتم الصوت أو اختيار مقدم العرض. يمكن للمستخدمين الذين يلعبون دور المشرف أيضًا إغلاق اجتماع أو تغيير الإعدادات الافتراضية.",
|
"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." : "يمكن للمنسّق إدارة جميع المشاركين في الاجتماع بما في ذلك الطرد أو كتم الصوت أو اختيار مقدم العرض. يمكن للمستخدمين الذين يلعبون دور المشرف أيضًا إغلاق اجتماع أو تغيير الإعدادات الافتراضية.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "إذا تمّ التمكين، فيجب على المستخدمين العاديين الانتظار حتى يدخل منسق إلى الغرفة.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "إذا تمّ التمكين، فيجب على المستخدمين العاديين الانتظار حتى يدخل منسق إلى الغرفة.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "إذا تمّ التمكين، سيتم توليد رابط URL منسّق يُمكّن من الدخول بصلاحيات منسّق.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "إذا تمّ التمكين، سيتم توليد رابط URL منسّق يُمكّن من الدخول بصلاحيات منسّق.",
|
||||||
|
@ -80,6 +83,7 @@
|
||||||
"Room URL" : "عنوان URL الغرفة",
|
"Room URL" : "عنوان URL الغرفة",
|
||||||
"Welcome" : "مرحباً",
|
"Welcome" : "مرحباً",
|
||||||
"Participant limit" : "الحد الأقصى للمشاركين",
|
"Participant limit" : "الحد الأقصى للمشاركين",
|
||||||
|
"Sharing" : "المشاركة",
|
||||||
"Every participant is moderator" : "كل مشارك هو منسق",
|
"Every participant is moderator" : "كل مشارك هو منسق",
|
||||||
"Moderator access via URL" : "وصول المنسق عن طريق العنوان URL",
|
"Moderator access via URL" : "وصول المنسق عن طريق العنوان URL",
|
||||||
"Miscellaneous" : "متنوع",
|
"Miscellaneous" : "متنوع",
|
||||||
|
@ -91,6 +95,7 @@
|
||||||
"Join meeting muted" : "أدخُل الاجتماع بدون صوت",
|
"Join meeting muted" : "أدخُل الاجتماع بدون صوت",
|
||||||
"Room name" : "اسم الغرفة",
|
"Room name" : "اسم الغرفة",
|
||||||
"Create" : "إنشاء",
|
"Create" : "إنشاء",
|
||||||
|
"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" : "مشرف",
|
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
||||||
"admin" : "مشرف",
|
"Open room" : "فتح غرفة",
|
||||||
"Share" : "شارك",
|
"Start" : "ابدأ",
|
||||||
|
"Clone room" : "استنساخ غرفة",
|
||||||
"Loading" : "Loading",
|
"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" : "أقصى عدد من الغرف",
|
||||||
|
|
60
l10n/ast.js
60
l10n/ast.js
|
@ -1,21 +1,77 @@
|
||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
|
"You created the room %s." : "Creesti la sala «%s».",
|
||||||
|
"You deleted the room %s." : "Desaniciesti la sala «%s».",
|
||||||
|
"{user} deleted the room %s." : "{user} desanició la sala «%s».",
|
||||||
|
"You shared the room %s with {shareWith}." : "Compartiesti la sala «%s» con {shareWith}.",
|
||||||
|
"{user} shared the room %s with you." : "{user} compartió la sala «%s» contigo.",
|
||||||
|
"You unshared the room %s with {shareWith}." : "Dexesti de compartir la sala «%s» con {shareWith}.",
|
||||||
|
"{user} unshared the room %s with you." : "{user} dexó de compartir la sala «%s» contigo.",
|
||||||
|
"Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.",
|
||||||
|
"Public" : "Pública",
|
||||||
|
"API URL or secret not configured. Please contact your administrator." : "Nun se configuró nin la URL nin el secretu de l'API. Ponte en contautu cola alministración.",
|
||||||
|
"Room not found" : "Nun s'atopó la sala",
|
||||||
|
"The room could not be found. Maybe it was deleted?" : "Nun se pudo atopar la sala. Quiciabes la desaniciaren",
|
||||||
|
"Back to %s" : "Volver a «%s»",
|
||||||
|
"API URL" : "URL de l'API",
|
||||||
|
"API secret" : "Secretu de l'API",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Abaxo pues camudar dalgún valor predetermináu que s'usa pa crear sales nueves.",
|
||||||
|
"Community" : "Comunidá",
|
||||||
|
"URL Shortener" : "Acurtiador d'URLs",
|
||||||
|
"URL shortener" : "Acurtiador d'URLs",
|
||||||
"Let's go!" : "¡Vamos!",
|
"Let's go!" : "¡Vamos!",
|
||||||
|
"Please enter your name!" : "Introduz el to nome",
|
||||||
|
"The name must be at least 3 characters long." : "El nome ha ser polo menos de 3 caráuteres",
|
||||||
"Display name" : "Nome visible",
|
"Display name" : "Nome visible",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
|
"Join" : "Xunise",
|
||||||
|
"Have an account? Log in." : "¿Tienes una cuenta? Anicia la sesión",
|
||||||
"Hello %s" : "Hola, %s",
|
"Hello %s" : "Hola, %s",
|
||||||
|
"Name, group …" : "Nome, grupu…",
|
||||||
|
"Group" : "Grupu",
|
||||||
|
"Searching" : "Buscando",
|
||||||
|
"No matches" : "Nun hai nenguna coincidencia",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nome",
|
"Name" : "Nome",
|
||||||
|
"Access" : "Accesu",
|
||||||
|
"Recordings" : "Grabaciones",
|
||||||
|
"You are not permitted to create a room." : "Nun tienes permisu pa crear sales.",
|
||||||
"You exceeded the maximum number of rooms." : "Superesti'l númberu máximu de sales.",
|
"You exceeded the maximum number of rooms." : "Superesti'l númberu máximu de sales.",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
"Descriptive name of this room." : "Un nome descriptivu d'esta sala.",
|
||||||
|
"Edit \"{room}\"" : "Editar «{room}»",
|
||||||
|
"Room URL" : "URL de la sala",
|
||||||
|
"Welcome" : "Afáyate",
|
||||||
|
"Participant limit" : "Llende de participantes",
|
||||||
|
"Every participant is moderator" : "Tolos participantes son llendadores",
|
||||||
|
"Miscellaneous" : "Miscelanea",
|
||||||
|
"Clean layout" : "Distribución llimpia",
|
||||||
|
"Room name" : "Nome de la sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Open recording" : "Abrir la grabación",
|
||||||
"Copy to clipboard" : "Copiar nel cartafueyu",
|
"Copy to clipboard" : "Copiar nel cartafueyu",
|
||||||
"_%n participant_::_%n participants_" : ["%n participante","%n participantes"],
|
"_%n participant_::_%n participants_" : ["%n participante","%n participantes"],
|
||||||
"Delete" : "Desaniciar",
|
"Delete" : "Desaniciar",
|
||||||
|
"Delete \"{name}\"?" : "¿Quies desaniciar «{name}»?",
|
||||||
|
"Select target folder" : "Seleicionar la carpeta de destín",
|
||||||
|
"Link stored" : "Atroxóse la URL",
|
||||||
|
"URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Share" : "Compartir",
|
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
||||||
|
"Server error" : "Error del sirividor",
|
||||||
|
"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…",
|
||||||
"Settings saved" : "Guardóse la configuración",
|
"Settings saved" : "Guardóse la configuración",
|
||||||
"API secret is invalid" : "El secretu de l'API ye inválidu"
|
"Unexpected error occurred" : "Prodúxose un error inesperáu",
|
||||||
|
"API URL is invalid" : "La URL de l'API ye inválida",
|
||||||
|
"API secret is invalid" : "El secretu de l'API ye inválidu",
|
||||||
|
"URL has to start with HTTPS" : "La URL tien de comenzar per HTTPS",
|
||||||
|
"The file \"{filename}\" was uploaded to your room." : "Xubióse'l ficheru «{filename}» a la sala.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "Nun se pudo xubir el ficheru «{filename}» a la sala.",
|
||||||
|
"Send file to BBB" : "Unviar el ficheru a BBB",
|
||||||
|
"No rooms available!" : "¡Nun hai nenguna sala disponible!"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
@ -1,19 +1,75 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
|
"You created the room %s." : "Creesti la sala «%s».",
|
||||||
|
"You deleted the room %s." : "Desaniciesti la sala «%s».",
|
||||||
|
"{user} deleted the room %s." : "{user} desanició la sala «%s».",
|
||||||
|
"You shared the room %s with {shareWith}." : "Compartiesti la sala «%s» con {shareWith}.",
|
||||||
|
"{user} shared the room %s with you." : "{user} compartió la sala «%s» contigo.",
|
||||||
|
"You unshared the room %s with {shareWith}." : "Dexesti de compartir la sala «%s» con {shareWith}.",
|
||||||
|
"{user} unshared the room %s with you." : "{user} dexó de compartir la sala «%s» contigo.",
|
||||||
|
"Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.",
|
||||||
|
"Public" : "Pública",
|
||||||
|
"API URL or secret not configured. Please contact your administrator." : "Nun se configuró nin la URL nin el secretu de l'API. Ponte en contautu cola alministración.",
|
||||||
|
"Room not found" : "Nun s'atopó la sala",
|
||||||
|
"The room could not be found. Maybe it was deleted?" : "Nun se pudo atopar la sala. Quiciabes la desaniciaren",
|
||||||
|
"Back to %s" : "Volver a «%s»",
|
||||||
|
"API URL" : "URL de l'API",
|
||||||
|
"API secret" : "Secretu de l'API",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Abaxo pues camudar dalgún valor predetermináu que s'usa pa crear sales nueves.",
|
||||||
|
"Community" : "Comunidá",
|
||||||
|
"URL Shortener" : "Acurtiador d'URLs",
|
||||||
|
"URL shortener" : "Acurtiador d'URLs",
|
||||||
"Let's go!" : "¡Vamos!",
|
"Let's go!" : "¡Vamos!",
|
||||||
|
"Please enter your name!" : "Introduz el to nome",
|
||||||
|
"The name must be at least 3 characters long." : "El nome ha ser polo menos de 3 caráuteres",
|
||||||
"Display name" : "Nome visible",
|
"Display name" : "Nome visible",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
|
"Join" : "Xunise",
|
||||||
|
"Have an account? Log in." : "¿Tienes una cuenta? Anicia la sesión",
|
||||||
"Hello %s" : "Hola, %s",
|
"Hello %s" : "Hola, %s",
|
||||||
|
"Name, group …" : "Nome, grupu…",
|
||||||
|
"Group" : "Grupu",
|
||||||
|
"Searching" : "Buscando",
|
||||||
|
"No matches" : "Nun hai nenguna coincidencia",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nome",
|
"Name" : "Nome",
|
||||||
|
"Access" : "Accesu",
|
||||||
|
"Recordings" : "Grabaciones",
|
||||||
|
"You are not permitted to create a room." : "Nun tienes permisu pa crear sales.",
|
||||||
"You exceeded the maximum number of rooms." : "Superesti'l númberu máximu de sales.",
|
"You exceeded the maximum number of rooms." : "Superesti'l númberu máximu de sales.",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
"Descriptive name of this room." : "Un nome descriptivu d'esta sala.",
|
||||||
|
"Edit \"{room}\"" : "Editar «{room}»",
|
||||||
|
"Room URL" : "URL de la sala",
|
||||||
|
"Welcome" : "Afáyate",
|
||||||
|
"Participant limit" : "Llende de participantes",
|
||||||
|
"Every participant is moderator" : "Tolos participantes son llendadores",
|
||||||
|
"Miscellaneous" : "Miscelanea",
|
||||||
|
"Clean layout" : "Distribución llimpia",
|
||||||
|
"Room name" : "Nome de la sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Open recording" : "Abrir la grabación",
|
||||||
"Copy to clipboard" : "Copiar nel cartafueyu",
|
"Copy to clipboard" : "Copiar nel cartafueyu",
|
||||||
"_%n participant_::_%n participants_" : ["%n participante","%n participantes"],
|
"_%n participant_::_%n participants_" : ["%n participante","%n participantes"],
|
||||||
"Delete" : "Desaniciar",
|
"Delete" : "Desaniciar",
|
||||||
|
"Delete \"{name}\"?" : "¿Quies desaniciar «{name}»?",
|
||||||
|
"Select target folder" : "Seleicionar la carpeta de destín",
|
||||||
|
"Link stored" : "Atroxóse la URL",
|
||||||
|
"URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Share" : "Compartir",
|
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
||||||
|
"Server error" : "Error del sirividor",
|
||||||
|
"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…",
|
||||||
"Settings saved" : "Guardóse la configuración",
|
"Settings saved" : "Guardóse la configuración",
|
||||||
"API secret is invalid" : "El secretu de l'API ye inválidu"
|
"Unexpected error occurred" : "Prodúxose un error inesperáu",
|
||||||
|
"API URL is invalid" : "La URL de l'API ye inválida",
|
||||||
|
"API secret is invalid" : "El secretu de l'API ye inválidu",
|
||||||
|
"URL has to start with HTTPS" : "La URL tien de comenzar per HTTPS",
|
||||||
|
"The file \"{filename}\" was uploaded to your room." : "Xubióse'l ficheru «{filename}» a la sala.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "Nun se pudo xubir el ficheru «{filename}» a la sala.",
|
||||||
|
"Send file to BBB" : "Unviar el ficheru a BBB",
|
||||||
|
"No rooms available!" : "¡Nun hai nenguna sala disponible!"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
|
@ -11,7 +11,6 @@ OC.L10N.register(
|
||||||
"Create" : "Yarat",
|
"Create" : "Yarat",
|
||||||
"Delete" : "Sil",
|
"Delete" : "Sil",
|
||||||
"Error" : "Səhv",
|
"Error" : "Səhv",
|
||||||
"Share" : "Paylaş",
|
|
||||||
"Loading" : "Loading",
|
"Loading" : "Loading",
|
||||||
"Settings saved" : "Parametrlər yaddaşa verildi"
|
"Settings saved" : "Parametrlər yaddaşa verildi"
|
||||||
},
|
},
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
"Create" : "Yarat",
|
"Create" : "Yarat",
|
||||||
"Delete" : "Sil",
|
"Delete" : "Sil",
|
||||||
"Error" : "Səhv",
|
"Error" : "Səhv",
|
||||||
"Share" : "Paylaş",
|
|
||||||
"Loading" : "Loading",
|
"Loading" : "Loading",
|
||||||
"Settings saved" : "Parametrlər yaddaşa verildi"
|
"Settings saved" : "Parametrlər yaddaşa verildi"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
|
|
|
@ -8,7 +8,6 @@ OC.L10N.register(
|
||||||
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
||||||
"Delete" : "Delete",
|
"Delete" : "Delete",
|
||||||
"Error" : "Памылка",
|
"Error" : "Памылка",
|
||||||
"Share" : "Падзяліцца",
|
|
||||||
"Loading" : "Loading"
|
"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);");
|
"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" : "Капіяваць у буфер абмену",
|
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
||||||
"Delete" : "Delete",
|
"Delete" : "Delete",
|
||||||
"Error" : "Памылка",
|
"Error" : "Памылка",
|
||||||
"Share" : "Падзяліцца",
|
|
||||||
"Loading" : "Loading"
|
"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);"
|
},"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" : "Група",
|
"Group" : "Група",
|
||||||
"Searching" : "Търсене",
|
"Searching" : "Търсене",
|
||||||
"No matches" : "Няма съвпадения.",
|
"No matches" : "Няма съвпадения.",
|
||||||
|
"admin" : "администратор",
|
||||||
|
"moderator" : "модератор",
|
||||||
"Name" : "Име",
|
"Name" : "Име",
|
||||||
"Access" : "Достъп",
|
"Access" : "Достъп",
|
||||||
"Max" : "Макс",
|
"Max" : "Макс",
|
||||||
|
@ -69,7 +71,6 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Това съобщение се показва на всички потребители в зоната за чат, след като се присъединят.",
|
"This message is shown to all users in the chat area after they joined." : "Това съобщение се показва на всички потребители в зоната за чат, след като се присъединят.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Задава ограничение за броя на участниците в тази стая. Нула означава, че няма ограничение.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Задава ограничение за броя на участниците в тази стая. Нула означава, че няма ограничение.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.",
|
"If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Публично: Всеки, който знае за връзката, може да се присъедини. Парола: Гостите трябва да предоставят парола. Чакалня: Модераторът трябва да приеме всеки гост, преди той да може да се присъедини. Вътрешно: Само потребители на Nextcloud могат да се присъединят.",
|
|
||||||
"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." : "Модераторът може да управлява всички участници в среща, включително изгонване, заглушаване или избор на водещ. Потребителите с ролята на модератор също могат да затворят среща или да променят настройките по подразбиране.",
|
"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." : "Модераторът може да управлява всички участници в среща, включително изгонване, заглушаване или избор на водещ. Потребителите с ролята на модератор също могат да затворят среща или да променят настройките по подразбиране.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Ако е разрешено, нормалните потребители трябва да изчакат, докато модератор влезе в стаята.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Ако е разрешено, нормалните потребители трябва да изчакат, докато модератор влезе в стаята.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ако е активирано, се генерира URL на модератор, който позволява достъп с разрешение на модератора.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ако е активирано, се генерира URL на модератор, който позволява достъп с разрешение на модератора.",
|
||||||
|
@ -82,6 +83,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "URL адрес на стая",
|
"Room URL" : "URL адрес на стая",
|
||||||
"Welcome" : "Добре дошли",
|
"Welcome" : "Добре дошли",
|
||||||
"Participant limit" : "Лимит на участниците",
|
"Participant limit" : "Лимит на участниците",
|
||||||
|
"Sharing" : "Споделяне",
|
||||||
"Every participant is moderator" : "Всеки участник е модератор",
|
"Every participant is moderator" : "Всеки участник е модератор",
|
||||||
"Moderator access via URL" : "Достъп на модератор чрез URL",
|
"Moderator access via URL" : "Достъп на модератор чрез URL",
|
||||||
"Miscellaneous" : "Разни",
|
"Miscellaneous" : "Разни",
|
||||||
|
@ -93,6 +95,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Присъединяване към срещата, заглушено",
|
"Join meeting muted" : "Присъединяване към срещата, заглушено",
|
||||||
"Room name" : "Име на стаята",
|
"Room name" : "Име на стаята",
|
||||||
"Create" : "Създай",
|
"Create" : "Създай",
|
||||||
|
"Published" : "Публикувано",
|
||||||
"Open recording" : "Отворено записване",
|
"Open recording" : "Отворено записване",
|
||||||
"Copy to clipboard" : "Копиране в клипборда",
|
"Copy to clipboard" : "Копиране в клипборда",
|
||||||
"Save as file" : "Запиши като файл",
|
"Save as file" : "Запиши като файл",
|
||||||
|
@ -111,9 +114,6 @@ OC.L10N.register(
|
||||||
"Delete?" : "Изтриване?",
|
"Delete?" : "Изтриване?",
|
||||||
"Could not delete record" : "Записът не можа да се изтрие",
|
"Could not delete record" : "Записът не можа да се изтрие",
|
||||||
"Server error" : "Сървърна грешка",
|
"Server error" : "Сървърна грешка",
|
||||||
"moderator" : "модератор",
|
|
||||||
"admin" : "администратор",
|
|
||||||
"Share" : "Сподели",
|
|
||||||
"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,8 @@
|
||||||
"Group" : "Група",
|
"Group" : "Група",
|
||||||
"Searching" : "Търсене",
|
"Searching" : "Търсене",
|
||||||
"No matches" : "Няма съвпадения.",
|
"No matches" : "Няма съвпадения.",
|
||||||
|
"admin" : "администратор",
|
||||||
|
"moderator" : "модератор",
|
||||||
"Name" : "Име",
|
"Name" : "Име",
|
||||||
"Access" : "Достъп",
|
"Access" : "Достъп",
|
||||||
"Max" : "Макс",
|
"Max" : "Макс",
|
||||||
|
@ -67,7 +69,6 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Това съобщение се показва на всички потребители в зоната за чат, след като се присъединят.",
|
"This message is shown to all users in the chat area after they joined." : "Това съобщение се показва на всички потребители в зоната за чат, след като се присъединят.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Задава ограничение за броя на участниците в тази стая. Нула означава, че няма ограничение.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Задава ограничение за броя на участниците в тази стая. Нула означава, че няма ограничение.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.",
|
"If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Публично: Всеки, който знае за връзката, може да се присъедини. Парола: Гостите трябва да предоставят парола. Чакалня: Модераторът трябва да приеме всеки гост, преди той да може да се присъедини. Вътрешно: Само потребители на Nextcloud могат да се присъединят.",
|
|
||||||
"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." : "Модераторът може да управлява всички участници в среща, включително изгонване, заглушаване или избор на водещ. Потребителите с ролята на модератор също могат да затворят среща или да променят настройките по подразбиране.",
|
"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." : "Модераторът може да управлява всички участници в среща, включително изгонване, заглушаване или избор на водещ. Потребителите с ролята на модератор също могат да затворят среща или да променят настройките по подразбиране.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Ако е разрешено, нормалните потребители трябва да изчакат, докато модератор влезе в стаята.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Ако е разрешено, нормалните потребители трябва да изчакат, докато модератор влезе в стаята.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ако е активирано, се генерира URL на модератор, който позволява достъп с разрешение на модератора.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ако е активирано, се генерира URL на модератор, който позволява достъп с разрешение на модератора.",
|
||||||
|
@ -80,6 +81,7 @@
|
||||||
"Room URL" : "URL адрес на стая",
|
"Room URL" : "URL адрес на стая",
|
||||||
"Welcome" : "Добре дошли",
|
"Welcome" : "Добре дошли",
|
||||||
"Participant limit" : "Лимит на участниците",
|
"Participant limit" : "Лимит на участниците",
|
||||||
|
"Sharing" : "Споделяне",
|
||||||
"Every participant is moderator" : "Всеки участник е модератор",
|
"Every participant is moderator" : "Всеки участник е модератор",
|
||||||
"Moderator access via URL" : "Достъп на модератор чрез URL",
|
"Moderator access via URL" : "Достъп на модератор чрез URL",
|
||||||
"Miscellaneous" : "Разни",
|
"Miscellaneous" : "Разни",
|
||||||
|
@ -91,6 +93,7 @@
|
||||||
"Join meeting muted" : "Присъединяване към срещата, заглушено",
|
"Join meeting muted" : "Присъединяване към срещата, заглушено",
|
||||||
"Room name" : "Име на стаята",
|
"Room name" : "Име на стаята",
|
||||||
"Create" : "Създай",
|
"Create" : "Създай",
|
||||||
|
"Published" : "Публикувано",
|
||||||
"Open recording" : "Отворено записване",
|
"Open recording" : "Отворено записване",
|
||||||
"Copy to clipboard" : "Копиране в клипборда",
|
"Copy to clipboard" : "Копиране в клипборда",
|
||||||
"Save as file" : "Запиши като файл",
|
"Save as file" : "Запиши като файл",
|
||||||
|
@ -109,9 +112,6 @@
|
||||||
"Delete?" : "Изтриване?",
|
"Delete?" : "Изтриване?",
|
||||||
"Could not delete record" : "Записът не можа да се изтрие",
|
"Could not delete record" : "Записът не можа да се изтрие",
|
||||||
"Server error" : "Сървърна грешка",
|
"Server error" : "Сървърна грешка",
|
||||||
"moderator" : "модератор",
|
|
||||||
"admin" : "администратор",
|
|
||||||
"Share" : "Сподели",
|
|
||||||
"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" : "Макс. стаи",
|
||||||
|
|
|
@ -7,10 +7,10 @@ OC.L10N.register(
|
||||||
"Group" : "গোষ্ঠীসমূহ",
|
"Group" : "গোষ্ঠীসমূহ",
|
||||||
"Name" : "নাম",
|
"Name" : "নাম",
|
||||||
"Edit" : "সম্পাদনা",
|
"Edit" : "সম্পাদনা",
|
||||||
|
"Sharing" : "ভাগাভাগিরত",
|
||||||
"Create" : "তৈরী কর",
|
"Create" : "তৈরী কর",
|
||||||
"Delete" : "মুছে",
|
"Delete" : "মুছে",
|
||||||
"Error" : "সমস্যা",
|
"Error" : "সমস্যা",
|
||||||
"Share" : "ভাগাভাগি কর",
|
|
||||||
"Loading" : "Loading"
|
"Loading" : "Loading"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
"Group" : "গোষ্ঠীসমূহ",
|
"Group" : "গোষ্ঠীসমূহ",
|
||||||
"Name" : "নাম",
|
"Name" : "নাম",
|
||||||
"Edit" : "সম্পাদনা",
|
"Edit" : "সম্পাদনা",
|
||||||
|
"Sharing" : "ভাগাভাগিরত",
|
||||||
"Create" : "তৈরী কর",
|
"Create" : "তৈরী কর",
|
||||||
"Delete" : "মুছে",
|
"Delete" : "মুছে",
|
||||||
"Error" : "সমস্যা",
|
"Error" : "সমস্যা",
|
||||||
"Share" : "ভাগাভাগি কর",
|
|
||||||
"Loading" : "Loading"
|
"Loading" : "Loading"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
|
@ -11,14 +11,14 @@ OC.L10N.register(
|
||||||
"Hello %s" : "Degemer mat %s",
|
"Hello %s" : "Degemer mat %s",
|
||||||
"Group" : "Stollad",
|
"Group" : "Stollad",
|
||||||
"No matches" : "Kejadenn ebet",
|
"No matches" : "Kejadenn ebet",
|
||||||
|
"admin" : "merour",
|
||||||
|
"moderator" : "habaskaer",
|
||||||
"Name" : "Anv",
|
"Name" : "Anv",
|
||||||
"Edit" : "Cheñch",
|
"Edit" : "Cheñch",
|
||||||
|
"Sharing" : "Rannan",
|
||||||
"Create" : "Krouiñ",
|
"Create" : "Krouiñ",
|
||||||
"Delete" : "Dilemel",
|
"Delete" : "Dilemel",
|
||||||
"Error" : "Fazi",
|
"Error" : "Fazi",
|
||||||
"moderator" : "habaskaer",
|
|
||||||
"admin" : "merour",
|
|
||||||
"Share" : "Rannan",
|
|
||||||
"Loading" : "Kargañ",
|
"Loading" : "Kargañ",
|
||||||
"Settings saved" : "Stummoù enrollet"
|
"Settings saved" : "Stummoù enrollet"
|
||||||
},
|
},
|
||||||
|
|
|
@ -9,14 +9,14 @@
|
||||||
"Hello %s" : "Degemer mat %s",
|
"Hello %s" : "Degemer mat %s",
|
||||||
"Group" : "Stollad",
|
"Group" : "Stollad",
|
||||||
"No matches" : "Kejadenn ebet",
|
"No matches" : "Kejadenn ebet",
|
||||||
|
"admin" : "merour",
|
||||||
|
"moderator" : "habaskaer",
|
||||||
"Name" : "Anv",
|
"Name" : "Anv",
|
||||||
"Edit" : "Cheñch",
|
"Edit" : "Cheñch",
|
||||||
|
"Sharing" : "Rannan",
|
||||||
"Create" : "Krouiñ",
|
"Create" : "Krouiñ",
|
||||||
"Delete" : "Dilemel",
|
"Delete" : "Dilemel",
|
||||||
"Error" : "Fazi",
|
"Error" : "Fazi",
|
||||||
"moderator" : "habaskaer",
|
|
||||||
"admin" : "merour",
|
|
||||||
"Share" : "Rannan",
|
|
||||||
"Loading" : "Kargañ",
|
"Loading" : "Kargañ",
|
||||||
"Settings saved" : "Stummoù enrollet"
|
"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);"
|
},"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",
|
"Group" : "Grupa",
|
||||||
"Name" : "Ime",
|
"Name" : "Ime",
|
||||||
"Edit" : "Izmjeni",
|
"Edit" : "Izmjeni",
|
||||||
|
"Sharing" : "Dijeljenje",
|
||||||
"Create" : "Ustvari",
|
"Create" : "Ustvari",
|
||||||
"Delete" : "Obriši",
|
"Delete" : "Obriši",
|
||||||
"Error" : "Greška",
|
"Error" : "Greška",
|
||||||
"Share" : "Podjeli",
|
|
||||||
"Loading" : "Loading"
|
"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);");
|
"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",
|
"Group" : "Grupa",
|
||||||
"Name" : "Ime",
|
"Name" : "Ime",
|
||||||
"Edit" : "Izmjeni",
|
"Edit" : "Izmjeni",
|
||||||
|
"Sharing" : "Dijeljenje",
|
||||||
"Create" : "Ustvari",
|
"Create" : "Ustvari",
|
||||||
"Delete" : "Obriši",
|
"Delete" : "Obriši",
|
||||||
"Error" : "Greška",
|
"Error" : "Greška",
|
||||||
"Share" : "Podjeli",
|
|
||||||
"Loading" : "Loading"
|
"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);"
|
},"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",
|
"Group" : "Grup",
|
||||||
"Searching" : "Cerca",
|
"Searching" : "Cerca",
|
||||||
"No matches" : "Cap coincidència",
|
"No matches" : "Cap coincidència",
|
||||||
|
"admin" : "administrador",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accés",
|
"Access" : "Accés",
|
||||||
"Max" : "Màx",
|
"Max" : "Màx",
|
||||||
|
@ -69,7 +71,6 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Aquest missatge es mostra a tots els usuaris de l'àrea de xat després d'unir-se.",
|
"This message is shown to all users in the chat area after they joined." : "Aquest missatge es mostra a tots els usuaris de l'àrea de xat després d'unir-se.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estableix un límit en el nombre de participants d'aquesta sala. Zero vol dir que no hi ha límit.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estableix un límit en el nombre de participants d'aquesta sala. Zero vol dir que no hi ha límit.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si està habilitat, el moderador pot iniciar l'enregistrament.",
|
"If enabled, the moderator is able to start the recording." : "Si està habilitat, el moderador pot iniciar l'enregistrament.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Públic: Tothom que sàpiga l'enllaç pot unir-se. Contrasenya: els hostes han de proporcionar una contrasenya. Sala d'espera: un moderador ha d'acceptar tots els convidats abans de poder unir-se. Intern: Només els usuaris de Nextcloud es poden unir.",
|
|
||||||
"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." : "Un moderador és capaç d'administrar tots els participants en una reunió, incloent fer fora, silenciar o seleccionar un presentador. Els usuaris amb el rol moderador també poden tancar una reunió o canviar els paràmetres per defecte.",
|
"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." : "Un moderador és capaç d'administrar tots els participants en una reunió, incloent fer fora, silenciar o seleccionar un presentador. Els usuaris amb el rol moderador també poden tancar una reunió o canviar els paràmetres per defecte.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si està habilitat, els usuaris normals han d'esperar fins que un moderador estigui a la sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si està habilitat, els usuaris normals han d'esperar fins que un moderador estigui a la sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si està habilitat, es genera un URL de moderador que permet l'accés amb permís de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si està habilitat, es genera un URL de moderador que permet l'accés amb permís de moderador.",
|
||||||
|
@ -82,6 +83,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Benvingut",
|
"Welcome" : "Benvingut",
|
||||||
"Participant limit" : "Límit de participants",
|
"Participant limit" : "Límit de participants",
|
||||||
|
"Sharing" : "Ús compartit",
|
||||||
"Every participant is moderator" : "Cada participant és moderador",
|
"Every participant is moderator" : "Cada participant és moderador",
|
||||||
"Moderator access via URL" : "Accés moderador mitjançant URL",
|
"Moderator access via URL" : "Accés moderador mitjançant URL",
|
||||||
"Miscellaneous" : "Miscel·lània",
|
"Miscellaneous" : "Miscel·lània",
|
||||||
|
@ -93,6 +95,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Uneix-te a la reunió en silenci",
|
"Join meeting muted" : "Uneix-te a la reunió en silenci",
|
||||||
"Room name" : "Nom de la sala",
|
"Room name" : "Nom de la sala",
|
||||||
"Create" : "Crea",
|
"Create" : "Crea",
|
||||||
|
"Published" : "Publicat",
|
||||||
"Open recording" : "Obre enregistrament",
|
"Open recording" : "Obre enregistrament",
|
||||||
"Copy to clipboard" : "Copia-ho al porta-papers",
|
"Copy to clipboard" : "Copia-ho al porta-papers",
|
||||||
"Save as file" : "Desa com a fitxer",
|
"Save as file" : "Desa com a fitxer",
|
||||||
|
@ -111,9 +114,7 @@ OC.L10N.register(
|
||||||
"Delete?" : "Suprimeix?",
|
"Delete?" : "Suprimeix?",
|
||||||
"Could not delete record" : "No s' ha pogut suprimir el registre",
|
"Could not delete record" : "No s' ha pogut suprimir el registre",
|
||||||
"Server error" : "Error del servidor",
|
"Server error" : "Error del servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inici",
|
||||||
"admin" : "administrador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Carregant",
|
"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è.",
|
"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",
|
"Max. rooms" : "Màx. sales",
|
||||||
|
|
|
@ -54,6 +54,8 @@
|
||||||
"Group" : "Grup",
|
"Group" : "Grup",
|
||||||
"Searching" : "Cerca",
|
"Searching" : "Cerca",
|
||||||
"No matches" : "Cap coincidència",
|
"No matches" : "Cap coincidència",
|
||||||
|
"admin" : "administrador",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accés",
|
"Access" : "Accés",
|
||||||
"Max" : "Màx",
|
"Max" : "Màx",
|
||||||
|
@ -67,7 +69,6 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Aquest missatge es mostra a tots els usuaris de l'àrea de xat després d'unir-se.",
|
"This message is shown to all users in the chat area after they joined." : "Aquest missatge es mostra a tots els usuaris de l'àrea de xat després d'unir-se.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estableix un límit en el nombre de participants d'aquesta sala. Zero vol dir que no hi ha límit.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estableix un límit en el nombre de participants d'aquesta sala. Zero vol dir que no hi ha límit.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si està habilitat, el moderador pot iniciar l'enregistrament.",
|
"If enabled, the moderator is able to start the recording." : "Si està habilitat, el moderador pot iniciar l'enregistrament.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Públic: Tothom que sàpiga l'enllaç pot unir-se. Contrasenya: els hostes han de proporcionar una contrasenya. Sala d'espera: un moderador ha d'acceptar tots els convidats abans de poder unir-se. Intern: Només els usuaris de Nextcloud es poden unir.",
|
|
||||||
"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." : "Un moderador és capaç d'administrar tots els participants en una reunió, incloent fer fora, silenciar o seleccionar un presentador. Els usuaris amb el rol moderador també poden tancar una reunió o canviar els paràmetres per defecte.",
|
"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." : "Un moderador és capaç d'administrar tots els participants en una reunió, incloent fer fora, silenciar o seleccionar un presentador. Els usuaris amb el rol moderador també poden tancar una reunió o canviar els paràmetres per defecte.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si està habilitat, els usuaris normals han d'esperar fins que un moderador estigui a la sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si està habilitat, els usuaris normals han d'esperar fins que un moderador estigui a la sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si està habilitat, es genera un URL de moderador que permet l'accés amb permís de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si està habilitat, es genera un URL de moderador que permet l'accés amb permís de moderador.",
|
||||||
|
@ -80,6 +81,7 @@
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Benvingut",
|
"Welcome" : "Benvingut",
|
||||||
"Participant limit" : "Límit de participants",
|
"Participant limit" : "Límit de participants",
|
||||||
|
"Sharing" : "Ús compartit",
|
||||||
"Every participant is moderator" : "Cada participant és moderador",
|
"Every participant is moderator" : "Cada participant és moderador",
|
||||||
"Moderator access via URL" : "Accés moderador mitjançant URL",
|
"Moderator access via URL" : "Accés moderador mitjançant URL",
|
||||||
"Miscellaneous" : "Miscel·lània",
|
"Miscellaneous" : "Miscel·lània",
|
||||||
|
@ -91,6 +93,7 @@
|
||||||
"Join meeting muted" : "Uneix-te a la reunió en silenci",
|
"Join meeting muted" : "Uneix-te a la reunió en silenci",
|
||||||
"Room name" : "Nom de la sala",
|
"Room name" : "Nom de la sala",
|
||||||
"Create" : "Crea",
|
"Create" : "Crea",
|
||||||
|
"Published" : "Publicat",
|
||||||
"Open recording" : "Obre enregistrament",
|
"Open recording" : "Obre enregistrament",
|
||||||
"Copy to clipboard" : "Copia-ho al porta-papers",
|
"Copy to clipboard" : "Copia-ho al porta-papers",
|
||||||
"Save as file" : "Desa com a fitxer",
|
"Save as file" : "Desa com a fitxer",
|
||||||
|
@ -109,9 +112,7 @@
|
||||||
"Delete?" : "Suprimeix?",
|
"Delete?" : "Suprimeix?",
|
||||||
"Could not delete record" : "No s' ha pogut suprimir el registre",
|
"Could not delete record" : "No s' ha pogut suprimir el registre",
|
||||||
"Server error" : "Error del servidor",
|
"Server error" : "Error del servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inici",
|
||||||
"admin" : "administrador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Carregant",
|
"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è.",
|
"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",
|
"Max. rooms" : "Màx. sales",
|
||||||
|
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
||||||
"Group" : "Skupina",
|
"Group" : "Skupina",
|
||||||
"Searching" : "Hledá se",
|
"Searching" : "Hledá se",
|
||||||
"No matches" : "Žádné shody",
|
"No matches" : "Žádné shody",
|
||||||
|
"admin" : "správce",
|
||||||
|
"moderator" : "moderátor",
|
||||||
"Name" : "Název",
|
"Name" : "Název",
|
||||||
"Access" : "Přístup",
|
"Access" : "Přístup",
|
||||||
"Max" : "Nejvýše",
|
"Max" : "Nejvýše",
|
||||||
|
@ -69,7 +71,6 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Tato zpráva je zobrazena všem uživatelům v chatu, poté co se připojí.",
|
"This message is shown to all users in the chat area after they joined." : "Tato zpráva je zobrazena všem uživatelům v chatu, poté co se připojí.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastaví limit na počet účastníků pro tuto místnost. Nula znamená bez omezení.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastaví limit na počet účastníků pro tuto místnost. Nula znamená bez omezení.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Pokud je zapnuto, moderátor může spustit nahrávání.",
|
"If enabled, the moderator is able to start the recording." : "Pokud je zapnuto, moderátor může spustit nahrávání.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Veřejné: Každý, kdo zná odkaz se může připojit. Heslo: Je třeba, aby host zadal heslo. Čekárna: Je třeba, aby moderátor přijal každého z hostů a teprve pak se budou moci připojit. Interní: Připojit se mohou pouze uživatelé s účtem na Nextcloud.",
|
|
||||||
"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." : "Moderátor může spravovat všechny účastníky schůzky, včetně odpojení, ztlumení nebo výběru prezentujícího. Uživatelé s rolí moderátor také mohou schůzku ukončit nebo měnit výchozí nastavení.",
|
"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." : "Moderátor může spravovat všechny účastníky schůzky, včetně odpojení, ztlumení nebo výběru prezentujícího. Uživatelé s rolí moderátor také mohou schůzku ukončit nebo měnit výchozí nastavení.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Pokud je zapnuto, běžní uživatelé budou muset počkat, než se do místnosti přihlásí moderátor.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Pokud je zapnuto, běžní uživatelé budou muset počkat, než se do místnosti přihlásí moderátor.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Po povolení bude vygenerován moderátorský URL umožňující přístup s moderátorskými právy.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Po povolení bude vygenerován moderátorský URL umožňující přístup s moderátorskými právy.",
|
||||||
|
@ -82,6 +83,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "URL místnosti",
|
"Room URL" : "URL místnosti",
|
||||||
"Welcome" : "Vítejte",
|
"Welcome" : "Vítejte",
|
||||||
"Participant limit" : "Limit počtu účastníků",
|
"Participant limit" : "Limit počtu účastníků",
|
||||||
|
"Sharing" : "Sdílení",
|
||||||
"Every participant is moderator" : "Každý z účastníků má práva moderátora",
|
"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",
|
"Moderator access via URL" : "Moderátorský přístup přez URL",
|
||||||
"Miscellaneous" : "Různé",
|
"Miscellaneous" : "Různé",
|
||||||
|
@ -93,6 +95,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Připojit ke schůzce ztlumené",
|
"Join meeting muted" : "Připojit ke schůzce ztlumené",
|
||||||
"Room name" : "Název místnosti",
|
"Room name" : "Název místnosti",
|
||||||
"Create" : "Vytvořit",
|
"Create" : "Vytvořit",
|
||||||
|
"Published" : "Zveřejněno",
|
||||||
"Open recording" : "Zahájit zaznamenávání",
|
"Open recording" : "Zahájit zaznamenávání",
|
||||||
"Copy to clipboard" : "Zkopírovat do schránky",
|
"Copy to clipboard" : "Zkopírovat do schránky",
|
||||||
"Save as file" : "Uložit jako soubor",
|
"Save as file" : "Uložit jako soubor",
|
||||||
|
@ -111,9 +114,7 @@ OC.L10N.register(
|
||||||
"Delete?" : "Smazat?",
|
"Delete?" : "Smazat?",
|
||||||
"Could not delete record" : "Záznam se nedaří smazat",
|
"Could not delete record" : "Záznam se nedaří smazat",
|
||||||
"Server error" : "Chyba serveru",
|
"Server error" : "Chyba serveru",
|
||||||
"moderator" : "moderátor",
|
"Start" : "Spustit",
|
||||||
"admin" : "správce",
|
|
||||||
"Share" : "Sdílet",
|
|
||||||
"Loading" : "Načítání",
|
"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.",
|
"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í",
|
"Max. rooms" : "Nejvýše místností",
|
||||||
|
|
|
@ -54,6 +54,8 @@
|
||||||
"Group" : "Skupina",
|
"Group" : "Skupina",
|
||||||
"Searching" : "Hledá se",
|
"Searching" : "Hledá se",
|
||||||
"No matches" : "Žádné shody",
|
"No matches" : "Žádné shody",
|
||||||
|
"admin" : "správce",
|
||||||
|
"moderator" : "moderátor",
|
||||||
"Name" : "Název",
|
"Name" : "Název",
|
||||||
"Access" : "Přístup",
|
"Access" : "Přístup",
|
||||||
"Max" : "Nejvýše",
|
"Max" : "Nejvýše",
|
||||||
|
@ -67,7 +69,6 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Tato zpráva je zobrazena všem uživatelům v chatu, poté co se připojí.",
|
"This message is shown to all users in the chat area after they joined." : "Tato zpráva je zobrazena všem uživatelům v chatu, poté co se připojí.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastaví limit na počet účastníků pro tuto místnost. Nula znamená bez omezení.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastaví limit na počet účastníků pro tuto místnost. Nula znamená bez omezení.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Pokud je zapnuto, moderátor může spustit nahrávání.",
|
"If enabled, the moderator is able to start the recording." : "Pokud je zapnuto, moderátor může spustit nahrávání.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Veřejné: Každý, kdo zná odkaz se může připojit. Heslo: Je třeba, aby host zadal heslo. Čekárna: Je třeba, aby moderátor přijal každého z hostů a teprve pak se budou moci připojit. Interní: Připojit se mohou pouze uživatelé s účtem na Nextcloud.",
|
|
||||||
"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." : "Moderátor může spravovat všechny účastníky schůzky, včetně odpojení, ztlumení nebo výběru prezentujícího. Uživatelé s rolí moderátor také mohou schůzku ukončit nebo měnit výchozí nastavení.",
|
"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." : "Moderátor může spravovat všechny účastníky schůzky, včetně odpojení, ztlumení nebo výběru prezentujícího. Uživatelé s rolí moderátor také mohou schůzku ukončit nebo měnit výchozí nastavení.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Pokud je zapnuto, běžní uživatelé budou muset počkat, než se do místnosti přihlásí moderátor.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Pokud je zapnuto, běžní uživatelé budou muset počkat, než se do místnosti přihlásí moderátor.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Po povolení bude vygenerován moderátorský URL umožňující přístup s moderátorskými právy.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Po povolení bude vygenerován moderátorský URL umožňující přístup s moderátorskými právy.",
|
||||||
|
@ -80,6 +81,7 @@
|
||||||
"Room URL" : "URL místnosti",
|
"Room URL" : "URL místnosti",
|
||||||
"Welcome" : "Vítejte",
|
"Welcome" : "Vítejte",
|
||||||
"Participant limit" : "Limit počtu účastníků",
|
"Participant limit" : "Limit počtu účastníků",
|
||||||
|
"Sharing" : "Sdílení",
|
||||||
"Every participant is moderator" : "Každý z účastníků má práva moderátora",
|
"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",
|
"Moderator access via URL" : "Moderátorský přístup přez URL",
|
||||||
"Miscellaneous" : "Různé",
|
"Miscellaneous" : "Různé",
|
||||||
|
@ -91,6 +93,7 @@
|
||||||
"Join meeting muted" : "Připojit ke schůzce ztlumené",
|
"Join meeting muted" : "Připojit ke schůzce ztlumené",
|
||||||
"Room name" : "Název místnosti",
|
"Room name" : "Název místnosti",
|
||||||
"Create" : "Vytvořit",
|
"Create" : "Vytvořit",
|
||||||
|
"Published" : "Zveřejněno",
|
||||||
"Open recording" : "Zahájit zaznamenávání",
|
"Open recording" : "Zahájit zaznamenávání",
|
||||||
"Copy to clipboard" : "Zkopírovat do schránky",
|
"Copy to clipboard" : "Zkopírovat do schránky",
|
||||||
"Save as file" : "Uložit jako soubor",
|
"Save as file" : "Uložit jako soubor",
|
||||||
|
@ -109,9 +112,7 @@
|
||||||
"Delete?" : "Smazat?",
|
"Delete?" : "Smazat?",
|
||||||
"Could not delete record" : "Záznam se nedaří smazat",
|
"Could not delete record" : "Záznam se nedaří smazat",
|
||||||
"Server error" : "Chyba serveru",
|
"Server error" : "Chyba serveru",
|
||||||
"moderator" : "moderátor",
|
"Start" : "Spustit",
|
||||||
"admin" : "správce",
|
|
||||||
"Share" : "Sdílet",
|
|
||||||
"Loading" : "Načítání",
|
"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.",
|
"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í",
|
"Max. rooms" : "Nejvýše místností",
|
||||||
|
|
|
@ -12,7 +12,6 @@ OC.L10N.register(
|
||||||
"Create" : "Creu",
|
"Create" : "Creu",
|
||||||
"Delete" : "Dileu",
|
"Delete" : "Dileu",
|
||||||
"Error" : "Gwall",
|
"Error" : "Gwall",
|
||||||
"Share" : "Rhannu",
|
|
||||||
"Loading" : "Llwytho"
|
"Loading" : "Llwytho"
|
||||||
},
|
},
|
||||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
"Create" : "Creu",
|
"Create" : "Creu",
|
||||||
"Delete" : "Dileu",
|
"Delete" : "Dileu",
|
||||||
"Error" : "Gwall",
|
"Error" : "Gwall",
|
||||||
"Share" : "Rhannu",
|
|
||||||
"Loading" : "Llwytho"
|
"Loading" : "Llwytho"
|
||||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||||
}
|
}
|
10
l10n/da.js
10
l10n/da.js
|
@ -6,26 +6,28 @@ OC.L10N.register(
|
||||||
"Save" : "Gem",
|
"Save" : "Gem",
|
||||||
"Community" : "Onlinefællesskab",
|
"Community" : "Onlinefællesskab",
|
||||||
"Display name" : "Vist navn",
|
"Display name" : "Vist navn",
|
||||||
"Password" : "Adgangskode",
|
"Password" : "Password",
|
||||||
"Join" : "Deltag",
|
"Join" : "Deltag",
|
||||||
"Hello %s" : "Hej %s",
|
"Hello %s" : "Hej %s",
|
||||||
"Group" : "Gruppe",
|
"Group" : "Gruppe",
|
||||||
"No matches" : "Ingen matches",
|
"No matches" : "Ingen matches",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
"Name" : "Navn",
|
"Name" : "Navn",
|
||||||
"Access" : "Adgang",
|
"Access" : "Adgang",
|
||||||
"Max" : "Maks",
|
"Max" : "Maks",
|
||||||
"Edit" : "Rediger",
|
"Edit" : "Rediger",
|
||||||
"Welcome" : "Velkommen",
|
"Welcome" : "Velkommen",
|
||||||
|
"Sharing" : "Deling",
|
||||||
"Miscellaneous" : "Diverse",
|
"Miscellaneous" : "Diverse",
|
||||||
|
"Room name" : "Rumnavn",
|
||||||
"Create" : "Opret",
|
"Create" : "Opret",
|
||||||
|
"Published" : "Udgivet",
|
||||||
"Copy to clipboard" : "Kopier til udklipsholder",
|
"Copy to clipboard" : "Kopier til udklipsholder",
|
||||||
"Delete" : "Slet",
|
"Delete" : "Slet",
|
||||||
"Error" : "Fejl",
|
"Error" : "Fejl",
|
||||||
"Delete?" : "Slet?",
|
"Delete?" : "Slet?",
|
||||||
"Server error" : "Serverfejl",
|
"Server error" : "Serverfejl",
|
||||||
"moderator" : "moderator",
|
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Del",
|
|
||||||
"Loading" : "Indlæser",
|
"Loading" : "Indlæser",
|
||||||
"Settings saved" : "Indstillinger gemt"
|
"Settings saved" : "Indstillinger gemt"
|
||||||
},
|
},
|
||||||
|
|
10
l10n/da.json
10
l10n/da.json
|
@ -4,26 +4,28 @@
|
||||||
"Save" : "Gem",
|
"Save" : "Gem",
|
||||||
"Community" : "Onlinefællesskab",
|
"Community" : "Onlinefællesskab",
|
||||||
"Display name" : "Vist navn",
|
"Display name" : "Vist navn",
|
||||||
"Password" : "Adgangskode",
|
"Password" : "Password",
|
||||||
"Join" : "Deltag",
|
"Join" : "Deltag",
|
||||||
"Hello %s" : "Hej %s",
|
"Hello %s" : "Hej %s",
|
||||||
"Group" : "Gruppe",
|
"Group" : "Gruppe",
|
||||||
"No matches" : "Ingen matches",
|
"No matches" : "Ingen matches",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
"Name" : "Navn",
|
"Name" : "Navn",
|
||||||
"Access" : "Adgang",
|
"Access" : "Adgang",
|
||||||
"Max" : "Maks",
|
"Max" : "Maks",
|
||||||
"Edit" : "Rediger",
|
"Edit" : "Rediger",
|
||||||
"Welcome" : "Velkommen",
|
"Welcome" : "Velkommen",
|
||||||
|
"Sharing" : "Deling",
|
||||||
"Miscellaneous" : "Diverse",
|
"Miscellaneous" : "Diverse",
|
||||||
|
"Room name" : "Rumnavn",
|
||||||
"Create" : "Opret",
|
"Create" : "Opret",
|
||||||
|
"Published" : "Udgivet",
|
||||||
"Copy to clipboard" : "Kopier til udklipsholder",
|
"Copy to clipboard" : "Kopier til udklipsholder",
|
||||||
"Delete" : "Slet",
|
"Delete" : "Slet",
|
||||||
"Error" : "Fejl",
|
"Error" : "Fejl",
|
||||||
"Delete?" : "Slet?",
|
"Delete?" : "Slet?",
|
||||||
"Server error" : "Serverfejl",
|
"Server error" : "Serverfejl",
|
||||||
"moderator" : "moderator",
|
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Del",
|
|
||||||
"Loading" : "Indlæser",
|
"Loading" : "Indlæser",
|
||||||
"Settings saved" : "Indstillinger gemt"
|
"Settings saved" : "Indstillinger gemt"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
|
|
14
l10n/de.js
14
l10n/de.js
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
||||||
"Group" : "Gruppe",
|
"Group" : "Gruppe",
|
||||||
"Searching" : "Suche",
|
"Searching" : "Suche",
|
||||||
"No matches" : "Keine Übereinstimmungen",
|
"No matches" : "Keine Übereinstimmungen",
|
||||||
|
"admin" : "Administrator",
|
||||||
|
"moderator" : "Moderator",
|
||||||
|
"user" : "Benutzer",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -69,7 +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.",
|
"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.",
|
"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.",
|
"If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.",
|
"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.",
|
"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, 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.",
|
"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.",
|
||||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "Raum-URL",
|
"Room URL" : "Raum-URL",
|
||||||
"Welcome" : "Willkommen",
|
"Welcome" : "Willkommen",
|
||||||
"Participant limit" : "Teilnehmerbegrenzung",
|
"Participant limit" : "Teilnehmerbegrenzung",
|
||||||
|
"Sharing" : "Teilen",
|
||||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||||
"Miscellaneous" : "Verschiedenes",
|
"Miscellaneous" : "Verschiedenes",
|
||||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Der Besprechung stumm beitreten",
|
"Join meeting muted" : "Der Besprechung stumm beitreten",
|
||||||
"Room name" : "Raumname",
|
"Room name" : "Raumname",
|
||||||
"Create" : "Erstellen",
|
"Create" : "Erstellen",
|
||||||
|
"Published" : "Veröffentlicht",
|
||||||
"Open recording" : "Aufnahme öffnen",
|
"Open recording" : "Aufnahme öffnen",
|
||||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||||
"Save as file" : "Als Datei speichern",
|
"Save as file" : "Als Datei speichern",
|
||||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
||||||
"Delete?" : "Löschen?",
|
"Delete?" : "Löschen?",
|
||||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||||
"Server error" : "Serverfehler",
|
"Server error" : "Serverfehler",
|
||||||
"moderator" : "Moderator",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"admin" : "Administrator",
|
"Open room" : "Raum öffnen",
|
||||||
"Share" : "Teilen",
|
"Start" : "Start",
|
||||||
|
"Clone room" : "Raum duplizieren",
|
||||||
"Loading" : "Lade",
|
"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.",
|
"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",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
|
14
l10n/de.json
14
l10n/de.json
|
@ -54,6 +54,9 @@
|
||||||
"Group" : "Gruppe",
|
"Group" : "Gruppe",
|
||||||
"Searching" : "Suche",
|
"Searching" : "Suche",
|
||||||
"No matches" : "Keine Übereinstimmungen",
|
"No matches" : "Keine Übereinstimmungen",
|
||||||
|
"admin" : "Administrator",
|
||||||
|
"moderator" : "Moderator",
|
||||||
|
"user" : "Benutzer",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -67,7 +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.",
|
"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.",
|
"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.",
|
"If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.",
|
"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.",
|
"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, 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.",
|
"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.",
|
||||||
|
@ -80,6 +83,7 @@
|
||||||
"Room URL" : "Raum-URL",
|
"Room URL" : "Raum-URL",
|
||||||
"Welcome" : "Willkommen",
|
"Welcome" : "Willkommen",
|
||||||
"Participant limit" : "Teilnehmerbegrenzung",
|
"Participant limit" : "Teilnehmerbegrenzung",
|
||||||
|
"Sharing" : "Teilen",
|
||||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||||
"Miscellaneous" : "Verschiedenes",
|
"Miscellaneous" : "Verschiedenes",
|
||||||
|
@ -91,6 +95,7 @@
|
||||||
"Join meeting muted" : "Der Besprechung stumm beitreten",
|
"Join meeting muted" : "Der Besprechung stumm beitreten",
|
||||||
"Room name" : "Raumname",
|
"Room name" : "Raumname",
|
||||||
"Create" : "Erstellen",
|
"Create" : "Erstellen",
|
||||||
|
"Published" : "Veröffentlicht",
|
||||||
"Open recording" : "Aufnahme öffnen",
|
"Open recording" : "Aufnahme öffnen",
|
||||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||||
"Save as file" : "Als Datei speichern",
|
"Save as file" : "Als Datei speichern",
|
||||||
|
@ -109,9 +114,10 @@
|
||||||
"Delete?" : "Löschen?",
|
"Delete?" : "Löschen?",
|
||||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||||
"Server error" : "Serverfehler",
|
"Server error" : "Serverfehler",
|
||||||
"moderator" : "Moderator",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"admin" : "Administrator",
|
"Open room" : "Raum öffnen",
|
||||||
"Share" : "Teilen",
|
"Start" : "Start",
|
||||||
|
"Clone room" : "Raum duplizieren",
|
||||||
"Loading" : "Lade",
|
"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.",
|
"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",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
|
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
||||||
"Group" : "Gruppe",
|
"Group" : "Gruppe",
|
||||||
"Searching" : "Suche",
|
"Searching" : "Suche",
|
||||||
"No matches" : "Keine Übereinstimmungen",
|
"No matches" : "Keine Übereinstimmungen",
|
||||||
|
"admin" : "Administrator",
|
||||||
|
"moderator" : "Moderator",
|
||||||
|
"user" : "Benutzer",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -69,7 +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.",
|
"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.",
|
"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.",
|
"If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.",
|
"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.",
|
"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, 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.",
|
"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.",
|
||||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "Raum-URL",
|
"Room URL" : "Raum-URL",
|
||||||
"Welcome" : "Willkommen",
|
"Welcome" : "Willkommen",
|
||||||
"Participant limit" : "Teilnehmerbegrenzung",
|
"Participant limit" : "Teilnehmerbegrenzung",
|
||||||
|
"Sharing" : "Teilen",
|
||||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||||
"Miscellaneous" : "Verschiedenes",
|
"Miscellaneous" : "Verschiedenes",
|
||||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Besprechung stumm beitreten",
|
"Join meeting muted" : "Besprechung stumm beitreten",
|
||||||
"Room name" : "Raumname",
|
"Room name" : "Raumname",
|
||||||
"Create" : "Erstellen",
|
"Create" : "Erstellen",
|
||||||
|
"Published" : "Veröffentlicht",
|
||||||
"Open recording" : "Aufnahme öffnen",
|
"Open recording" : "Aufnahme öffnen",
|
||||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||||
"Save as file" : "Als Datei speichern",
|
"Save as file" : "Als Datei speichern",
|
||||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
||||||
"Delete?" : "Löschen?",
|
"Delete?" : "Löschen?",
|
||||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||||
"Server error" : "Serverfehler",
|
"Server error" : "Serverfehler",
|
||||||
"moderator" : "Moderator",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"admin" : "Administrator",
|
"Open room" : "Raum öffnen",
|
||||||
"Share" : "Teilen",
|
"Start" : "Start",
|
||||||
|
"Clone room" : "Raum duplizieren",
|
||||||
"Loading" : "Lade",
|
"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.",
|
"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",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
|
|
@ -54,6 +54,9 @@
|
||||||
"Group" : "Gruppe",
|
"Group" : "Gruppe",
|
||||||
"Searching" : "Suche",
|
"Searching" : "Suche",
|
||||||
"No matches" : "Keine Übereinstimmungen",
|
"No matches" : "Keine Übereinstimmungen",
|
||||||
|
"admin" : "Administrator",
|
||||||
|
"moderator" : "Moderator",
|
||||||
|
"user" : "Benutzer",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -67,7 +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.",
|
"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.",
|
"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.",
|
"If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.",
|
"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.",
|
"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, 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.",
|
"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.",
|
||||||
|
@ -80,6 +83,7 @@
|
||||||
"Room URL" : "Raum-URL",
|
"Room URL" : "Raum-URL",
|
||||||
"Welcome" : "Willkommen",
|
"Welcome" : "Willkommen",
|
||||||
"Participant limit" : "Teilnehmerbegrenzung",
|
"Participant limit" : "Teilnehmerbegrenzung",
|
||||||
|
"Sharing" : "Teilen",
|
||||||
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
"Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte",
|
||||||
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
"Moderator access via URL" : "Moderatorenzugriff über URL",
|
||||||
"Miscellaneous" : "Verschiedenes",
|
"Miscellaneous" : "Verschiedenes",
|
||||||
|
@ -91,6 +95,7 @@
|
||||||
"Join meeting muted" : "Besprechung stumm beitreten",
|
"Join meeting muted" : "Besprechung stumm beitreten",
|
||||||
"Room name" : "Raumname",
|
"Room name" : "Raumname",
|
||||||
"Create" : "Erstellen",
|
"Create" : "Erstellen",
|
||||||
|
"Published" : "Veröffentlicht",
|
||||||
"Open recording" : "Aufnahme öffnen",
|
"Open recording" : "Aufnahme öffnen",
|
||||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||||
"Save as file" : "Als Datei speichern",
|
"Save as file" : "Als Datei speichern",
|
||||||
|
@ -109,9 +114,10 @@
|
||||||
"Delete?" : "Löschen?",
|
"Delete?" : "Löschen?",
|
||||||
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
"Could not delete record" : "Aufnahme konnte nicht gelöscht werden",
|
||||||
"Server error" : "Serverfehler",
|
"Server error" : "Serverfehler",
|
||||||
"moderator" : "Moderator",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"admin" : "Administrator",
|
"Open room" : "Raum öffnen",
|
||||||
"Share" : "Teilen",
|
"Start" : "Start",
|
||||||
|
"Clone room" : "Raum duplizieren",
|
||||||
"Loading" : "Lade",
|
"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.",
|
"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",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
|
|
@ -47,6 +47,8 @@ OC.L10N.register(
|
||||||
"Group" : "Ομάδα",
|
"Group" : "Ομάδα",
|
||||||
"Searching" : "Αναζήτηση",
|
"Searching" : "Αναζήτηση",
|
||||||
"No matches" : "Καμιά αντιστοιχία",
|
"No matches" : "Καμιά αντιστοιχία",
|
||||||
|
"admin" : "διαχειριστής",
|
||||||
|
"moderator" : "συντονιστής",
|
||||||
"Name" : "Όνομα",
|
"Name" : "Όνομα",
|
||||||
"Access" : "Πρόσβαση",
|
"Access" : "Πρόσβαση",
|
||||||
"Max" : "Μέγιστο",
|
"Max" : "Μέγιστο",
|
||||||
|
@ -60,7 +62,6 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Μήνυμα που εμφανίζεται σε όλους τους χρήστες στην περιοχή συνομιλίας μετά την εγγραφή τους.",
|
"This message is shown to all users in the chat area after they joined." : "Μήνυμα που εμφανίζεται σε όλους τους χρήστες στην περιοχή συνομιλίας μετά την εγγραφή τους.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Ορίζει ένα όριο στον αριθμό των συμμετεχόντων σε αυτό το δωμάτιο. Το μηδέν σημαίνει χωρίς όριο.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Ορίζει ένα όριο στον αριθμό των συμμετεχόντων σε αυτό το δωμάτιο. Το μηδέν σημαίνει χωρίς όριο.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.",
|
"If enabled, the moderator is able to start the recording." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Δημόσιο: Όσοι γνωρίζουν τον σύνδεσμο μπορούν να συμμετάσχουν. Κωδικός πρόσβασης: Οι επισκέπτες πρέπει να δώσουν έναν κωδικό. Αίθουσα αναμονής: Ένας συντονιστής πρέπει να δεχτεί κάθε επισκέπτη πριν μπορέσει να συμμετάσχει. Εσωτερικά: Μόνο οι χρήστες Nextcloud μπορούν να συμμετάσχουν.",
|
|
||||||
"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." : "Ένας συντονιστής είναι σε θέση να διαχειριστεί όλους τους συμμετέχοντες σε μια σύσκεψη, συμπεριλαμβανομένων την αφαίρεση χρήστη, σίγασης ή επιλογής παρουσιαστή. Οι χρήστες με τον ρόλο του συντονιστή μπορούν επίσης να κλείσουν μια σύσκεψη ή να αλλάξουν τις προεπιλεγμένες ρυθμίσεις.",
|
"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." : "Ένας συντονιστής είναι σε θέση να διαχειριστεί όλους τους συμμετέχοντες σε μια σύσκεψη, συμπεριλαμβανομένων την αφαίρεση χρήστη, σίγασης ή επιλογής παρουσιαστή. Οι χρήστες με τον ρόλο του συντονιστή μπορούν επίσης να κλείσουν μια σύσκεψη ή να αλλάξουν τις προεπιλεγμένες ρυθμίσεις.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Εάν το ενεργοποιήσετε, οι χρήστες θα πρέπει να περιμένουν να συνδεθεί ένας διαχειριστής πριν συνδεθούν.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Εάν το ενεργοποιήσετε, οι χρήστες θα πρέπει να περιμένουν να συνδεθεί ένας διαχειριστής πριν συνδεθούν.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
||||||
|
@ -69,6 +70,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "URL αίθουσας",
|
"Room URL" : "URL αίθουσας",
|
||||||
"Welcome" : "Καλώς ήλθατε",
|
"Welcome" : "Καλώς ήλθατε",
|
||||||
"Participant limit" : "Όριο συμμετεχόντων",
|
"Participant limit" : "Όριο συμμετεχόντων",
|
||||||
|
"Sharing" : "Διαμοιρασμός",
|
||||||
"Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές",
|
"Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές",
|
||||||
"Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου",
|
"Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου",
|
||||||
"Miscellaneous" : "Διάφορα",
|
"Miscellaneous" : "Διάφορα",
|
||||||
|
@ -76,6 +78,7 @@ OC.L10N.register(
|
||||||
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
||||||
"Room name" : "Όνομα δωματίου",
|
"Room name" : "Όνομα δωματίου",
|
||||||
"Create" : "Δημιουργία",
|
"Create" : "Δημιουργία",
|
||||||
|
"Published" : "Δημοσιεύτηκε",
|
||||||
"Open recording" : "Άνοιγμα καταγραφής",
|
"Open recording" : "Άνοιγμα καταγραφής",
|
||||||
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
||||||
"Save as file" : "Αποθήκευση ως αρχείο",
|
"Save as file" : "Αποθήκευση ως αρχείο",
|
||||||
|
@ -92,9 +95,7 @@ OC.L10N.register(
|
||||||
"Delete?" : "Διαγραφή;",
|
"Delete?" : "Διαγραφή;",
|
||||||
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
||||||
"Server error" : "Σφάλμα διακομιστή",
|
"Server error" : "Σφάλμα διακομιστή",
|
||||||
"moderator" : "συντονιστής",
|
"Start" : "Έναρξη",
|
||||||
"admin" : "διαχειριστής",
|
|
||||||
"Share" : "Κοινή χρήση",
|
|
||||||
"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" : "Μέγιστα δωμάτια",
|
||||||
|
|
|
@ -45,6 +45,8 @@
|
||||||
"Group" : "Ομάδα",
|
"Group" : "Ομάδα",
|
||||||
"Searching" : "Αναζήτηση",
|
"Searching" : "Αναζήτηση",
|
||||||
"No matches" : "Καμιά αντιστοιχία",
|
"No matches" : "Καμιά αντιστοιχία",
|
||||||
|
"admin" : "διαχειριστής",
|
||||||
|
"moderator" : "συντονιστής",
|
||||||
"Name" : "Όνομα",
|
"Name" : "Όνομα",
|
||||||
"Access" : "Πρόσβαση",
|
"Access" : "Πρόσβαση",
|
||||||
"Max" : "Μέγιστο",
|
"Max" : "Μέγιστο",
|
||||||
|
@ -58,7 +60,6 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Μήνυμα που εμφανίζεται σε όλους τους χρήστες στην περιοχή συνομιλίας μετά την εγγραφή τους.",
|
"This message is shown to all users in the chat area after they joined." : "Μήνυμα που εμφανίζεται σε όλους τους χρήστες στην περιοχή συνομιλίας μετά την εγγραφή τους.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Ορίζει ένα όριο στον αριθμό των συμμετεχόντων σε αυτό το δωμάτιο. Το μηδέν σημαίνει χωρίς όριο.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Ορίζει ένα όριο στον αριθμό των συμμετεχόντων σε αυτό το δωμάτιο. Το μηδέν σημαίνει χωρίς όριο.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.",
|
"If enabled, the moderator is able to start the recording." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Δημόσιο: Όσοι γνωρίζουν τον σύνδεσμο μπορούν να συμμετάσχουν. Κωδικός πρόσβασης: Οι επισκέπτες πρέπει να δώσουν έναν κωδικό. Αίθουσα αναμονής: Ένας συντονιστής πρέπει να δεχτεί κάθε επισκέπτη πριν μπορέσει να συμμετάσχει. Εσωτερικά: Μόνο οι χρήστες Nextcloud μπορούν να συμμετάσχουν.",
|
|
||||||
"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." : "Ένας συντονιστής είναι σε θέση να διαχειριστεί όλους τους συμμετέχοντες σε μια σύσκεψη, συμπεριλαμβανομένων την αφαίρεση χρήστη, σίγασης ή επιλογής παρουσιαστή. Οι χρήστες με τον ρόλο του συντονιστή μπορούν επίσης να κλείσουν μια σύσκεψη ή να αλλάξουν τις προεπιλεγμένες ρυθμίσεις.",
|
"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." : "Ένας συντονιστής είναι σε θέση να διαχειριστεί όλους τους συμμετέχοντες σε μια σύσκεψη, συμπεριλαμβανομένων την αφαίρεση χρήστη, σίγασης ή επιλογής παρουσιαστή. Οι χρήστες με τον ρόλο του συντονιστή μπορούν επίσης να κλείσουν μια σύσκεψη ή να αλλάξουν τις προεπιλεγμένες ρυθμίσεις.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Εάν το ενεργοποιήσετε, οι χρήστες θα πρέπει να περιμένουν να συνδεθεί ένας διαχειριστής πριν συνδεθούν.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Εάν το ενεργοποιήσετε, οι χρήστες θα πρέπει να περιμένουν να συνδεθεί ένας διαχειριστής πριν συνδεθούν.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
||||||
|
@ -67,6 +68,7 @@
|
||||||
"Room URL" : "URL αίθουσας",
|
"Room URL" : "URL αίθουσας",
|
||||||
"Welcome" : "Καλώς ήλθατε",
|
"Welcome" : "Καλώς ήλθατε",
|
||||||
"Participant limit" : "Όριο συμμετεχόντων",
|
"Participant limit" : "Όριο συμμετεχόντων",
|
||||||
|
"Sharing" : "Διαμοιρασμός",
|
||||||
"Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές",
|
"Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές",
|
||||||
"Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου",
|
"Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου",
|
||||||
"Miscellaneous" : "Διάφορα",
|
"Miscellaneous" : "Διάφορα",
|
||||||
|
@ -74,6 +76,7 @@
|
||||||
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
||||||
"Room name" : "Όνομα δωματίου",
|
"Room name" : "Όνομα δωματίου",
|
||||||
"Create" : "Δημιουργία",
|
"Create" : "Δημιουργία",
|
||||||
|
"Published" : "Δημοσιεύτηκε",
|
||||||
"Open recording" : "Άνοιγμα καταγραφής",
|
"Open recording" : "Άνοιγμα καταγραφής",
|
||||||
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
||||||
"Save as file" : "Αποθήκευση ως αρχείο",
|
"Save as file" : "Αποθήκευση ως αρχείο",
|
||||||
|
@ -90,9 +93,7 @@
|
||||||
"Delete?" : "Διαγραφή;",
|
"Delete?" : "Διαγραφή;",
|
||||||
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
||||||
"Server error" : "Σφάλμα διακομιστή",
|
"Server error" : "Σφάλμα διακομιστή",
|
||||||
"moderator" : "συντονιστής",
|
"Start" : "Έναρξη",
|
||||||
"admin" : "διαχειριστής",
|
|
||||||
"Share" : "Κοινή χρήση",
|
|
||||||
"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" : "Μέγιστα δωμάτια",
|
||||||
|
|
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
||||||
"Group" : "Group",
|
"Group" : "Group",
|
||||||
"Searching" : "Searching",
|
"Searching" : "Searching",
|
||||||
"No matches" : "No matches",
|
"No matches" : "No matches",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
|
"user" : "user",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Access",
|
"Access" : "Access",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -69,7 +72,7 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
||||||
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.",
|
"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." : "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.",
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
||||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "Room URL",
|
"Room URL" : "Room URL",
|
||||||
"Welcome" : "Welcome",
|
"Welcome" : "Welcome",
|
||||||
"Participant limit" : "Participant limit",
|
"Participant limit" : "Participant limit",
|
||||||
|
"Sharing" : "Sharing",
|
||||||
"Every participant is moderator" : "Every participant is moderator",
|
"Every participant is moderator" : "Every participant is moderator",
|
||||||
"Moderator access via URL" : "Moderator access via URL",
|
"Moderator access via URL" : "Moderator access via URL",
|
||||||
"Miscellaneous" : "Miscellaneous",
|
"Miscellaneous" : "Miscellaneous",
|
||||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Join meeting muted",
|
"Join meeting muted" : "Join meeting muted",
|
||||||
"Room name" : "Room name",
|
"Room name" : "Room name",
|
||||||
"Create" : "Create",
|
"Create" : "Create",
|
||||||
|
"Published" : "Published",
|
||||||
"Open recording" : "Open recording",
|
"Open recording" : "Open recording",
|
||||||
"Copy to clipboard" : "Copy to clipboard",
|
"Copy to clipboard" : "Copy to clipboard",
|
||||||
"Save as file" : "Save as file",
|
"Save as file" : "Save as file",
|
||||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "Server error",
|
"Server error" : "Server error",
|
||||||
"moderator" : "moderator",
|
"Could not modify publishing state" : "Could not modify publishing state",
|
||||||
"admin" : "admin",
|
"Open room" : "Open room",
|
||||||
"Share" : "Share",
|
"Start" : "Start",
|
||||||
|
"Clone room" : "Clone room",
|
||||||
"Loading" : "Loading",
|
"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.",
|
"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",
|
"Max. rooms" : "Max. rooms",
|
||||||
|
|
|
@ -54,6 +54,9 @@
|
||||||
"Group" : "Group",
|
"Group" : "Group",
|
||||||
"Searching" : "Searching",
|
"Searching" : "Searching",
|
||||||
"No matches" : "No matches",
|
"No matches" : "No matches",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
|
"user" : "user",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Access",
|
"Access" : "Access",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -67,7 +70,7 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
||||||
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.",
|
"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." : "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.",
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
||||||
|
@ -80,6 +83,7 @@
|
||||||
"Room URL" : "Room URL",
|
"Room URL" : "Room URL",
|
||||||
"Welcome" : "Welcome",
|
"Welcome" : "Welcome",
|
||||||
"Participant limit" : "Participant limit",
|
"Participant limit" : "Participant limit",
|
||||||
|
"Sharing" : "Sharing",
|
||||||
"Every participant is moderator" : "Every participant is moderator",
|
"Every participant is moderator" : "Every participant is moderator",
|
||||||
"Moderator access via URL" : "Moderator access via URL",
|
"Moderator access via URL" : "Moderator access via URL",
|
||||||
"Miscellaneous" : "Miscellaneous",
|
"Miscellaneous" : "Miscellaneous",
|
||||||
|
@ -91,6 +95,7 @@
|
||||||
"Join meeting muted" : "Join meeting muted",
|
"Join meeting muted" : "Join meeting muted",
|
||||||
"Room name" : "Room name",
|
"Room name" : "Room name",
|
||||||
"Create" : "Create",
|
"Create" : "Create",
|
||||||
|
"Published" : "Published",
|
||||||
"Open recording" : "Open recording",
|
"Open recording" : "Open recording",
|
||||||
"Copy to clipboard" : "Copy to clipboard",
|
"Copy to clipboard" : "Copy to clipboard",
|
||||||
"Save as file" : "Save as file",
|
"Save as file" : "Save as file",
|
||||||
|
@ -109,9 +114,10 @@
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "Server error",
|
"Server error" : "Server error",
|
||||||
"moderator" : "moderator",
|
"Could not modify publishing state" : "Could not modify publishing state",
|
||||||
"admin" : "admin",
|
"Open room" : "Open room",
|
||||||
"Share" : "Share",
|
"Start" : "Start",
|
||||||
|
"Clone room" : "Clone room",
|
||||||
"Loading" : "Loading",
|
"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.",
|
"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",
|
"Max. rooms" : "Max. rooms",
|
||||||
|
|
|
@ -12,12 +12,13 @@ OC.L10N.register(
|
||||||
"Name" : "Nomo",
|
"Name" : "Nomo",
|
||||||
"Access" : "Aliro",
|
"Access" : "Aliro",
|
||||||
"Edit" : "Modifi",
|
"Edit" : "Modifi",
|
||||||
|
"Sharing" : "Kunhavigo",
|
||||||
"Create" : "Krei",
|
"Create" : "Krei",
|
||||||
"Copy to clipboard" : "Kopii tondejen",
|
"Copy to clipboard" : "Kopii tondejen",
|
||||||
"Delete" : "Forigi",
|
"Delete" : "Forigi",
|
||||||
"Error" : "Eraro",
|
"Error" : "Eraro",
|
||||||
"Server error" : "Eraro pri servilo",
|
"Server error" : "Eraro pri servilo",
|
||||||
"Share" : "Kunhavigi",
|
"Start" : "Komenco",
|
||||||
"Loading" : "Ŝargado",
|
"Loading" : "Ŝargado",
|
||||||
"Settings saved" : "Agordoj konservitaj"
|
"Settings saved" : "Agordoj konservitaj"
|
||||||
},
|
},
|
||||||
|
|
|
@ -10,12 +10,13 @@
|
||||||
"Name" : "Nomo",
|
"Name" : "Nomo",
|
||||||
"Access" : "Aliro",
|
"Access" : "Aliro",
|
||||||
"Edit" : "Modifi",
|
"Edit" : "Modifi",
|
||||||
|
"Sharing" : "Kunhavigo",
|
||||||
"Create" : "Krei",
|
"Create" : "Krei",
|
||||||
"Copy to clipboard" : "Kopii tondejen",
|
"Copy to clipboard" : "Kopii tondejen",
|
||||||
"Delete" : "Forigi",
|
"Delete" : "Forigi",
|
||||||
"Error" : "Eraro",
|
"Error" : "Eraro",
|
||||||
"Server error" : "Eraro pri servilo",
|
"Server error" : "Eraro pri servilo",
|
||||||
"Share" : "Kunhavigi",
|
"Start" : "Komenco",
|
||||||
"Loading" : "Ŝargado",
|
"Loading" : "Ŝargado",
|
||||||
"Settings saved" : "Agordoj konservitaj"
|
"Settings saved" : "Agordoj konservitaj"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
|
|
26
l10n/es.js
26
l10n/es.js
|
@ -33,8 +33,8 @@ OC.L10N.register(
|
||||||
"Show room manager in app navigation instead of settings page." : "Mostrar el gestor de salas en la navegación de la app en lugar de la página de configuración.",
|
"Show room manager in app navigation instead of settings page." : "Mostrar el gestor de salas en la navegación de la app en lugar de la página de configuración.",
|
||||||
"Use Nextcloud theme in BigBlueButton." : "Usar el tema de Nextcloud en BigBlueButton.",
|
"Use Nextcloud theme in BigBlueButton." : "Usar el tema de Nextcloud en BigBlueButton.",
|
||||||
"Default Room Settings" : "Ajustes por Defecto de la Sala",
|
"Default Room Settings" : "Ajustes por Defecto de la Sala",
|
||||||
"Below you can change some default values, which are used to create a new room." : "Abajo puedes cambiar algunos valores por defecto, que se usan para crear una nueva sala.",
|
"Below you can change some default values, which are used to create a new room." : "A continuación podrá cambiar algunos valores por defecto, que se usan para crear una nueva sala.",
|
||||||
"Perform media check before usage" : "Realizar comprobación multimedia antes de usar",
|
"Perform media check before usage" : "Realizar comprobación de medios antes de usar",
|
||||||
"Community" : "Comunidad",
|
"Community" : "Comunidad",
|
||||||
"Are you enjoying this app? Give something back to the open source community." : "¿Te gusta esta app? Devuelve algo a la comunidad de código abierto.",
|
"Are you enjoying this app? Give something back to the open source community." : "¿Te gusta esta app? Devuelve algo a la comunidad de código abierto.",
|
||||||
"Checkout the contributor guide" : "Consulte la guía para colaboradores",
|
"Checkout the contributor guide" : "Consulte la guía para colaboradores",
|
||||||
|
@ -50,12 +50,14 @@ OC.L10N.register(
|
||||||
"Display name" : "Mostrar nombre",
|
"Display name" : "Mostrar nombre",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Join" : "Unirse",
|
"Join" : "Unirse",
|
||||||
"Have an account? Log in." : "¿Tienes una cuenta? Entra.",
|
"Have an account? Log in." : "¿Tiene una cuenta? Inicie sesión.",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Name, group …" : "Nombre, grupo…",
|
"Name, group …" : "Nombre, grupo…",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Sin coincidencias",
|
"No matches" : "Sin coincidencias",
|
||||||
|
"admin" : "administrador",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx",
|
"Max" : "Máx",
|
||||||
|
@ -69,7 +71,7 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Este mensaje se mostrará todos los usuarios del área de conversación una vez que se hayan unido.",
|
"This message is shown to all users in the chat area after they joined." : "Este mensaje se mostrará todos los usuarios del área de conversación una vez que se hayan unido.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fija un límite al número de participantes de esta sala. Cero indica que no hay límite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fija un límite al número de participantes de esta sala. Cero indica que no hay límite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si se activa, el moderador será capaz de iniciar la grabación.",
|
"If enabled, the moderator is able to start the recording." : "Si se activa, el moderador será capaz de iniciar la grabación.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: cualquiera que conozca el enlace será capaz de unirse. Contraseña: los invitados necesitan una contraseña. Sala de espera: uno moderador debe aceptar a cada invitado antes de que pueda unirse. Interno: sólo los usuarios Nextcloud pueden unirse.",
|
"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." : "Explicación sobre los diferentes conceptos que constituyen opciones de acceso :<br>- Público: Cualquiera que tenga el enlace puede unirse.- <br>Interno: Solo los usuarios de Nextcloud pueden unirse.- <br>Contraseña: Solo aquellos invitados que tengan la contraseña podrán unirse..- <br>Sala de espera: Un moderador deberá aceptar a cada invitado para que este pueda unirse.- <br>Restringido : Solo los usuarios y grupos seleccionados podrán acceder a esta sala.",
|
||||||
"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." : "Un moderador tiene capacidad para gestionar a todos los participantes de una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el papel de moderador también son capaces de cerrar una reunión o cambiar los ajustes predeterminados.",
|
"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." : "Un moderador tiene capacidad para gestionar a todos los participantes de una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el papel de moderador también son capaces de cerrar una reunión o cambiar los ajustes predeterminados.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si está activo, los usuarios tendrán que esperar hasta que un moderador esté en la sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si está activo, los usuarios tendrán que esperar hasta que un moderador esté en la sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está activado, se genera una URL de moderador que permite acceder con permisos de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está activado, se genera una URL de moderador que permite acceder con permisos de moderador.",
|
||||||
|
@ -82,6 +84,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
|
"Sharing" : "Compartición",
|
||||||
"Every participant is moderator" : "Cada participante es un moderador",
|
"Every participant is moderator" : "Cada participante es un moderador",
|
||||||
"Moderator access via URL" : "Acceso como moderador vía URL",
|
"Moderator access via URL" : "Acceso como moderador vía URL",
|
||||||
"Miscellaneous" : "Varios",
|
"Miscellaneous" : "Varios",
|
||||||
|
@ -89,10 +92,11 @@ OC.L10N.register(
|
||||||
"Require moderator to start room" : "Requerir un moderador para iniciar la sala",
|
"Require moderator to start room" : "Requerir un moderador para iniciar la sala",
|
||||||
"Listen only option" : "Opción de solo escucha",
|
"Listen only option" : "Opción de solo escucha",
|
||||||
"Skip media check before usage" : "Saltar comprobación multimedia antes de usar",
|
"Skip media check before usage" : "Saltar comprobación multimedia antes de usar",
|
||||||
"Clean layout" : "Limpiar vista",
|
"Clean layout" : "Limpiar diseño",
|
||||||
"Join meeting muted" : "Entrar a la reunión silenciado",
|
"Join meeting muted" : "Entrar a la reunión silenciado",
|
||||||
"Room name" : "Nombre de la sala",
|
"Room name" : "Nombre de la sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Open recording" : "Abrir grabación",
|
"Open recording" : "Abrir grabación",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Save as file" : "Guardar como",
|
"Save as file" : "Guardar como",
|
||||||
|
@ -111,9 +115,7 @@ OC.L10N.register(
|
||||||
"Delete?" : "¿Eliminar?",
|
"Delete?" : "¿Eliminar?",
|
||||||
"Could not delete record" : "No se ha podido eliminar el registro",
|
"Could not delete record" : "No se ha podido eliminar el registro",
|
||||||
"Server error" : "Error en el servidor",
|
"Server error" : "Error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Iniciar",
|
||||||
"admin" : "administrador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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",
|
"Max. rooms" : "Máximo de salas",
|
||||||
|
@ -131,12 +133,12 @@ OC.L10N.register(
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "La URL tiene que comenzar con https:// y contener {token}. Adicionalmente, se puede usar el referente {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "La URL tiene que comenzar con https:// y contener {token}. Adicionalmente, se puede usar el referente {user}.",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se ha subido a su sala.",
|
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se ha subido a su sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "El archivo \"{filename}\" no se puede subir a su sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "El archivo \"{filename}\" no se puede subir a su sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El archivo \"{filename}\" no se puede subir a su sala. Puede que su servidor BigBlueButton no soporte esta acción.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El archivo \"{filename}\" no se podido subir a su sala. Puede que su servidor BigBlueButton no soporte esta acción.",
|
||||||
"Send file to BBB" : "Enviar a ...",
|
"Send file to BBB" : "Enviar archivo a BBB",
|
||||||
"Send to" : "Enviar a",
|
"Send to" : "Enviar a",
|
||||||
"Start with" : "Empezar con",
|
"Start with" : "Iniciar con",
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".",
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".",
|
||||||
"No rooms available!" : "No hay salas disponibles",
|
"No rooms available!" : "¡No hay salas disponibles!",
|
||||||
"Send to BBB" : "Enviar a BBB",
|
"Send to BBB" : "Enviar a BBB",
|
||||||
"_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundo. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera."]
|
"_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundo. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera."]
|
||||||
},
|
},
|
||||||
|
|
26
l10n/es.json
26
l10n/es.json
|
@ -31,8 +31,8 @@
|
||||||
"Show room manager in app navigation instead of settings page." : "Mostrar el gestor de salas en la navegación de la app en lugar de la página de configuración.",
|
"Show room manager in app navigation instead of settings page." : "Mostrar el gestor de salas en la navegación de la app en lugar de la página de configuración.",
|
||||||
"Use Nextcloud theme in BigBlueButton." : "Usar el tema de Nextcloud en BigBlueButton.",
|
"Use Nextcloud theme in BigBlueButton." : "Usar el tema de Nextcloud en BigBlueButton.",
|
||||||
"Default Room Settings" : "Ajustes por Defecto de la Sala",
|
"Default Room Settings" : "Ajustes por Defecto de la Sala",
|
||||||
"Below you can change some default values, which are used to create a new room." : "Abajo puedes cambiar algunos valores por defecto, que se usan para crear una nueva sala.",
|
"Below you can change some default values, which are used to create a new room." : "A continuación podrá cambiar algunos valores por defecto, que se usan para crear una nueva sala.",
|
||||||
"Perform media check before usage" : "Realizar comprobación multimedia antes de usar",
|
"Perform media check before usage" : "Realizar comprobación de medios antes de usar",
|
||||||
"Community" : "Comunidad",
|
"Community" : "Comunidad",
|
||||||
"Are you enjoying this app? Give something back to the open source community." : "¿Te gusta esta app? Devuelve algo a la comunidad de código abierto.",
|
"Are you enjoying this app? Give something back to the open source community." : "¿Te gusta esta app? Devuelve algo a la comunidad de código abierto.",
|
||||||
"Checkout the contributor guide" : "Consulte la guía para colaboradores",
|
"Checkout the contributor guide" : "Consulte la guía para colaboradores",
|
||||||
|
@ -48,12 +48,14 @@
|
||||||
"Display name" : "Mostrar nombre",
|
"Display name" : "Mostrar nombre",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Join" : "Unirse",
|
"Join" : "Unirse",
|
||||||
"Have an account? Log in." : "¿Tienes una cuenta? Entra.",
|
"Have an account? Log in." : "¿Tiene una cuenta? Inicie sesión.",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Name, group …" : "Nombre, grupo…",
|
"Name, group …" : "Nombre, grupo…",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Sin coincidencias",
|
"No matches" : "Sin coincidencias",
|
||||||
|
"admin" : "administrador",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx",
|
"Max" : "Máx",
|
||||||
|
@ -67,7 +69,7 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Este mensaje se mostrará todos los usuarios del área de conversación una vez que se hayan unido.",
|
"This message is shown to all users in the chat area after they joined." : "Este mensaje se mostrará todos los usuarios del área de conversación una vez que se hayan unido.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fija un límite al número de participantes de esta sala. Cero indica que no hay límite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fija un límite al número de participantes de esta sala. Cero indica que no hay límite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si se activa, el moderador será capaz de iniciar la grabación.",
|
"If enabled, the moderator is able to start the recording." : "Si se activa, el moderador será capaz de iniciar la grabación.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: cualquiera que conozca el enlace será capaz de unirse. Contraseña: los invitados necesitan una contraseña. Sala de espera: uno moderador debe aceptar a cada invitado antes de que pueda unirse. Interno: sólo los usuarios Nextcloud pueden unirse.",
|
"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." : "Explicación sobre los diferentes conceptos que constituyen opciones de acceso :<br>- Público: Cualquiera que tenga el enlace puede unirse.- <br>Interno: Solo los usuarios de Nextcloud pueden unirse.- <br>Contraseña: Solo aquellos invitados que tengan la contraseña podrán unirse..- <br>Sala de espera: Un moderador deberá aceptar a cada invitado para que este pueda unirse.- <br>Restringido : Solo los usuarios y grupos seleccionados podrán acceder a esta sala.",
|
||||||
"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." : "Un moderador tiene capacidad para gestionar a todos los participantes de una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el papel de moderador también son capaces de cerrar una reunión o cambiar los ajustes predeterminados.",
|
"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." : "Un moderador tiene capacidad para gestionar a todos los participantes de una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el papel de moderador también son capaces de cerrar una reunión o cambiar los ajustes predeterminados.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si está activo, los usuarios tendrán que esperar hasta que un moderador esté en la sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si está activo, los usuarios tendrán que esperar hasta que un moderador esté en la sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está activado, se genera una URL de moderador que permite acceder con permisos de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está activado, se genera una URL de moderador que permite acceder con permisos de moderador.",
|
||||||
|
@ -80,6 +82,7 @@
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
|
"Sharing" : "Compartición",
|
||||||
"Every participant is moderator" : "Cada participante es un moderador",
|
"Every participant is moderator" : "Cada participante es un moderador",
|
||||||
"Moderator access via URL" : "Acceso como moderador vía URL",
|
"Moderator access via URL" : "Acceso como moderador vía URL",
|
||||||
"Miscellaneous" : "Varios",
|
"Miscellaneous" : "Varios",
|
||||||
|
@ -87,10 +90,11 @@
|
||||||
"Require moderator to start room" : "Requerir un moderador para iniciar la sala",
|
"Require moderator to start room" : "Requerir un moderador para iniciar la sala",
|
||||||
"Listen only option" : "Opción de solo escucha",
|
"Listen only option" : "Opción de solo escucha",
|
||||||
"Skip media check before usage" : "Saltar comprobación multimedia antes de usar",
|
"Skip media check before usage" : "Saltar comprobación multimedia antes de usar",
|
||||||
"Clean layout" : "Limpiar vista",
|
"Clean layout" : "Limpiar diseño",
|
||||||
"Join meeting muted" : "Entrar a la reunión silenciado",
|
"Join meeting muted" : "Entrar a la reunión silenciado",
|
||||||
"Room name" : "Nombre de la sala",
|
"Room name" : "Nombre de la sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Open recording" : "Abrir grabación",
|
"Open recording" : "Abrir grabación",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Save as file" : "Guardar como",
|
"Save as file" : "Guardar como",
|
||||||
|
@ -109,9 +113,7 @@
|
||||||
"Delete?" : "¿Eliminar?",
|
"Delete?" : "¿Eliminar?",
|
||||||
"Could not delete record" : "No se ha podido eliminar el registro",
|
"Could not delete record" : "No se ha podido eliminar el registro",
|
||||||
"Server error" : "Error en el servidor",
|
"Server error" : "Error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Iniciar",
|
||||||
"admin" : "administrador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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",
|
"Max. rooms" : "Máximo de salas",
|
||||||
|
@ -129,12 +131,12 @@
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "La URL tiene que comenzar con https:// y contener {token}. Adicionalmente, se puede usar el referente {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "La URL tiene que comenzar con https:// y contener {token}. Adicionalmente, se puede usar el referente {user}.",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se ha subido a su sala.",
|
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se ha subido a su sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "El archivo \"{filename}\" no se puede subir a su sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "El archivo \"{filename}\" no se puede subir a su sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El archivo \"{filename}\" no se puede subir a su sala. Puede que su servidor BigBlueButton no soporte esta acción.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El archivo \"{filename}\" no se podido subir a su sala. Puede que su servidor BigBlueButton no soporte esta acción.",
|
||||||
"Send file to BBB" : "Enviar a ...",
|
"Send file to BBB" : "Enviar archivo a BBB",
|
||||||
"Send to" : "Enviar a",
|
"Send to" : "Enviar a",
|
||||||
"Start with" : "Empezar con",
|
"Start with" : "Iniciar con",
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".",
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".",
|
||||||
"No rooms available!" : "No hay salas disponibles",
|
"No rooms available!" : "¡No hay salas disponibles!",
|
||||||
"Send to BBB" : "Enviar a BBB",
|
"Send to BBB" : "Enviar a BBB",
|
||||||
"_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundo. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera."]
|
"_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundo. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera.","Esta sala todavía no está abierta. Volveremos a intentarlo en %n segundos. Por favor, espera."]
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,18 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -12,12 +12,12 @@ OC.L10N.register(
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Eliminar",
|
"Delete" : "Eliminar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Configuraciones guardadas"
|
"Settings saved" : "Configuraciones guardadas"
|
||||||
},
|
},
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Eliminar",
|
"Delete" : "Eliminar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Configuraciones guardadas"
|
"Settings saved" : "Configuraciones guardadas"
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Sin coincidencias",
|
"No matches" : "Sin coincidencias",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx.",
|
"Max" : "Máx.",
|
||||||
|
@ -69,7 +71,6 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Este mensaje se muestra a todos los usuarios en el área de chat después de unirse.",
|
"This message is shown to all users in the chat area after they joined." : "Este mensaje se muestra a todos los usuarios en el área de chat después de unirse.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Establece un límite en el número de participantes para esta sala. Cero significa que no hay límite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Establece un límite en el número de participantes para esta sala. Cero significa que no hay límite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si está habilitado, el moderador puede iniciar la grabación.",
|
"If enabled, the moderator is able to start the recording." : "Si está habilitado, el moderador puede iniciar la grabación.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: Cualquiera que conozca el enlace puede unirse. Contraseña: Los invitados deben proporcionar una contraseña. Sala de espera: Un moderador debe aceptar a cada invitado antes de que puedan unirse. Interna: Solo los usuarios de Nextcloud pueden unirse.",
|
|
||||||
"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." : "Un moderador puede gestionar a todos los participantes en una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el rol de moderador también pueden cerrar una reunión o cambiar la configuración predeterminada.",
|
"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." : "Un moderador puede gestionar a todos los participantes en una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el rol de moderador también pueden cerrar una reunión o cambiar la configuración predeterminada.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si está habilitado, los usuarios normales deben esperar hasta que haya un moderador en la sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si está habilitado, los usuarios normales deben esperar hasta que haya un moderador en la sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está habilitado, se genera una URL de moderador que permite el acceso con permisos de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está habilitado, se genera una URL de moderador que permite el acceso con permisos de moderador.",
|
||||||
|
@ -82,6 +83,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Every participant is moderator" : "Cada participante es moderador",
|
"Every participant is moderator" : "Cada participante es moderador",
|
||||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||||
"Miscellaneous" : "Varios",
|
"Miscellaneous" : "Varios",
|
||||||
|
@ -93,6 +95,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Unirse a la reunión con el sonido desactivado",
|
"Join meeting muted" : "Unirse a la reunión con el sonido desactivado",
|
||||||
"Room name" : "Nombre de la sala",
|
"Room name" : "Nombre de la sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Open recording" : "Abrir grabación",
|
"Open recording" : "Abrir grabación",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Save as file" : "Guardar como archivo",
|
"Save as file" : "Guardar como archivo",
|
||||||
|
@ -111,9 +114,6 @@ OC.L10N.register(
|
||||||
"Delete?" : "¿Eliminar?",
|
"Delete?" : "¿Eliminar?",
|
||||||
"Could not delete record" : "No se pudo eliminar el registro",
|
"Could not delete record" : "No se pudo eliminar el registro",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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",
|
"Max. rooms" : "Máx. salas",
|
||||||
|
|
|
@ -54,6 +54,8 @@
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Sin coincidencias",
|
"No matches" : "Sin coincidencias",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx.",
|
"Max" : "Máx.",
|
||||||
|
@ -67,7 +69,6 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Este mensaje se muestra a todos los usuarios en el área de chat después de unirse.",
|
"This message is shown to all users in the chat area after they joined." : "Este mensaje se muestra a todos los usuarios en el área de chat después de unirse.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Establece un límite en el número de participantes para esta sala. Cero significa que no hay límite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Establece un límite en el número de participantes para esta sala. Cero significa que no hay límite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si está habilitado, el moderador puede iniciar la grabación.",
|
"If enabled, the moderator is able to start the recording." : "Si está habilitado, el moderador puede iniciar la grabación.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: Cualquiera que conozca el enlace puede unirse. Contraseña: Los invitados deben proporcionar una contraseña. Sala de espera: Un moderador debe aceptar a cada invitado antes de que puedan unirse. Interna: Solo los usuarios de Nextcloud pueden unirse.",
|
|
||||||
"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." : "Un moderador puede gestionar a todos los participantes en una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el rol de moderador también pueden cerrar una reunión o cambiar la configuración predeterminada.",
|
"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." : "Un moderador puede gestionar a todos los participantes en una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el rol de moderador también pueden cerrar una reunión o cambiar la configuración predeterminada.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si está habilitado, los usuarios normales deben esperar hasta que haya un moderador en la sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si está habilitado, los usuarios normales deben esperar hasta que haya un moderador en la sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está habilitado, se genera una URL de moderador que permite el acceso con permisos de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está habilitado, se genera una URL de moderador que permite el acceso con permisos de moderador.",
|
||||||
|
@ -80,6 +81,7 @@
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Every participant is moderator" : "Cada participante es moderador",
|
"Every participant is moderator" : "Cada participante es moderador",
|
||||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||||
"Miscellaneous" : "Varios",
|
"Miscellaneous" : "Varios",
|
||||||
|
@ -91,6 +93,7 @@
|
||||||
"Join meeting muted" : "Unirse a la reunión con el sonido desactivado",
|
"Join meeting muted" : "Unirse a la reunión con el sonido desactivado",
|
||||||
"Room name" : "Nombre de la sala",
|
"Room name" : "Nombre de la sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Open recording" : "Abrir grabación",
|
"Open recording" : "Abrir grabación",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Save as file" : "Guardar como archivo",
|
"Save as file" : "Guardar como archivo",
|
||||||
|
@ -109,9 +112,6 @@
|
||||||
"Delete?" : "¿Eliminar?",
|
"Delete?" : "¿Eliminar?",
|
||||||
"Could not delete record" : "No se pudo eliminar el registro",
|
"Could not delete record" : "No se pudo eliminar el registro",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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",
|
"Max. rooms" : "Máx. salas",
|
||||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,18 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -9,18 +9,21 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
|
"Miscellaneous" : "Misceláneo",
|
||||||
"Room name" : "Nombre del cuarto",
|
"Room name" : "Nombre del cuarto",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,18 +7,21 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
|
"Miscellaneous" : "Misceláneo",
|
||||||
"Room name" : "Nombre del cuarto",
|
"Room name" : "Nombre del cuarto",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,18 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,18 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,18 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,18 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,18 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
"Start" : "Inicio",
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -7,17 +7,17 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,17 +5,17 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"moderator" : "moderador",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
|
"Sharing" : "Compartiendo",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Copy to clipboard" : "Copiar al portapapeles",
|
"Copy to clipboard" : "Copiar al portapapeles",
|
||||||
"Delete" : "Borrar",
|
"Delete" : "Borrar",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Server error" : "Se presentó un error en el servidor",
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"moderator" : "moderador",
|
|
||||||
"Share" : "Compartir",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
|
|
|
@ -10,12 +10,13 @@ OC.L10N.register(
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Ligipääs",
|
"Access" : "Ligipääs",
|
||||||
"Edit" : "Redigeeri",
|
"Edit" : "Redigeeri",
|
||||||
|
"Sharing" : "Jagamine",
|
||||||
"Create" : "Loo",
|
"Create" : "Loo",
|
||||||
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
|
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
|
||||||
"Delete" : "Kustuta",
|
"Delete" : "Kustuta",
|
||||||
"Error" : "Viga",
|
"Error" : "Viga",
|
||||||
"Server error" : "Serveri tõrge",
|
"Server error" : "Serveri tõrge",
|
||||||
"Share" : "Jaga",
|
"Start" : "Algus",
|
||||||
"Loading" : "Laadimine",
|
"Loading" : "Laadimine",
|
||||||
"Settings saved" : "Seaded salvestatud"
|
"Settings saved" : "Seaded salvestatud"
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,12 +8,13 @@
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Ligipääs",
|
"Access" : "Ligipääs",
|
||||||
"Edit" : "Redigeeri",
|
"Edit" : "Redigeeri",
|
||||||
|
"Sharing" : "Jagamine",
|
||||||
"Create" : "Loo",
|
"Create" : "Loo",
|
||||||
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
|
"Copy to clipboard" : "Kopeeri lõikepuhvrisse",
|
||||||
"Delete" : "Kustuta",
|
"Delete" : "Kustuta",
|
||||||
"Error" : "Viga",
|
"Error" : "Viga",
|
||||||
"Server error" : "Serveri tõrge",
|
"Server error" : "Serveri tõrge",
|
||||||
"Share" : "Jaga",
|
"Start" : "Algus",
|
||||||
"Loading" : "Laadimine",
|
"Loading" : "Laadimine",
|
||||||
"Settings saved" : "Seaded salvestatud"
|
"Settings saved" : "Seaded salvestatud"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
|
|
11
l10n/eu.js
11
l10n/eu.js
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
||||||
"Group" : "Taldea",
|
"Group" : "Taldea",
|
||||||
"Searching" : "BIlatzen",
|
"Searching" : "BIlatzen",
|
||||||
"No matches" : "Ez dago bat datorrenik",
|
"No matches" : "Ez dago bat datorrenik",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderatzailea",
|
||||||
|
"user" : "erabiltzailea",
|
||||||
"Name" : "Izena",
|
"Name" : "Izena",
|
||||||
"Access" : "Sarbidea",
|
"Access" : "Sarbidea",
|
||||||
"Max" : "Maximoa",
|
"Max" : "Maximoa",
|
||||||
|
@ -69,7 +72,7 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Mezu hau erabiltzaile guztiek ikusten dute txatean sartu ostean.",
|
"This message is shown to all users in the chat area after they joined." : "Mezu hau erabiltzaile guztiek ikusten dute txatean sartu ostean.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Gela honetako partaide kopuruari muga jartzea. Zero jartzeak mugarik ez dagoela esan nahi du.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Gela honetako partaide kopuruari muga jartzea. Zero jartzeak mugarik ez dagoela esan nahi du.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Gaituz gero, moderatzaileak grabatzeko aukera du.",
|
"If enabled, the moderator is able to start the recording." : "Gaituz gero, moderatzaileak grabatzeko aukera du.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publikoa: esteka daukan edonor sar daiteke bileran. Pasahitza: gonbidatuak pasahitza sartu behar du. Itxarongela: moderatzaileak banaka onartu behar ditu gonbidatuak, bileran sar daitezen. Barnekoa: Nextcloud erabiltzaileak bakarrik sar daitezke.",
|
"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." : "Sarbide-aukerak osatzen dituzten kontzeptu ezberdinen azalpena: <br>- Publikoa: Esteka duen edonor sartu daiteke.- <br>Barnekoa: Nextcloud-eko erabiltzaileak bakarrik sartu daitezke.- <br>Pasahitza: Pasahitza duten gonbidatuak bakarrik sartu daitezke.- <br>Itxaron-gela: Moderatzaile batek gonbidatu bakoitza onartu behar du sartu baino lehen.- <br>Murriztua : hautatutako erabiltzaile eta taldeek bakarrik sar daitezke gela honetara.",
|
||||||
"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." : "Moderatzaileak baimena dauka gainerako partaideak kudeatzeko, kanporatzeko, mututzeko edo aurkezle bat hautatzeko. Moderatzaile rola duten erabiltzaileak gai dira bilera itxi edo ezarpen lehenetsiak aldatzeko ere.",
|
"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." : "Moderatzaileak baimena dauka gainerako partaideak kudeatzeko, kanporatzeko, mututzeko edo aurkezle bat hautatzeko. Moderatzaile rola duten erabiltzaileak gai dira bilera itxi edo ezarpen lehenetsiak aldatzeko ere.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Gaituz gero, erabiltzaile arruntek itxaron egin behar dute moderatzaile bat gelara iritsi arte.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Gaituz gero, erabiltzaile arruntek itxaron egin behar dute moderatzaile bat gelara iritsi arte.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Gaituta badago, moderatzaile baimenarekin sartzeko aukera ematen duen moderatzaile URL bat sortzen da.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Gaituta badago, moderatzaile baimenarekin sartzeko aukera ematen duen moderatzaile URL bat sortzen da.",
|
||||||
|
@ -82,6 +85,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "Gelaren URLa",
|
"Room URL" : "Gelaren URLa",
|
||||||
"Welcome" : "Ongi etorri",
|
"Welcome" : "Ongi etorri",
|
||||||
"Participant limit" : "Partaideen muga",
|
"Participant limit" : "Partaideen muga",
|
||||||
|
"Sharing" : "Partekatzea",
|
||||||
"Every participant is moderator" : "Partaide guztiak dira moderatzaile",
|
"Every participant is moderator" : "Partaide guztiak dira moderatzaile",
|
||||||
"Moderator access via URL" : "Moderatzailearen sarbidea URL bidez",
|
"Moderator access via URL" : "Moderatzailearen sarbidea URL bidez",
|
||||||
"Miscellaneous" : "Askotarikoa",
|
"Miscellaneous" : "Askotarikoa",
|
||||||
|
@ -93,6 +97,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Sartu bileran mutu",
|
"Join meeting muted" : "Sartu bileran mutu",
|
||||||
"Room name" : "Gelaren izena",
|
"Room name" : "Gelaren izena",
|
||||||
"Create" : "Sortu",
|
"Create" : "Sortu",
|
||||||
|
"Published" : "Argitaratuta",
|
||||||
"Open recording" : "Ireki grabaketa",
|
"Open recording" : "Ireki grabaketa",
|
||||||
"Copy to clipboard" : "Kopiatu arbelera",
|
"Copy to clipboard" : "Kopiatu arbelera",
|
||||||
"Save as file" : "Gorde fitxategi moduan",
|
"Save as file" : "Gorde fitxategi moduan",
|
||||||
|
@ -111,9 +116,7 @@ OC.L10N.register(
|
||||||
"Delete?" : "Ezabatu?",
|
"Delete?" : "Ezabatu?",
|
||||||
"Could not delete record" : "Ezin izan da grabazioa ezabatu",
|
"Could not delete record" : "Ezin izan da grabazioa ezabatu",
|
||||||
"Server error" : "Zerbitzari akatsa",
|
"Server error" : "Zerbitzari akatsa",
|
||||||
"moderator" : "moderatzailea",
|
"Start" : "Hasiera",
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Partekatu",
|
|
||||||
"Loading" : "Kargatzen",
|
"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.",
|
"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.",
|
"Max. rooms" : "Gela max.",
|
||||||
|
|
11
l10n/eu.json
11
l10n/eu.json
|
@ -54,6 +54,9 @@
|
||||||
"Group" : "Taldea",
|
"Group" : "Taldea",
|
||||||
"Searching" : "BIlatzen",
|
"Searching" : "BIlatzen",
|
||||||
"No matches" : "Ez dago bat datorrenik",
|
"No matches" : "Ez dago bat datorrenik",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderatzailea",
|
||||||
|
"user" : "erabiltzailea",
|
||||||
"Name" : "Izena",
|
"Name" : "Izena",
|
||||||
"Access" : "Sarbidea",
|
"Access" : "Sarbidea",
|
||||||
"Max" : "Maximoa",
|
"Max" : "Maximoa",
|
||||||
|
@ -67,7 +70,7 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Mezu hau erabiltzaile guztiek ikusten dute txatean sartu ostean.",
|
"This message is shown to all users in the chat area after they joined." : "Mezu hau erabiltzaile guztiek ikusten dute txatean sartu ostean.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Gela honetako partaide kopuruari muga jartzea. Zero jartzeak mugarik ez dagoela esan nahi du.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Gela honetako partaide kopuruari muga jartzea. Zero jartzeak mugarik ez dagoela esan nahi du.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Gaituz gero, moderatzaileak grabatzeko aukera du.",
|
"If enabled, the moderator is able to start the recording." : "Gaituz gero, moderatzaileak grabatzeko aukera du.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publikoa: esteka daukan edonor sar daiteke bileran. Pasahitza: gonbidatuak pasahitza sartu behar du. Itxarongela: moderatzaileak banaka onartu behar ditu gonbidatuak, bileran sar daitezen. Barnekoa: Nextcloud erabiltzaileak bakarrik sar daitezke.",
|
"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." : "Sarbide-aukerak osatzen dituzten kontzeptu ezberdinen azalpena: <br>- Publikoa: Esteka duen edonor sartu daiteke.- <br>Barnekoa: Nextcloud-eko erabiltzaileak bakarrik sartu daitezke.- <br>Pasahitza: Pasahitza duten gonbidatuak bakarrik sartu daitezke.- <br>Itxaron-gela: Moderatzaile batek gonbidatu bakoitza onartu behar du sartu baino lehen.- <br>Murriztua : hautatutako erabiltzaile eta taldeek bakarrik sar daitezke gela honetara.",
|
||||||
"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." : "Moderatzaileak baimena dauka gainerako partaideak kudeatzeko, kanporatzeko, mututzeko edo aurkezle bat hautatzeko. Moderatzaile rola duten erabiltzaileak gai dira bilera itxi edo ezarpen lehenetsiak aldatzeko ere.",
|
"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." : "Moderatzaileak baimena dauka gainerako partaideak kudeatzeko, kanporatzeko, mututzeko edo aurkezle bat hautatzeko. Moderatzaile rola duten erabiltzaileak gai dira bilera itxi edo ezarpen lehenetsiak aldatzeko ere.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Gaituz gero, erabiltzaile arruntek itxaron egin behar dute moderatzaile bat gelara iritsi arte.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Gaituz gero, erabiltzaile arruntek itxaron egin behar dute moderatzaile bat gelara iritsi arte.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Gaituta badago, moderatzaile baimenarekin sartzeko aukera ematen duen moderatzaile URL bat sortzen da.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Gaituta badago, moderatzaile baimenarekin sartzeko aukera ematen duen moderatzaile URL bat sortzen da.",
|
||||||
|
@ -80,6 +83,7 @@
|
||||||
"Room URL" : "Gelaren URLa",
|
"Room URL" : "Gelaren URLa",
|
||||||
"Welcome" : "Ongi etorri",
|
"Welcome" : "Ongi etorri",
|
||||||
"Participant limit" : "Partaideen muga",
|
"Participant limit" : "Partaideen muga",
|
||||||
|
"Sharing" : "Partekatzea",
|
||||||
"Every participant is moderator" : "Partaide guztiak dira moderatzaile",
|
"Every participant is moderator" : "Partaide guztiak dira moderatzaile",
|
||||||
"Moderator access via URL" : "Moderatzailearen sarbidea URL bidez",
|
"Moderator access via URL" : "Moderatzailearen sarbidea URL bidez",
|
||||||
"Miscellaneous" : "Askotarikoa",
|
"Miscellaneous" : "Askotarikoa",
|
||||||
|
@ -91,6 +95,7 @@
|
||||||
"Join meeting muted" : "Sartu bileran mutu",
|
"Join meeting muted" : "Sartu bileran mutu",
|
||||||
"Room name" : "Gelaren izena",
|
"Room name" : "Gelaren izena",
|
||||||
"Create" : "Sortu",
|
"Create" : "Sortu",
|
||||||
|
"Published" : "Argitaratuta",
|
||||||
"Open recording" : "Ireki grabaketa",
|
"Open recording" : "Ireki grabaketa",
|
||||||
"Copy to clipboard" : "Kopiatu arbelera",
|
"Copy to clipboard" : "Kopiatu arbelera",
|
||||||
"Save as file" : "Gorde fitxategi moduan",
|
"Save as file" : "Gorde fitxategi moduan",
|
||||||
|
@ -109,9 +114,7 @@
|
||||||
"Delete?" : "Ezabatu?",
|
"Delete?" : "Ezabatu?",
|
||||||
"Could not delete record" : "Ezin izan da grabazioa ezabatu",
|
"Could not delete record" : "Ezin izan da grabazioa ezabatu",
|
||||||
"Server error" : "Zerbitzari akatsa",
|
"Server error" : "Zerbitzari akatsa",
|
||||||
"moderator" : "moderatzailea",
|
"Start" : "Hasiera",
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Partekatu",
|
|
||||||
"Loading" : "Kargatzen",
|
"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.",
|
"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.",
|
"Max. rooms" : "Gela max.",
|
||||||
|
|
10
l10n/fa.js
10
l10n/fa.js
|
@ -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.",
|
"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" : "BigBlueButton Integration",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud",
|
"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" : "اتاق یافت نشد",
|
"Room not found" : "اتاق یافت نشد",
|
||||||
"The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟",
|
"The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟",
|
||||||
"Back to %s" : "Back to %s",
|
"Back to %s" : "Back to %s",
|
||||||
|
@ -56,6 +55,8 @@ OC.L10N.register(
|
||||||
"Group" : "گروه",
|
"Group" : "گروه",
|
||||||
"Searching" : "Searching",
|
"Searching" : "Searching",
|
||||||
"No matches" : "No matches",
|
"No matches" : "No matches",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
"Name" : "نام",
|
"Name" : "نام",
|
||||||
"Access" : "دسترسی",
|
"Access" : "دسترسی",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -69,7 +70,6 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
||||||
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.",
|
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
||||||
|
@ -82,6 +82,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "Room URL",
|
"Room URL" : "Room URL",
|
||||||
"Welcome" : "خوش آمدی",
|
"Welcome" : "خوش آمدی",
|
||||||
"Participant limit" : "Participant limit",
|
"Participant limit" : "Participant limit",
|
||||||
|
"Sharing" : "همرسانی",
|
||||||
"Every participant is moderator" : "Every participant is moderator",
|
"Every participant is moderator" : "Every participant is moderator",
|
||||||
"Moderator access via URL" : "Moderator access via URL",
|
"Moderator access via URL" : "Moderator access via URL",
|
||||||
"Miscellaneous" : "متفرقه",
|
"Miscellaneous" : "متفرقه",
|
||||||
|
@ -93,6 +94,7 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Join meeting muted",
|
"Join meeting muted" : "Join meeting muted",
|
||||||
"Room name" : "Room name",
|
"Room name" : "Room name",
|
||||||
"Create" : "ایجاد شده",
|
"Create" : "ایجاد شده",
|
||||||
|
"Published" : "منتشر شده",
|
||||||
"Open recording" : "Open recording",
|
"Open recording" : "Open recording",
|
||||||
"Copy to clipboard" : "کپی کردن به حافظه موقت",
|
"Copy to clipboard" : "کپی کردن به حافظه موقت",
|
||||||
"Save as file" : "Save as file",
|
"Save as file" : "Save as file",
|
||||||
|
@ -111,9 +113,7 @@ OC.L10N.register(
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "خطای سرور",
|
"Server error" : "خطای سرور",
|
||||||
"moderator" : "moderator",
|
"Start" : "شروع",
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "همرسانی",
|
|
||||||
"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.",
|
"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",
|
"Max. rooms" : "Max. rooms",
|
||||||
|
|
10
l10n/fa.json
10
l10n/fa.json
|
@ -20,7 +20,6 @@
|
||||||
"API URL or secret not configured. Please contact your administrator." : "API URL or secret not configured. Please contact your administrator.",
|
"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" : "BigBlueButton Integration",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud",
|
"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" : "اتاق یافت نشد",
|
"Room not found" : "اتاق یافت نشد",
|
||||||
"The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟",
|
"The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟",
|
||||||
"Back to %s" : "Back to %s",
|
"Back to %s" : "Back to %s",
|
||||||
|
@ -54,6 +53,8 @@
|
||||||
"Group" : "گروه",
|
"Group" : "گروه",
|
||||||
"Searching" : "Searching",
|
"Searching" : "Searching",
|
||||||
"No matches" : "No matches",
|
"No matches" : "No matches",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
"Name" : "نام",
|
"Name" : "نام",
|
||||||
"Access" : "دسترسی",
|
"Access" : "دسترسی",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -67,7 +68,6 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
"This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.",
|
||||||
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
"If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.",
|
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "If enabled, normal users have to wait until a moderator is in the room.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "If enabled, a moderator URL is generated which allows access with moderator permission.",
|
||||||
|
@ -80,6 +80,7 @@
|
||||||
"Room URL" : "Room URL",
|
"Room URL" : "Room URL",
|
||||||
"Welcome" : "خوش آمدی",
|
"Welcome" : "خوش آمدی",
|
||||||
"Participant limit" : "Participant limit",
|
"Participant limit" : "Participant limit",
|
||||||
|
"Sharing" : "همرسانی",
|
||||||
"Every participant is moderator" : "Every participant is moderator",
|
"Every participant is moderator" : "Every participant is moderator",
|
||||||
"Moderator access via URL" : "Moderator access via URL",
|
"Moderator access via URL" : "Moderator access via URL",
|
||||||
"Miscellaneous" : "متفرقه",
|
"Miscellaneous" : "متفرقه",
|
||||||
|
@ -91,6 +92,7 @@
|
||||||
"Join meeting muted" : "Join meeting muted",
|
"Join meeting muted" : "Join meeting muted",
|
||||||
"Room name" : "Room name",
|
"Room name" : "Room name",
|
||||||
"Create" : "ایجاد شده",
|
"Create" : "ایجاد شده",
|
||||||
|
"Published" : "منتشر شده",
|
||||||
"Open recording" : "Open recording",
|
"Open recording" : "Open recording",
|
||||||
"Copy to clipboard" : "کپی کردن به حافظه موقت",
|
"Copy to clipboard" : "کپی کردن به حافظه موقت",
|
||||||
"Save as file" : "Save as file",
|
"Save as file" : "Save as file",
|
||||||
|
@ -109,9 +111,7 @@
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "خطای سرور",
|
"Server error" : "خطای سرور",
|
||||||
"moderator" : "moderator",
|
"Start" : "شروع",
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "همرسانی",
|
|
||||||
"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.",
|
"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",
|
"Max. rooms" : "Max. rooms",
|
||||||
|
|
|
@ -41,6 +41,7 @@ OC.L10N.register(
|
||||||
"Name, group …" : "Nimi, ryhmä…",
|
"Name, group …" : "Nimi, ryhmä…",
|
||||||
"Group" : "Ryhmä",
|
"Group" : "Ryhmä",
|
||||||
"No matches" : "Ei täsmääviä",
|
"No matches" : "Ei täsmääviä",
|
||||||
|
"moderator" : "moderaattori",
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Käyttöoikeudet",
|
"Access" : "Käyttöoikeudet",
|
||||||
"Max" : "Enintään",
|
"Max" : "Enintään",
|
||||||
|
@ -55,10 +56,12 @@ OC.L10N.register(
|
||||||
"Room URL" : "Huoneen URL-osoite",
|
"Room URL" : "Huoneen URL-osoite",
|
||||||
"Welcome" : "Tervetuloa",
|
"Welcome" : "Tervetuloa",
|
||||||
"Participant limit" : "Osallistujaraja",
|
"Participant limit" : "Osallistujaraja",
|
||||||
|
"Sharing" : "Jakaminen",
|
||||||
"Miscellaneous" : "Sekalaiset",
|
"Miscellaneous" : "Sekalaiset",
|
||||||
"Join meeting muted" : "Liity kokoukseen mykistettynä",
|
"Join meeting muted" : "Liity kokoukseen mykistettynä",
|
||||||
"Room name" : "Huoneen nimi",
|
"Room name" : "Huoneen nimi",
|
||||||
"Create" : "Luo",
|
"Create" : "Luo",
|
||||||
|
"Published" : "Julkaistu",
|
||||||
"Open recording" : "Avaa nauhoitus",
|
"Open recording" : "Avaa nauhoitus",
|
||||||
"Copy to clipboard" : "Kopioi leikepöydälle",
|
"Copy to clipboard" : "Kopioi leikepöydälle",
|
||||||
"Save as file" : "Tallenna tiedostona",
|
"Save as file" : "Tallenna tiedostona",
|
||||||
|
@ -73,8 +76,7 @@ OC.L10N.register(
|
||||||
"Delete?" : "Poistetaanko?",
|
"Delete?" : "Poistetaanko?",
|
||||||
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
||||||
"Server error" : "Palvelinvirhe",
|
"Server error" : "Palvelinvirhe",
|
||||||
"moderator" : "moderaattori",
|
"Start" : "Alku",
|
||||||
"Share" : "Jaa",
|
|
||||||
"Loading" : "Ladataan",
|
"Loading" : "Ladataan",
|
||||||
"Max. rooms" : "Huoneita enintään",
|
"Max. rooms" : "Huoneita enintään",
|
||||||
"Max. participants" : "Osallistujia enintään",
|
"Max. participants" : "Osallistujia enintään",
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
"Name, group …" : "Nimi, ryhmä…",
|
"Name, group …" : "Nimi, ryhmä…",
|
||||||
"Group" : "Ryhmä",
|
"Group" : "Ryhmä",
|
||||||
"No matches" : "Ei täsmääviä",
|
"No matches" : "Ei täsmääviä",
|
||||||
|
"moderator" : "moderaattori",
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Käyttöoikeudet",
|
"Access" : "Käyttöoikeudet",
|
||||||
"Max" : "Enintään",
|
"Max" : "Enintään",
|
||||||
|
@ -53,10 +54,12 @@
|
||||||
"Room URL" : "Huoneen URL-osoite",
|
"Room URL" : "Huoneen URL-osoite",
|
||||||
"Welcome" : "Tervetuloa",
|
"Welcome" : "Tervetuloa",
|
||||||
"Participant limit" : "Osallistujaraja",
|
"Participant limit" : "Osallistujaraja",
|
||||||
|
"Sharing" : "Jakaminen",
|
||||||
"Miscellaneous" : "Sekalaiset",
|
"Miscellaneous" : "Sekalaiset",
|
||||||
"Join meeting muted" : "Liity kokoukseen mykistettynä",
|
"Join meeting muted" : "Liity kokoukseen mykistettynä",
|
||||||
"Room name" : "Huoneen nimi",
|
"Room name" : "Huoneen nimi",
|
||||||
"Create" : "Luo",
|
"Create" : "Luo",
|
||||||
|
"Published" : "Julkaistu",
|
||||||
"Open recording" : "Avaa nauhoitus",
|
"Open recording" : "Avaa nauhoitus",
|
||||||
"Copy to clipboard" : "Kopioi leikepöydälle",
|
"Copy to clipboard" : "Kopioi leikepöydälle",
|
||||||
"Save as file" : "Tallenna tiedostona",
|
"Save as file" : "Tallenna tiedostona",
|
||||||
|
@ -71,8 +74,7 @@
|
||||||
"Delete?" : "Poistetaanko?",
|
"Delete?" : "Poistetaanko?",
|
||||||
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
||||||
"Server error" : "Palvelinvirhe",
|
"Server error" : "Palvelinvirhe",
|
||||||
"moderator" : "moderaattori",
|
"Start" : "Alku",
|
||||||
"Share" : "Jaa",
|
|
||||||
"Loading" : "Ladataan",
|
"Loading" : "Ladataan",
|
||||||
"Max. rooms" : "Huoneita enintään",
|
"Max. rooms" : "Huoneita enintään",
|
||||||
"Max. participants" : "Osallistujia enintään",
|
"Max. participants" : "Osallistujia enintään",
|
||||||
|
|
46
l10n/fr.js
46
l10n/fr.js
|
@ -8,10 +8,10 @@ OC.L10N.register(
|
||||||
"{user} shared the room %s with you." : "{user} a partagé la salle %s avec vous.",
|
"{user} shared the room %s with you." : "{user} a partagé la salle %s avec vous.",
|
||||||
"You unshared the room %s with {shareWith}." : "Vous avez annulé le partage de la salle%savec {shareWith}.",
|
"You unshared the room %s with {shareWith}." : "Vous avez annulé le partage de la salle%savec {shareWith}.",
|
||||||
"{user} unshared the room %s with you." : "{user} a annulé le partage de la salle %s avec vous.",
|
"{user} unshared the room %s with you." : "{user} a annulé le partage de la salle %s avec vous.",
|
||||||
"You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle \"%s\".",
|
"You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle « %s ».",
|
||||||
"{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle \"%s\".",
|
"{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle « %s ».",
|
||||||
"The meeting in room \"%s\" has ended." : "La réunion dans la salle \"%s\" est terminée.",
|
"The meeting in room \"%s\" has ended." : "La réunion dans la salle « %s » est terminée.",
|
||||||
"Recording for room \"%s\" is ready." : "L'enregistrement pour la salle \"%s\" est prêt.",
|
"Recording for room \"%s\" is ready." : "L’enregistrement pour la salle « %s » est prêt.",
|
||||||
"To invite someone to the meeting, send them this link: %s" : "Pour inviter quelqu'un à la réunion, envoyez-lui ce lien : %s",
|
"To invite someone to the meeting, send them this link: %s" : "Pour inviter quelqu'un à la réunion, envoyez-lui ce lien : %s",
|
||||||
"Public" : "Public",
|
"Public" : "Public",
|
||||||
"Internal + Password protection for guests" : "Interne + Mot de passe pour les invités",
|
"Internal + Password protection for guests" : "Interne + Mot de passe pour les invités",
|
||||||
|
@ -27,7 +27,7 @@ OC.L10N.register(
|
||||||
"The room could not be found. Maybe it was deleted?" : "Impossible de trouver cette salle. Peut-être a-t-elle été supprimée ?",
|
"The room could not be found. Maybe it was deleted?" : "Impossible de trouver cette salle. Peut-être a-t-elle été supprimée ?",
|
||||||
"Back to %s" : "Retourner à %s",
|
"Back to %s" : "Retourner à %s",
|
||||||
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Vous pouvez obtenir l'adresse et le secret de l'API en exécutant \"sudo bbb-conf --secret\" sur votre serveur BigBlueButton.",
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Vous pouvez obtenir l'adresse et le secret de l'API en exécutant \"sudo bbb-conf --secret\" sur votre serveur BigBlueButton.",
|
||||||
"API URL" : "Adresse de l'API",
|
"API URL" : "Adresse de l’API",
|
||||||
"API secret" : "Secret de l'API",
|
"API secret" : "Secret de l'API",
|
||||||
"Save" : "Enregistrer",
|
"Save" : "Enregistrer",
|
||||||
"Show room manager in app navigation instead of settings page." : "Afficher le gestionnaire de salles dans la barre de navigation plutôt que dans les paramètres.",
|
"Show room manager in app navigation instead of settings page." : "Afficher le gestionnaire de salles dans la barre de navigation plutôt que dans les paramètres.",
|
||||||
|
@ -47,7 +47,7 @@ OC.L10N.register(
|
||||||
"Please enter your name!" : "Veuillez saisir votre nom !",
|
"Please enter your name!" : "Veuillez saisir votre nom !",
|
||||||
"The name must be at least 3 characters long." : "Le nom doit contenir au moins 3 caractères.",
|
"The name must be at least 3 characters long." : "Le nom doit contenir au moins 3 caractères.",
|
||||||
"You have to provide the correct password to join the meeting." : "Vous devez fournir le bon mot de passe pour rejoindre la réunion.",
|
"You have to provide the correct password to join the meeting." : "Vous devez fournir le bon mot de passe pour rejoindre la réunion.",
|
||||||
"Display name" : "Nom d'affichage",
|
"Display name" : "Nom d’affichage",
|
||||||
"Password" : "Mot de passe",
|
"Password" : "Mot de passe",
|
||||||
"Join" : "Rejoindre",
|
"Join" : "Rejoindre",
|
||||||
"Have an account? Log in." : "Vous avez déjà un compte ? Connectez-vous.",
|
"Have an account? Log in." : "Vous avez déjà un compte ? Connectez-vous.",
|
||||||
|
@ -56,6 +56,9 @@ OC.L10N.register(
|
||||||
"Group" : "Groupe",
|
"Group" : "Groupe",
|
||||||
"Searching" : "Recherche en cours",
|
"Searching" : "Recherche en cours",
|
||||||
"No matches" : "Pas de résultats",
|
"No matches" : "Pas de résultats",
|
||||||
|
"admin" : "administrateur",
|
||||||
|
"moderator" : "modérateur",
|
||||||
|
"user" : "utilisateur",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accès",
|
"Access" : "Accès",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -66,10 +69,10 @@ OC.L10N.register(
|
||||||
"Room quota:" : "Quota de la salle :",
|
"Room quota:" : "Quota de la salle :",
|
||||||
"Edit" : "Modifier",
|
"Edit" : "Modifier",
|
||||||
"Descriptive name of this room." : "Nom descriptif de cette salle.",
|
"Descriptive name of this room." : "Nom descriptif de cette salle.",
|
||||||
"This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l'espace de discussion après qu'ils l'ont rejoint.",
|
"This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l’espace de discussion après qu’ils l’ont rejoint.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu'il n'y a pas de limite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu’il n’y a pas de limite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut démarrer l'enregistrement.",
|
"If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut démarrer l'enregistrement.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publique : Tout le monde connaissant le lien peut rejoindre. Mot de passe : Les invités doivent fournir un mot de passe. Salle d'attente : Un modérateur doit accepter chaque invité avant qu'ils puissent rejoindre. Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre.",
|
"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." : "Explication des différents concepts qui constituent les options d’accès :<br>- Public : Toute personne possédant le lien peut rejoindre la conversation.- <br>Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre la conversation.- <br>Mot de passe : Seuls les invités possédant le mot de passe peuvent rejoindre la conversation..- <br>Salle d’attente : Un modérateur doit accepter chaque invité avant qu’il ne puisse rejoindre la conversation.- <br>Restreint : Seuls les utilisateurs et groupes sélectionnés peuvent accéder à cette conversation.",
|
||||||
"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." : "Un modérateur est en mesure de gérer tous les participants d'une réunion, incluant leur éjection de la salle, leur mise en sourdine ou la désignation d'un présentateur. Les utilisateurs ayant le rôle de modérateur peuvent également mettre fin à une réunion ou modifier les paramètres par défaut.",
|
"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." : "Un modérateur est en mesure de gérer tous les participants d'une réunion, incluant leur éjection de la salle, leur mise en sourdine ou la désignation d'un présentateur. Les utilisateurs ayant le rôle de modérateur peuvent également mettre fin à une réunion ou modifier les paramètres par défaut.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si activé, les utilisateurs devront attendre qu'un modérateur rejoigne la salle.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si activé, les utilisateurs devront attendre qu'un modérateur rejoigne la salle.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si activé, une URL de modérateur est générée pour permettre l'accès avec les droits de modération.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si activé, une URL de modérateur est générée pour permettre l'accès avec les droits de modération.",
|
||||||
|
@ -78,10 +81,11 @@ OC.L10N.register(
|
||||||
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Si activé, l'utilisateur n'a pas besoin de faire un test d'appel et une prévisualisation de la webcam à la première connexion (disponible depuis BBB server 2.3).",
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Si activé, l'utilisateur n'a pas besoin de faire un test d'appel et une prévisualisation de la webcam à la première connexion (disponible depuis BBB server 2.3).",
|
||||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Si activé, la liste des utilisateurs, l'espace de discussion et la présentation sont cachés par défaut.",
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Si activé, la liste des utilisateurs, l'espace de discussion et la présentation sont cachés par défaut.",
|
||||||
"If enabled, all users will join the meeting muted." : "Si activé, tous les utilisateurs rejoindront la réunion en sourdine.",
|
"If enabled, all users will join the meeting muted." : "Si activé, tous les utilisateurs rejoindront la réunion en sourdine.",
|
||||||
"Edit \"{room}\"" : "Modifier \"{room}\"",
|
"Edit \"{room}\"" : "Modifier « {room} »",
|
||||||
"Room URL" : "URL de la salle",
|
"Room URL" : "URL de la salle",
|
||||||
"Welcome" : "Bienvenue",
|
"Welcome" : "Bienvenue",
|
||||||
"Participant limit" : "Limite de participants",
|
"Participant limit" : "Limite de participants",
|
||||||
|
"Sharing" : "Partage",
|
||||||
"Every participant is moderator" : "Tous les participants sont des modérateurs",
|
"Every participant is moderator" : "Tous les participants sont des modérateurs",
|
||||||
"Moderator access via URL" : "Accès modérateur via URL",
|
"Moderator access via URL" : "Accès modérateur via URL",
|
||||||
"Miscellaneous" : "Divers",
|
"Miscellaneous" : "Divers",
|
||||||
|
@ -93,13 +97,14 @@ OC.L10N.register(
|
||||||
"Join meeting muted" : "Rejoindre la réunion en sourdine",
|
"Join meeting muted" : "Rejoindre la réunion en sourdine",
|
||||||
"Room name" : "Nom de la salle",
|
"Room name" : "Nom de la salle",
|
||||||
"Create" : "Créer",
|
"Create" : "Créer",
|
||||||
|
"Published" : "Publié",
|
||||||
"Open recording" : "Ouvrir l'enregistrement",
|
"Open recording" : "Ouvrir l'enregistrement",
|
||||||
"Copy to clipboard" : "Copier dans le presse-papier",
|
"Copy to clipboard" : "Copier dans le presse-papier",
|
||||||
"Save as file" : "Enregistrer dans un fichier",
|
"Save as file" : "Enregistrer dans un fichier",
|
||||||
"_%n participant_::_%n participants_" : ["%n participant","%n participants","%n participants"],
|
"_%n participant_::_%n participants_" : ["%n participant","%n participants","%n participants"],
|
||||||
"Delete" : "Supprimer",
|
"Delete" : "Supprimer",
|
||||||
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer \"{name}\" ? Cette opération ne peut pas être annulée.",
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer « {name} » ? Cette opération ne peut pas être annulée.",
|
||||||
"Delete \"{name}\"?" : "Supprimer \"{name}\" ?",
|
"Delete \"{name}\"?" : "Supprimer « {name} » ?",
|
||||||
"Select target folder" : "Sélectionner un dossier de destination",
|
"Select target folder" : "Sélectionner un dossier de destination",
|
||||||
"Room URL was stored in \"{path}\" as \"{filename}\"." : "L'adresse de la salle a été enregistrée dans \"{path}\" comme \"{filename}\".",
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "L'adresse de la salle a été enregistrée dans \"{path}\" comme \"{filename}\".",
|
||||||
"Link stored" : "Lien stocké",
|
"Link stored" : "Lien stocké",
|
||||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
||||||
"Delete?" : "Supprimer ?",
|
"Delete?" : "Supprimer ?",
|
||||||
"Could not delete record" : "Impossible de supprimer l'enregistrement",
|
"Could not delete record" : "Impossible de supprimer l'enregistrement",
|
||||||
"Server error" : "Erreur serveur",
|
"Server error" : "Erreur serveur",
|
||||||
"moderator" : "modérateur",
|
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
||||||
"admin" : "administrateur",
|
"Open room" : "Ouvrir la salle",
|
||||||
"Share" : "Partager",
|
"Start" : "Démarrer",
|
||||||
|
"Clone room" : "Cloner la salle",
|
||||||
"Loading" : "Chargement",
|
"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.",
|
"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",
|
"Max. rooms" : "Nombre max. de salles",
|
||||||
|
@ -124,14 +130,14 @@ OC.L10N.register(
|
||||||
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
||||||
"Settings saved" : "Paramètres sauvegardés",
|
"Settings saved" : "Paramètres sauvegardés",
|
||||||
"Unexpected error occurred" : "Une erreur est survenue",
|
"Unexpected error occurred" : "Une erreur est survenue",
|
||||||
"API URL is invalid" : "L'adresse de l'API est invalide",
|
"API URL is invalid" : "L’adresse de l’API est invalide",
|
||||||
"API secret is invalid" : "Le secret de l'API est invalide",
|
"API secret is invalid" : "Le secret de l’API est invalide",
|
||||||
"URL has to start with HTTPS" : "L'URL doit débuter par HTTPS",
|
"URL has to start with HTTPS" : "L'URL doit débuter par HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "L'URL doit contenir le paramètre {token}",
|
"URL has to contain the {token} placeholder" : "L’URL doit contenir le paramètre {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL doit commencer par https:// et contenir {token}. De plus, le paramètre {user} peut être utilisé.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L’URL doit commencer par https:// et contenir {token}. De plus, le paramètre {user} peut être utilisé.",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Le fichier \"{filename}\" a été téléversé dans votre salle.",
|
"The file \"{filename}\" was uploaded to your room." : "Le fichier \"{filename}\" a été téléversé dans votre salle.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Le fichier \"{filename}\" n'a pas pu être téléversé dans votre salle.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Le fichier \"{filename}\" n'a pas pu être téléversé dans votre salle.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Le fichier « {filename} » n'a pas pu être téléversé dans votre salle. Votre serveur BigBlueButton ne prend peut-être pas en charge cette action.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Le fichier « {filename} » n’a pas pu être téléversé dans votre salle. Votre serveur BigBlueButton ne prend peut-être pas en charge cette action.",
|
||||||
"Send file to BBB" : "Envoyer le fichier vers BBB",
|
"Send file to BBB" : "Envoyer le fichier vers BBB",
|
||||||
"Send to" : "Envoyer à",
|
"Send to" : "Envoyer à",
|
||||||
"Start with" : "Démarrer avec",
|
"Start with" : "Démarrer avec",
|
||||||
|
|
46
l10n/fr.json
46
l10n/fr.json
|
@ -6,10 +6,10 @@
|
||||||
"{user} shared the room %s with you." : "{user} a partagé la salle %s avec vous.",
|
"{user} shared the room %s with you." : "{user} a partagé la salle %s avec vous.",
|
||||||
"You unshared the room %s with {shareWith}." : "Vous avez annulé le partage de la salle%savec {shareWith}.",
|
"You unshared the room %s with {shareWith}." : "Vous avez annulé le partage de la salle%savec {shareWith}.",
|
||||||
"{user} unshared the room %s with you." : "{user} a annulé le partage de la salle %s avec vous.",
|
"{user} unshared the room %s with you." : "{user} a annulé le partage de la salle %s avec vous.",
|
||||||
"You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle \"%s\".",
|
"You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle « %s ».",
|
||||||
"{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle \"%s\".",
|
"{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle « %s ».",
|
||||||
"The meeting in room \"%s\" has ended." : "La réunion dans la salle \"%s\" est terminée.",
|
"The meeting in room \"%s\" has ended." : "La réunion dans la salle « %s » est terminée.",
|
||||||
"Recording for room \"%s\" is ready." : "L'enregistrement pour la salle \"%s\" est prêt.",
|
"Recording for room \"%s\" is ready." : "L’enregistrement pour la salle « %s » est prêt.",
|
||||||
"To invite someone to the meeting, send them this link: %s" : "Pour inviter quelqu'un à la réunion, envoyez-lui ce lien : %s",
|
"To invite someone to the meeting, send them this link: %s" : "Pour inviter quelqu'un à la réunion, envoyez-lui ce lien : %s",
|
||||||
"Public" : "Public",
|
"Public" : "Public",
|
||||||
"Internal + Password protection for guests" : "Interne + Mot de passe pour les invités",
|
"Internal + Password protection for guests" : "Interne + Mot de passe pour les invités",
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
"The room could not be found. Maybe it was deleted?" : "Impossible de trouver cette salle. Peut-être a-t-elle été supprimée ?",
|
"The room could not be found. Maybe it was deleted?" : "Impossible de trouver cette salle. Peut-être a-t-elle été supprimée ?",
|
||||||
"Back to %s" : "Retourner à %s",
|
"Back to %s" : "Retourner à %s",
|
||||||
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Vous pouvez obtenir l'adresse et le secret de l'API en exécutant \"sudo bbb-conf --secret\" sur votre serveur BigBlueButton.",
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Vous pouvez obtenir l'adresse et le secret de l'API en exécutant \"sudo bbb-conf --secret\" sur votre serveur BigBlueButton.",
|
||||||
"API URL" : "Adresse de l'API",
|
"API URL" : "Adresse de l’API",
|
||||||
"API secret" : "Secret de l'API",
|
"API secret" : "Secret de l'API",
|
||||||
"Save" : "Enregistrer",
|
"Save" : "Enregistrer",
|
||||||
"Show room manager in app navigation instead of settings page." : "Afficher le gestionnaire de salles dans la barre de navigation plutôt que dans les paramètres.",
|
"Show room manager in app navigation instead of settings page." : "Afficher le gestionnaire de salles dans la barre de navigation plutôt que dans les paramètres.",
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
"Please enter your name!" : "Veuillez saisir votre nom !",
|
"Please enter your name!" : "Veuillez saisir votre nom !",
|
||||||
"The name must be at least 3 characters long." : "Le nom doit contenir au moins 3 caractères.",
|
"The name must be at least 3 characters long." : "Le nom doit contenir au moins 3 caractères.",
|
||||||
"You have to provide the correct password to join the meeting." : "Vous devez fournir le bon mot de passe pour rejoindre la réunion.",
|
"You have to provide the correct password to join the meeting." : "Vous devez fournir le bon mot de passe pour rejoindre la réunion.",
|
||||||
"Display name" : "Nom d'affichage",
|
"Display name" : "Nom d’affichage",
|
||||||
"Password" : "Mot de passe",
|
"Password" : "Mot de passe",
|
||||||
"Join" : "Rejoindre",
|
"Join" : "Rejoindre",
|
||||||
"Have an account? Log in." : "Vous avez déjà un compte ? Connectez-vous.",
|
"Have an account? Log in." : "Vous avez déjà un compte ? Connectez-vous.",
|
||||||
|
@ -54,6 +54,9 @@
|
||||||
"Group" : "Groupe",
|
"Group" : "Groupe",
|
||||||
"Searching" : "Recherche en cours",
|
"Searching" : "Recherche en cours",
|
||||||
"No matches" : "Pas de résultats",
|
"No matches" : "Pas de résultats",
|
||||||
|
"admin" : "administrateur",
|
||||||
|
"moderator" : "modérateur",
|
||||||
|
"user" : "utilisateur",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accès",
|
"Access" : "Accès",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
@ -64,10 +67,10 @@
|
||||||
"Room quota:" : "Quota de la salle :",
|
"Room quota:" : "Quota de la salle :",
|
||||||
"Edit" : "Modifier",
|
"Edit" : "Modifier",
|
||||||
"Descriptive name of this room." : "Nom descriptif de cette salle.",
|
"Descriptive name of this room." : "Nom descriptif de cette salle.",
|
||||||
"This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l'espace de discussion après qu'ils l'ont rejoint.",
|
"This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l’espace de discussion après qu’ils l’ont rejoint.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu'il n'y a pas de limite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu’il n’y a pas de limite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut démarrer l'enregistrement.",
|
"If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut démarrer l'enregistrement.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publique : Tout le monde connaissant le lien peut rejoindre. Mot de passe : Les invités doivent fournir un mot de passe. Salle d'attente : Un modérateur doit accepter chaque invité avant qu'ils puissent rejoindre. Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre.",
|
"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." : "Explication des différents concepts qui constituent les options d’accès :<br>- Public : Toute personne possédant le lien peut rejoindre la conversation.- <br>Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre la conversation.- <br>Mot de passe : Seuls les invités possédant le mot de passe peuvent rejoindre la conversation..- <br>Salle d’attente : Un modérateur doit accepter chaque invité avant qu’il ne puisse rejoindre la conversation.- <br>Restreint : Seuls les utilisateurs et groupes sélectionnés peuvent accéder à cette conversation.",
|
||||||
"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." : "Un modérateur est en mesure de gérer tous les participants d'une réunion, incluant leur éjection de la salle, leur mise en sourdine ou la désignation d'un présentateur. Les utilisateurs ayant le rôle de modérateur peuvent également mettre fin à une réunion ou modifier les paramètres par défaut.",
|
"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." : "Un modérateur est en mesure de gérer tous les participants d'une réunion, incluant leur éjection de la salle, leur mise en sourdine ou la désignation d'un présentateur. Les utilisateurs ayant le rôle de modérateur peuvent également mettre fin à une réunion ou modifier les paramètres par défaut.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Si activé, les utilisateurs devront attendre qu'un modérateur rejoigne la salle.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Si activé, les utilisateurs devront attendre qu'un modérateur rejoigne la salle.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si activé, une URL de modérateur est générée pour permettre l'accès avec les droits de modération.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Si activé, une URL de modérateur est générée pour permettre l'accès avec les droits de modération.",
|
||||||
|
@ -76,10 +79,11 @@
|
||||||
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Si activé, l'utilisateur n'a pas besoin de faire un test d'appel et une prévisualisation de la webcam à la première connexion (disponible depuis BBB server 2.3).",
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Si activé, l'utilisateur n'a pas besoin de faire un test d'appel et une prévisualisation de la webcam à la première connexion (disponible depuis BBB server 2.3).",
|
||||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Si activé, la liste des utilisateurs, l'espace de discussion et la présentation sont cachés par défaut.",
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Si activé, la liste des utilisateurs, l'espace de discussion et la présentation sont cachés par défaut.",
|
||||||
"If enabled, all users will join the meeting muted." : "Si activé, tous les utilisateurs rejoindront la réunion en sourdine.",
|
"If enabled, all users will join the meeting muted." : "Si activé, tous les utilisateurs rejoindront la réunion en sourdine.",
|
||||||
"Edit \"{room}\"" : "Modifier \"{room}\"",
|
"Edit \"{room}\"" : "Modifier « {room} »",
|
||||||
"Room URL" : "URL de la salle",
|
"Room URL" : "URL de la salle",
|
||||||
"Welcome" : "Bienvenue",
|
"Welcome" : "Bienvenue",
|
||||||
"Participant limit" : "Limite de participants",
|
"Participant limit" : "Limite de participants",
|
||||||
|
"Sharing" : "Partage",
|
||||||
"Every participant is moderator" : "Tous les participants sont des modérateurs",
|
"Every participant is moderator" : "Tous les participants sont des modérateurs",
|
||||||
"Moderator access via URL" : "Accès modérateur via URL",
|
"Moderator access via URL" : "Accès modérateur via URL",
|
||||||
"Miscellaneous" : "Divers",
|
"Miscellaneous" : "Divers",
|
||||||
|
@ -91,13 +95,14 @@
|
||||||
"Join meeting muted" : "Rejoindre la réunion en sourdine",
|
"Join meeting muted" : "Rejoindre la réunion en sourdine",
|
||||||
"Room name" : "Nom de la salle",
|
"Room name" : "Nom de la salle",
|
||||||
"Create" : "Créer",
|
"Create" : "Créer",
|
||||||
|
"Published" : "Publié",
|
||||||
"Open recording" : "Ouvrir l'enregistrement",
|
"Open recording" : "Ouvrir l'enregistrement",
|
||||||
"Copy to clipboard" : "Copier dans le presse-papier",
|
"Copy to clipboard" : "Copier dans le presse-papier",
|
||||||
"Save as file" : "Enregistrer dans un fichier",
|
"Save as file" : "Enregistrer dans un fichier",
|
||||||
"_%n participant_::_%n participants_" : ["%n participant","%n participants","%n participants"],
|
"_%n participant_::_%n participants_" : ["%n participant","%n participants","%n participants"],
|
||||||
"Delete" : "Supprimer",
|
"Delete" : "Supprimer",
|
||||||
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer \"{name}\" ? Cette opération ne peut pas être annulée.",
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer « {name} » ? Cette opération ne peut pas être annulée.",
|
||||||
"Delete \"{name}\"?" : "Supprimer \"{name}\" ?",
|
"Delete \"{name}\"?" : "Supprimer « {name} » ?",
|
||||||
"Select target folder" : "Sélectionner un dossier de destination",
|
"Select target folder" : "Sélectionner un dossier de destination",
|
||||||
"Room URL was stored in \"{path}\" as \"{filename}\"." : "L'adresse de la salle a été enregistrée dans \"{path}\" comme \"{filename}\".",
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "L'adresse de la salle a été enregistrée dans \"{path}\" comme \"{filename}\".",
|
||||||
"Link stored" : "Lien stocké",
|
"Link stored" : "Lien stocké",
|
||||||
|
@ -109,9 +114,10 @@
|
||||||
"Delete?" : "Supprimer ?",
|
"Delete?" : "Supprimer ?",
|
||||||
"Could not delete record" : "Impossible de supprimer l'enregistrement",
|
"Could not delete record" : "Impossible de supprimer l'enregistrement",
|
||||||
"Server error" : "Erreur serveur",
|
"Server error" : "Erreur serveur",
|
||||||
"moderator" : "modérateur",
|
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
||||||
"admin" : "administrateur",
|
"Open room" : "Ouvrir la salle",
|
||||||
"Share" : "Partager",
|
"Start" : "Démarrer",
|
||||||
|
"Clone room" : "Cloner la salle",
|
||||||
"Loading" : "Chargement",
|
"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.",
|
"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",
|
"Max. rooms" : "Nombre max. de salles",
|
||||||
|
@ -122,14 +128,14 @@
|
||||||
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
||||||
"Settings saved" : "Paramètres sauvegardés",
|
"Settings saved" : "Paramètres sauvegardés",
|
||||||
"Unexpected error occurred" : "Une erreur est survenue",
|
"Unexpected error occurred" : "Une erreur est survenue",
|
||||||
"API URL is invalid" : "L'adresse de l'API est invalide",
|
"API URL is invalid" : "L’adresse de l’API est invalide",
|
||||||
"API secret is invalid" : "Le secret de l'API est invalide",
|
"API secret is invalid" : "Le secret de l’API est invalide",
|
||||||
"URL has to start with HTTPS" : "L'URL doit débuter par HTTPS",
|
"URL has to start with HTTPS" : "L'URL doit débuter par HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "L'URL doit contenir le paramètre {token}",
|
"URL has to contain the {token} placeholder" : "L’URL doit contenir le paramètre {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL doit commencer par https:// et contenir {token}. De plus, le paramètre {user} peut être utilisé.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L’URL doit commencer par https:// et contenir {token}. De plus, le paramètre {user} peut être utilisé.",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Le fichier \"{filename}\" a été téléversé dans votre salle.",
|
"The file \"{filename}\" was uploaded to your room." : "Le fichier \"{filename}\" a été téléversé dans votre salle.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Le fichier \"{filename}\" n'a pas pu être téléversé dans votre salle.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Le fichier \"{filename}\" n'a pas pu être téléversé dans votre salle.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Le fichier « {filename} » n'a pas pu être téléversé dans votre salle. Votre serveur BigBlueButton ne prend peut-être pas en charge cette action.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Le fichier « {filename} » n’a pas pu être téléversé dans votre salle. Votre serveur BigBlueButton ne prend peut-être pas en charge cette action.",
|
||||||
"Send file to BBB" : "Envoyer le fichier vers BBB",
|
"Send file to BBB" : "Envoyer le fichier vers BBB",
|
||||||
"Send to" : "Envoyer à",
|
"Send to" : "Envoyer à",
|
||||||
"Start with" : "Démarrer avec",
|
"Start with" : "Démarrer avec",
|
||||||
|
|
|
@ -0,0 +1,149 @@
|
||||||
|
OC.L10N.register(
|
||||||
|
"bbb",
|
||||||
|
{
|
||||||
|
"You created the room %s." : "Chruthaigh tú an seomra %s.",
|
||||||
|
"You deleted the room %s." : "Scrios tú an seomra %s.",
|
||||||
|
"{user} deleted the room %s." : "Scrios {user} an seomra %s.",
|
||||||
|
"You shared the room %s with {shareWith}." : "Roinn tú an seomra %s le {shareWith}.",
|
||||||
|
"{user} shared the room %s with you." : "Roinn {user} an seomra %s leat.",
|
||||||
|
"You unshared the room %s with {shareWith}." : "Dhíroinnte tú an seomra %s le {shareWith}.",
|
||||||
|
"{user} unshared the room %s with you." : "Dhíroinn {user} an seomra %s leat.",
|
||||||
|
"You started a meeting in the \"%s\" room." : "Chuir tú tús le cruinniú sa seomra \"%s\".",
|
||||||
|
"{user} started a meeting in the \"%s\" room." : "Chuir {user} tús le cruinniú sa seomra \"%s\".",
|
||||||
|
"The meeting in room \"%s\" has ended." : "Tháinig deireadh leis an gcruinniú i seomra \"%s\".",
|
||||||
|
"Recording for room \"%s\" is ready." : "Tá taifeadadh do sheomra \"%s\" réidh.",
|
||||||
|
"To invite someone to the meeting, send them this link: %s" : "Chun cuireadh a thabhairt do dhuine éigin chuig an gcruinniú, seol an nasc seo chucu: %s",
|
||||||
|
"Public" : "Poiblí",
|
||||||
|
"Internal + Password protection for guests" : "Inmheánach + Cosaint pasfhocal d'aíonna",
|
||||||
|
"Internal + Waiting room for guests" : "Inmheánach + Seomra feithimh d'aíonna",
|
||||||
|
"Waiting room for all users" : "Seomra feithimh do gach úsáideoir",
|
||||||
|
"Internal" : "Inmheánach",
|
||||||
|
"Internal restricted" : "Inmheánach srianta",
|
||||||
|
"API URL or secret not configured. Please contact your administrator." : "URL API nó rún gan a bheith cumraithe. Déan teagmháil le do riarthóir le do thoil.",
|
||||||
|
"BigBlueButton Integration" : "Comhtháthú BigBlueButton",
|
||||||
|
"BigBlueButton integration for Nextcloud" : "Comhtháthú BigBlueButton do 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.*" : "Ligeann an aip seo cruinnithe a chruthú le suiteáil sheachtrach de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Socrú seomra** Cruthaigh cumraíochtaí seomra iolracha leis an ainm, an teachtaireacht fáilte ...\n* **Comhroinn nasc aoi** Roinn nasc an tseomra le d’aíonna go léir\n* **Comhroinn nasc modhnóra** Tabhair cuireadh do mhodhnóirí teacht chuig an seomra\n* **Comhroinn seomraí** Roinn seomraí le baill, grúpaí nó ciorcail\n* **Cuir i láthair saincheaptha** Tosaigh seomra le cur i láthair roghnaithe ó do bhrabhsálaí comhad\n* **Bainistigh taifeadtaí** Féach, roinn agus scrios taifeadtaí do do sheomraí\n* **Srianta** Cuir srian le cruthú seomra do ghrúpaí áirithe\n* **Gníomhaíochtaí** Faigh forbhreathnú ar do ghníomhaíochtaí seomra\n\nTreoir tosaigh tapa agus tuilleadh faisnéise inár [readme](https://github.com/sualko/cloud_bbb).\nAn maith leat an feidhmchlár seo? Tabhair rud éigin ar ais don phobal foinse oscailte agus seiceáil amach ár\n[bealaí le rannchuidiú]( https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md ).\n\nFhorbróir theastaigh! Má tá am agat bheadh sé iontach dá bhféadfá cabhrú leis an bhfeidhmchlár seo a fheabhsú.\n\n*Comhtháthaíonn an aip seo BigBlueButton agus níl sé formhuinithe ná deimhnithe ag BigBlueButton Inc. Is trádmharcanna de chuid BigBlueButton Inc. iad BigBlueButton agus an BigBlueButton Logo.*",
|
||||||
|
"Room not found" : "Seomra gan aimsiú",
|
||||||
|
"The room could not be found. Maybe it was deleted?" : "Níorbh fhéidir an seomra a aimsiú. B'fhéidir gur scriosadh é?",
|
||||||
|
"Back to %s" : "Ar ais go dtí %s",
|
||||||
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Faigh do URL API agus rúnda trí \"sudo bbb-conf --secret\" a fhorghníomhú ar do fhreastalaí BigBlueButton.",
|
||||||
|
"API URL" : "URL API",
|
||||||
|
"API secret" : "Rúnda API",
|
||||||
|
"Save" : "Sábháil",
|
||||||
|
"Show room manager in app navigation instead of settings page." : "Taispeáin bainisteoir an tseomra i nascleanúint aipe in ionad an leathanaigh socruithe.",
|
||||||
|
"Use Nextcloud theme in BigBlueButton." : "Úsáid téama Nextcloud in BigBlueButton.",
|
||||||
|
"Default Room Settings" : "Socruithe Seomra Réamhshocraithe",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Anseo thíos is féidir leat roinnt luachanna réamhshocraithe a athrú, a úsáidtear chun seomra nua a chruthú.",
|
||||||
|
"Perform media check before usage" : "Déan seiceáil na meán roimh úsáid",
|
||||||
|
"Community" : "Pobal",
|
||||||
|
"Are you enjoying this app? Give something back to the open source community." : "An bhfuil tú ag baint sult as an aip seo? Tabhair rud éigin ar ais don phobal foinse oscailte.",
|
||||||
|
"Checkout the contributor guide" : "Seiceáil an treoir do ranníocóirí",
|
||||||
|
"URL Shortener" : "Giorraitheoir URL",
|
||||||
|
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Más maith leat URLanna níos giorra a úsáid, is féidir leat seachfhreastalaí seolta a chur isteach thíos.",
|
||||||
|
"URL shortener" : "Giorraitheoir URL",
|
||||||
|
"Restrictions" : "Srianta",
|
||||||
|
"You will be forwarded to the room in the next few seconds." : "Cuirfear ar aghaidh chuig an seomra thú sna soicindí atá romhainn.",
|
||||||
|
"Let's go!" : "A ligean ar dul!",
|
||||||
|
"Please enter your name!" : "Cuir isteach d'ainm le do thoil!",
|
||||||
|
"The name must be at least 3 characters long." : "Caithfidh an t-ainm a bheith 3 charachtar ar a laghad ar fad.",
|
||||||
|
"You have to provide the correct password to join the meeting." : "Caithfidh tú an pasfhocal ceart a sholáthar chun páirt a ghlacadh sa chruinniú.",
|
||||||
|
"Display name" : "Ainm taispeána",
|
||||||
|
"Password" : "Pasfhocal",
|
||||||
|
"Join" : "Bígí",
|
||||||
|
"Have an account? Log in." : "An bhfuil cuntas agat? Logáil isteach.",
|
||||||
|
"Hello %s" : "Dia duit %s",
|
||||||
|
"Name, group …" : "Ainm, grúpa…",
|
||||||
|
"Group" : "Grúpa",
|
||||||
|
"Searching" : "Cuardach",
|
||||||
|
"No matches" : "Gan aon chluichí",
|
||||||
|
"admin" : "riar",
|
||||||
|
"moderator" : "modhnóir",
|
||||||
|
"user" : "úsáideoir",
|
||||||
|
"Name" : "Ainm",
|
||||||
|
"Access" : "Rochtain",
|
||||||
|
"Max" : "Uas",
|
||||||
|
"Record" : "Taifead",
|
||||||
|
"Recordings" : "Taifeadtaí",
|
||||||
|
"You are not permitted to create a room." : "Níl cead agat seomra a chruthú.",
|
||||||
|
"You exceeded the maximum number of rooms." : "Sháraigh tú uaslíon na seomraí.",
|
||||||
|
"Room quota:" : "Cuóta seomra:",
|
||||||
|
"Edit" : "Cuir in eagar",
|
||||||
|
"Descriptive name of this room." : "Ainm tuairisciúil an tseomra seo.",
|
||||||
|
"This message is shown to all users in the chat area after they joined." : "Taispeántar an teachtaireacht seo do gach úsáideoir sa limistéar comhrá tar éis dóibh dul isteach ann.",
|
||||||
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Socraíonn sé teorainn ar líon na rannpháirtithe don seomra seo. Ciallaíonn nialais nach bhfuil aon teorainn ann.",
|
||||||
|
"If enabled, the moderator is able to start the recording." : "Má tá sé cumasaithe, beidh an modhnóir in ann an taifeadadh a thosú.",
|
||||||
|
"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." : "Míniú ar na coincheapa éagsúla a chomhdhéanann roghanna rochtana :1- Poiblí: Is féidir le haon duine a bhfuil an nasc aige páirt a ghlacadh.- 2Inmheánach: Ní féidir ach le húsáideoirí Nextcloud páirt a ghlacadh.- 3Pasfhocal: Ní féidir ach le haíonna a bhfuil an pasfhocal acu páirt a ghlacadh..- 4Seomra feithimh: Modhnóir ní mór dóibh glacadh le gach aoi sular féidir leo páirt a ghlacadh.- 5Srianta : Ní féidir ach le húsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra seo.",
|
||||||
|
"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." : "Tá modhnóir in ann gach rannpháirtí i gcruinniú a bhainistiú lena n-áirítear láithreoir a chiceáil, a bhalbhú nó a roghnú. Tá úsáideoirí a bhfuil an modhnóir ról acu in ann cruinniú a dhúnadh freisin nó na socruithe réamhshocraithe a athrú.",
|
||||||
|
"If enabled, normal users have to wait until a moderator is in the room." : "Má tá sé cumasaithe, caithfidh gnáthúsáideoirí fanacht go dtí go mbeidh modhnóir sa seomra.",
|
||||||
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Má tá sé cumasaithe, gintear URL modhnóra a cheadaíonn rochtain le cead an mhodhnóra.",
|
||||||
|
"Only selected users and groups are allowed to access the room." : "Ní cheadaítear ach úsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra.",
|
||||||
|
"If disabled, a microphone is needed to join the conference." : "Má tá sé díchumasaithe, beidh micreafón ag teastáil chun páirt a ghlacadh sa chomhdháil.",
|
||||||
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Má tá sé cumasaithe, níl cead ag an úsáideoir réamhghlao macalla agus ceamara gréasáin a dhéanamh ar an gcéad dul isteach (ar fáil ó fhreastalaí BBB 2.3).",
|
||||||
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Má tá sé cumasaithe, tá an liosta úsáideoirí, an limistéar comhrá agus an cur i láthair i bhfolach de réir réamhshocraithe.",
|
||||||
|
"If enabled, all users will join the meeting muted." : "Má tá sé cumasaithe, glacfaidh gach úsáideoir páirt sa chruinniú balbhaithe.",
|
||||||
|
"Edit \"{room}\"" : "Cuir \"{room}\" in eagar",
|
||||||
|
"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",
|
||||||
|
"Recording" : "Taifeadadh",
|
||||||
|
"Require moderator to start room" : "Éilíonn an modhnóir chun an seomra a thosú",
|
||||||
|
"Listen only option" : "Éist leis an rogha amháin",
|
||||||
|
"Skip media check before usage" : "Scipeáil seiceáil na meán roimh úsáid",
|
||||||
|
"Clean layout" : "Leagan amach glan",
|
||||||
|
"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",
|
||||||
|
"_%n participant_::_%n participants_" : ["%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí"],
|
||||||
|
"Delete" : "Scrios",
|
||||||
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.",
|
||||||
|
"Delete \"{name}\"?" : "An bhfuil fonn ort \"{name}\" a scriosadh?",
|
||||||
|
"Select target folder" : "Roghnaigh fillteán sprice",
|
||||||
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL an tseomra i \"{path}\" mar \"{filename}\".",
|
||||||
|
"Link stored" : "Nasc stóráilte",
|
||||||
|
"URL to room could not be stored." : "Níorbh fhéidir URL an tseomra a stóráil.",
|
||||||
|
"Error" : "Earráid",
|
||||||
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL le cur i láthair in \"{path}\" mar \"{filename}\".",
|
||||||
|
"URL to presentation could not be stored." : "Níorbh fhéidir URL an léirithe a stóráil.",
|
||||||
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat an taifeadadh ó \"{startDate}\" a scriosadh? Ní féidir an oibríocht seo a chealú.",
|
||||||
|
"Delete?" : "Scrios?",
|
||||||
|
"Could not delete record" : "Níorbh fhéidir an taifead a scriosadh",
|
||||||
|
"Server error" : "Earráid freastalaí",
|
||||||
|
"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í",
|
||||||
|
"Max. participants" : "Uas. rannpháirtithe",
|
||||||
|
"Group …" : "Grúpa…",
|
||||||
|
"Restrictions do not affect existing rooms. Minus one means the value is unlimited. The least restrictive option is chosen for every user if multiple restrictions apply." : "Ní chuireann srianta isteach ar sheomraí atá ann cheana féin. Ciallaíonn lúide a haon go bhfuil an luach gan teorainn. Roghnaítear an rogha is lú srianta do gach úsáideoir má bhíonn srianta iolracha i bhfeidhm.",
|
||||||
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat na srianta don ghrúpa \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.",
|
||||||
|
"Delete restrictions for \"{name}\"?" : "Scrios srianta do \"{name}\"?",
|
||||||
|
"Settings saved" : "Socruithe sábháilte",
|
||||||
|
"Unexpected error occurred" : "Tharla earráid gan choinne",
|
||||||
|
"API URL is invalid" : "Tá URL API neamhbhailí",
|
||||||
|
"API secret is invalid" : "Tá rún API neamhbhailí",
|
||||||
|
"URL has to start with HTTPS" : "Caithfidh URL tosú le HTTPS",
|
||||||
|
"URL has to contain the {token} placeholder" : "Caithfidh an sealbhóir áit {token} a bheith sa URL",
|
||||||
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Caithfidh URL tosú le https:// agus {token} a bheith ann. Ina theannta sin is féidir an sealbhóir áitribh {user} a úsáid.",
|
||||||
|
"The file \"{filename}\" was uploaded to your room." : "Uaslódáladh an comhad \"{filename}\" chuig do sheomra.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra. B'fhéidir nach dtacaíonn do fhreastalaí BigBlueButton leis an ngníomh seo.",
|
||||||
|
"Send file to BBB" : "Seol an comhad chuig BBB",
|
||||||
|
"Send to" : "Sheoladh chuig",
|
||||||
|
"Start with" : "Tosaigh le",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Roghnaigh an seomra inar mhaith leat an comhad \"{filename}\" a úsáid le do thoil.",
|
||||||
|
"No rooms available!" : "Níl seomraí ar fáil!",
|
||||||
|
"Send to BBB" : "Seol chuig BBB",
|
||||||
|
"_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil."]
|
||||||
|
},
|
||||||
|
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");
|
|
@ -0,0 +1,147 @@
|
||||||
|
{ "translations": {
|
||||||
|
"You created the room %s." : "Chruthaigh tú an seomra %s.",
|
||||||
|
"You deleted the room %s." : "Scrios tú an seomra %s.",
|
||||||
|
"{user} deleted the room %s." : "Scrios {user} an seomra %s.",
|
||||||
|
"You shared the room %s with {shareWith}." : "Roinn tú an seomra %s le {shareWith}.",
|
||||||
|
"{user} shared the room %s with you." : "Roinn {user} an seomra %s leat.",
|
||||||
|
"You unshared the room %s with {shareWith}." : "Dhíroinnte tú an seomra %s le {shareWith}.",
|
||||||
|
"{user} unshared the room %s with you." : "Dhíroinn {user} an seomra %s leat.",
|
||||||
|
"You started a meeting in the \"%s\" room." : "Chuir tú tús le cruinniú sa seomra \"%s\".",
|
||||||
|
"{user} started a meeting in the \"%s\" room." : "Chuir {user} tús le cruinniú sa seomra \"%s\".",
|
||||||
|
"The meeting in room \"%s\" has ended." : "Tháinig deireadh leis an gcruinniú i seomra \"%s\".",
|
||||||
|
"Recording for room \"%s\" is ready." : "Tá taifeadadh do sheomra \"%s\" réidh.",
|
||||||
|
"To invite someone to the meeting, send them this link: %s" : "Chun cuireadh a thabhairt do dhuine éigin chuig an gcruinniú, seol an nasc seo chucu: %s",
|
||||||
|
"Public" : "Poiblí",
|
||||||
|
"Internal + Password protection for guests" : "Inmheánach + Cosaint pasfhocal d'aíonna",
|
||||||
|
"Internal + Waiting room for guests" : "Inmheánach + Seomra feithimh d'aíonna",
|
||||||
|
"Waiting room for all users" : "Seomra feithimh do gach úsáideoir",
|
||||||
|
"Internal" : "Inmheánach",
|
||||||
|
"Internal restricted" : "Inmheánach srianta",
|
||||||
|
"API URL or secret not configured. Please contact your administrator." : "URL API nó rún gan a bheith cumraithe. Déan teagmháil le do riarthóir le do thoil.",
|
||||||
|
"BigBlueButton Integration" : "Comhtháthú BigBlueButton",
|
||||||
|
"BigBlueButton integration for Nextcloud" : "Comhtháthú BigBlueButton do 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.*" : "Ligeann an aip seo cruinnithe a chruthú le suiteáil sheachtrach de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Socrú seomra** Cruthaigh cumraíochtaí seomra iolracha leis an ainm, an teachtaireacht fáilte ...\n* **Comhroinn nasc aoi** Roinn nasc an tseomra le d’aíonna go léir\n* **Comhroinn nasc modhnóra** Tabhair cuireadh do mhodhnóirí teacht chuig an seomra\n* **Comhroinn seomraí** Roinn seomraí le baill, grúpaí nó ciorcail\n* **Cuir i láthair saincheaptha** Tosaigh seomra le cur i láthair roghnaithe ó do bhrabhsálaí comhad\n* **Bainistigh taifeadtaí** Féach, roinn agus scrios taifeadtaí do do sheomraí\n* **Srianta** Cuir srian le cruthú seomra do ghrúpaí áirithe\n* **Gníomhaíochtaí** Faigh forbhreathnú ar do ghníomhaíochtaí seomra\n\nTreoir tosaigh tapa agus tuilleadh faisnéise inár [readme](https://github.com/sualko/cloud_bbb).\nAn maith leat an feidhmchlár seo? Tabhair rud éigin ar ais don phobal foinse oscailte agus seiceáil amach ár\n[bealaí le rannchuidiú]( https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md ).\n\nFhorbróir theastaigh! Má tá am agat bheadh sé iontach dá bhféadfá cabhrú leis an bhfeidhmchlár seo a fheabhsú.\n\n*Comhtháthaíonn an aip seo BigBlueButton agus níl sé formhuinithe ná deimhnithe ag BigBlueButton Inc. Is trádmharcanna de chuid BigBlueButton Inc. iad BigBlueButton agus an BigBlueButton Logo.*",
|
||||||
|
"Room not found" : "Seomra gan aimsiú",
|
||||||
|
"The room could not be found. Maybe it was deleted?" : "Níorbh fhéidir an seomra a aimsiú. B'fhéidir gur scriosadh é?",
|
||||||
|
"Back to %s" : "Ar ais go dtí %s",
|
||||||
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Faigh do URL API agus rúnda trí \"sudo bbb-conf --secret\" a fhorghníomhú ar do fhreastalaí BigBlueButton.",
|
||||||
|
"API URL" : "URL API",
|
||||||
|
"API secret" : "Rúnda API",
|
||||||
|
"Save" : "Sábháil",
|
||||||
|
"Show room manager in app navigation instead of settings page." : "Taispeáin bainisteoir an tseomra i nascleanúint aipe in ionad an leathanaigh socruithe.",
|
||||||
|
"Use Nextcloud theme in BigBlueButton." : "Úsáid téama Nextcloud in BigBlueButton.",
|
||||||
|
"Default Room Settings" : "Socruithe Seomra Réamhshocraithe",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Anseo thíos is féidir leat roinnt luachanna réamhshocraithe a athrú, a úsáidtear chun seomra nua a chruthú.",
|
||||||
|
"Perform media check before usage" : "Déan seiceáil na meán roimh úsáid",
|
||||||
|
"Community" : "Pobal",
|
||||||
|
"Are you enjoying this app? Give something back to the open source community." : "An bhfuil tú ag baint sult as an aip seo? Tabhair rud éigin ar ais don phobal foinse oscailte.",
|
||||||
|
"Checkout the contributor guide" : "Seiceáil an treoir do ranníocóirí",
|
||||||
|
"URL Shortener" : "Giorraitheoir URL",
|
||||||
|
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Más maith leat URLanna níos giorra a úsáid, is féidir leat seachfhreastalaí seolta a chur isteach thíos.",
|
||||||
|
"URL shortener" : "Giorraitheoir URL",
|
||||||
|
"Restrictions" : "Srianta",
|
||||||
|
"You will be forwarded to the room in the next few seconds." : "Cuirfear ar aghaidh chuig an seomra thú sna soicindí atá romhainn.",
|
||||||
|
"Let's go!" : "A ligean ar dul!",
|
||||||
|
"Please enter your name!" : "Cuir isteach d'ainm le do thoil!",
|
||||||
|
"The name must be at least 3 characters long." : "Caithfidh an t-ainm a bheith 3 charachtar ar a laghad ar fad.",
|
||||||
|
"You have to provide the correct password to join the meeting." : "Caithfidh tú an pasfhocal ceart a sholáthar chun páirt a ghlacadh sa chruinniú.",
|
||||||
|
"Display name" : "Ainm taispeána",
|
||||||
|
"Password" : "Pasfhocal",
|
||||||
|
"Join" : "Bígí",
|
||||||
|
"Have an account? Log in." : "An bhfuil cuntas agat? Logáil isteach.",
|
||||||
|
"Hello %s" : "Dia duit %s",
|
||||||
|
"Name, group …" : "Ainm, grúpa…",
|
||||||
|
"Group" : "Grúpa",
|
||||||
|
"Searching" : "Cuardach",
|
||||||
|
"No matches" : "Gan aon chluichí",
|
||||||
|
"admin" : "riar",
|
||||||
|
"moderator" : "modhnóir",
|
||||||
|
"user" : "úsáideoir",
|
||||||
|
"Name" : "Ainm",
|
||||||
|
"Access" : "Rochtain",
|
||||||
|
"Max" : "Uas",
|
||||||
|
"Record" : "Taifead",
|
||||||
|
"Recordings" : "Taifeadtaí",
|
||||||
|
"You are not permitted to create a room." : "Níl cead agat seomra a chruthú.",
|
||||||
|
"You exceeded the maximum number of rooms." : "Sháraigh tú uaslíon na seomraí.",
|
||||||
|
"Room quota:" : "Cuóta seomra:",
|
||||||
|
"Edit" : "Cuir in eagar",
|
||||||
|
"Descriptive name of this room." : "Ainm tuairisciúil an tseomra seo.",
|
||||||
|
"This message is shown to all users in the chat area after they joined." : "Taispeántar an teachtaireacht seo do gach úsáideoir sa limistéar comhrá tar éis dóibh dul isteach ann.",
|
||||||
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Socraíonn sé teorainn ar líon na rannpháirtithe don seomra seo. Ciallaíonn nialais nach bhfuil aon teorainn ann.",
|
||||||
|
"If enabled, the moderator is able to start the recording." : "Má tá sé cumasaithe, beidh an modhnóir in ann an taifeadadh a thosú.",
|
||||||
|
"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." : "Míniú ar na coincheapa éagsúla a chomhdhéanann roghanna rochtana :1- Poiblí: Is féidir le haon duine a bhfuil an nasc aige páirt a ghlacadh.- 2Inmheánach: Ní féidir ach le húsáideoirí Nextcloud páirt a ghlacadh.- 3Pasfhocal: Ní féidir ach le haíonna a bhfuil an pasfhocal acu páirt a ghlacadh..- 4Seomra feithimh: Modhnóir ní mór dóibh glacadh le gach aoi sular féidir leo páirt a ghlacadh.- 5Srianta : Ní féidir ach le húsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra seo.",
|
||||||
|
"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." : "Tá modhnóir in ann gach rannpháirtí i gcruinniú a bhainistiú lena n-áirítear láithreoir a chiceáil, a bhalbhú nó a roghnú. Tá úsáideoirí a bhfuil an modhnóir ról acu in ann cruinniú a dhúnadh freisin nó na socruithe réamhshocraithe a athrú.",
|
||||||
|
"If enabled, normal users have to wait until a moderator is in the room." : "Má tá sé cumasaithe, caithfidh gnáthúsáideoirí fanacht go dtí go mbeidh modhnóir sa seomra.",
|
||||||
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Má tá sé cumasaithe, gintear URL modhnóra a cheadaíonn rochtain le cead an mhodhnóra.",
|
||||||
|
"Only selected users and groups are allowed to access the room." : "Ní cheadaítear ach úsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra.",
|
||||||
|
"If disabled, a microphone is needed to join the conference." : "Má tá sé díchumasaithe, beidh micreafón ag teastáil chun páirt a ghlacadh sa chomhdháil.",
|
||||||
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Má tá sé cumasaithe, níl cead ag an úsáideoir réamhghlao macalla agus ceamara gréasáin a dhéanamh ar an gcéad dul isteach (ar fáil ó fhreastalaí BBB 2.3).",
|
||||||
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Má tá sé cumasaithe, tá an liosta úsáideoirí, an limistéar comhrá agus an cur i láthair i bhfolach de réir réamhshocraithe.",
|
||||||
|
"If enabled, all users will join the meeting muted." : "Má tá sé cumasaithe, glacfaidh gach úsáideoir páirt sa chruinniú balbhaithe.",
|
||||||
|
"Edit \"{room}\"" : "Cuir \"{room}\" in eagar",
|
||||||
|
"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",
|
||||||
|
"Recording" : "Taifeadadh",
|
||||||
|
"Require moderator to start room" : "Éilíonn an modhnóir chun an seomra a thosú",
|
||||||
|
"Listen only option" : "Éist leis an rogha amháin",
|
||||||
|
"Skip media check before usage" : "Scipeáil seiceáil na meán roimh úsáid",
|
||||||
|
"Clean layout" : "Leagan amach glan",
|
||||||
|
"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",
|
||||||
|
"_%n participant_::_%n participants_" : ["%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí"],
|
||||||
|
"Delete" : "Scrios",
|
||||||
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.",
|
||||||
|
"Delete \"{name}\"?" : "An bhfuil fonn ort \"{name}\" a scriosadh?",
|
||||||
|
"Select target folder" : "Roghnaigh fillteán sprice",
|
||||||
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL an tseomra i \"{path}\" mar \"{filename}\".",
|
||||||
|
"Link stored" : "Nasc stóráilte",
|
||||||
|
"URL to room could not be stored." : "Níorbh fhéidir URL an tseomra a stóráil.",
|
||||||
|
"Error" : "Earráid",
|
||||||
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL le cur i láthair in \"{path}\" mar \"{filename}\".",
|
||||||
|
"URL to presentation could not be stored." : "Níorbh fhéidir URL an léirithe a stóráil.",
|
||||||
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat an taifeadadh ó \"{startDate}\" a scriosadh? Ní féidir an oibríocht seo a chealú.",
|
||||||
|
"Delete?" : "Scrios?",
|
||||||
|
"Could not delete record" : "Níorbh fhéidir an taifead a scriosadh",
|
||||||
|
"Server error" : "Earráid freastalaí",
|
||||||
|
"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í",
|
||||||
|
"Max. participants" : "Uas. rannpháirtithe",
|
||||||
|
"Group …" : "Grúpa…",
|
||||||
|
"Restrictions do not affect existing rooms. Minus one means the value is unlimited. The least restrictive option is chosen for every user if multiple restrictions apply." : "Ní chuireann srianta isteach ar sheomraí atá ann cheana féin. Ciallaíonn lúide a haon go bhfuil an luach gan teorainn. Roghnaítear an rogha is lú srianta do gach úsáideoir má bhíonn srianta iolracha i bhfeidhm.",
|
||||||
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat na srianta don ghrúpa \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.",
|
||||||
|
"Delete restrictions for \"{name}\"?" : "Scrios srianta do \"{name}\"?",
|
||||||
|
"Settings saved" : "Socruithe sábháilte",
|
||||||
|
"Unexpected error occurred" : "Tharla earráid gan choinne",
|
||||||
|
"API URL is invalid" : "Tá URL API neamhbhailí",
|
||||||
|
"API secret is invalid" : "Tá rún API neamhbhailí",
|
||||||
|
"URL has to start with HTTPS" : "Caithfidh URL tosú le HTTPS",
|
||||||
|
"URL has to contain the {token} placeholder" : "Caithfidh an sealbhóir áit {token} a bheith sa URL",
|
||||||
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Caithfidh URL tosú le https:// agus {token} a bheith ann. Ina theannta sin is féidir an sealbhóir áitribh {user} a úsáid.",
|
||||||
|
"The file \"{filename}\" was uploaded to your room." : "Uaslódáladh an comhad \"{filename}\" chuig do sheomra.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra. B'fhéidir nach dtacaíonn do fhreastalaí BigBlueButton leis an ngníomh seo.",
|
||||||
|
"Send file to BBB" : "Seol an comhad chuig BBB",
|
||||||
|
"Send to" : "Sheoladh chuig",
|
||||||
|
"Start with" : "Tosaigh le",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Roghnaigh an seomra inar mhaith leat an comhad \"{filename}\" a úsáid le do thoil.",
|
||||||
|
"No rooms available!" : "Níl seomraí ar fáil!",
|
||||||
|
"Send to BBB" : "Seol chuig BBB",
|
||||||
|
"_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil."]
|
||||||
|
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
|
||||||
|
}
|
|
@ -6,9 +6,9 @@ OC.L10N.register(
|
||||||
"Password" : "Facal-faire",
|
"Password" : "Facal-faire",
|
||||||
"Name" : "Ainm",
|
"Name" : "Ainm",
|
||||||
"Edit" : "Deasaich",
|
"Edit" : "Deasaich",
|
||||||
|
"Sharing" : "Co-roinneadh",
|
||||||
"Create" : "Cruthaich",
|
"Create" : "Cruthaich",
|
||||||
"Delete" : "Sguab às",
|
"Delete" : "Sguab às",
|
||||||
"Error" : "Mearachd",
|
"Error" : "Mearachd"
|
||||||
"Share" : "Co-roinn"
|
|
||||||
},
|
},
|
||||||
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;");
|
"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",
|
"Password" : "Facal-faire",
|
||||||
"Name" : "Ainm",
|
"Name" : "Ainm",
|
||||||
"Edit" : "Deasaich",
|
"Edit" : "Deasaich",
|
||||||
|
"Sharing" : "Co-roinneadh",
|
||||||
"Create" : "Cruthaich",
|
"Create" : "Cruthaich",
|
||||||
"Delete" : "Sguab às",
|
"Delete" : "Sguab às",
|
||||||
"Error" : "Mearachd",
|
"Error" : "Mearachd"
|
||||||
"Share" : "Co-roinn"
|
|
||||||
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
|
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
|
||||||
}
|
}
|
22
l10n/gl.js
22
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.",
|
"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" : "Integración de BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton en Nextcloud",
|
"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",
|
"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.",
|
"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",
|
"Back to %s" : "Volver a %s",
|
||||||
|
@ -56,12 +56,15 @@ OC.L10N.register(
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Non hai coincidencias",
|
"No matches" : "Non hai coincidencias",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderador",
|
||||||
|
"user" : "usuario",
|
||||||
"Name" : "Nome",
|
"Name" : "Nome",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx",
|
"Max" : "Máx",
|
||||||
"Record" : "Gravar",
|
"Record" : "Gravar",
|
||||||
"Recordings" : "Gravacións",
|
"Recordings" : "Gravacións",
|
||||||
"You are not permitted to create a room." : "Non ten permiso para crear unha sala",
|
"You are not permitted to create a room." : "Non ten permisos para crear unha sala",
|
||||||
"You exceeded the maximum number of rooms." : "Excedeu o número máximo de salas.",
|
"You exceeded the maximum number of rooms." : "Excedeu o número máximo de salas.",
|
||||||
"Room quota:" : "Cota de salas:",
|
"Room quota:" : "Cota de salas:",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
@ -69,7 +72,7 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Esta mensaxe amosase a todos os usuarios da área de parolas após unirse.",
|
"This message is shown to all users in the chat area after they joined." : "Esta mensaxe amosase a todos os usuarios da área de parolas após unirse.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estabeleza un límite para o número de participantes nesta sala. Cero significa que non hai límite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estabeleza un límite para o número de participantes nesta sala. Cero significa que non hai límite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Se está activado, o moderador pode iniciar a gravación.",
|
"If enabled, the moderator is able to start the recording." : "Se está activado, o moderador pode iniciar a gravación.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pública: todos os que coñecen a ligazón poden unirse. Contrasinal: Os convidados teñen que fornecer un contrasinal. Sala de espera: Un moderador ten que aceptar a todos os convidados antes de que poidan unirse. Interna: só os usuarios de Nextcloud poden unirse.",
|
"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." : "Explicación dos distintos conceptos que constitúen as opcións de acceso :<br>- Público: Pode unirse calquera persoa que teña a ligazón.- <br>Interno: Só os poden unirse osusuarios de Nextcloud.- <br>Contrasinal: Só poden unirse os convidados que teñan o contrasinal..- <br>Sala de espera: Un moderador debe aceptar cada convidado antes de poder unirse.- <br>Restrinxido: só os usuarios e grupos seleccionados poden acceder a esta sala.",
|
||||||
"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." : "Un moderador é quen de xestionar a todos os participantes nunha xuntanza incluíndo expulsar, silenciar ou seleccionar un presentador. Os usuarios co rol de moderador tamén poden pechar unha xuntanza ou cambiar os axustes predeterminados.",
|
"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." : "Un moderador é quen de xestionar a todos os participantes nunha xuntanza incluíndo expulsar, silenciar ou seleccionar un presentador. Os usuarios co rol de moderador tamén poden pechar unha xuntanza ou cambiar os axustes predeterminados.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Se está activado, os usuarios normais deberán agardar a que un moderador estea na sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Se está activado, os usuarios normais deberán agardar a que un moderador estea na sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Se está activado, xérase un URL de moderador que permite o acceso con permisos de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Se está activado, xérase un URL de moderador que permite o acceso con permisos de moderador.",
|
||||||
|
@ -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 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 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, 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}»",
|
"Edit \"{room}\"" : "Editar «{room}»",
|
||||||
"Room URL" : "URL da sala",
|
"Room URL" : "URL da sala",
|
||||||
"Welcome" : "Benvido",
|
"Welcome" : "Benvido",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
|
"Sharing" : "Compartindo",
|
||||||
"Every participant is moderator" : "Todos os participantes son moderadores",
|
"Every participant is moderator" : "Todos os participantes son moderadores",
|
||||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||||
"Miscellaneous" : "Miscelánea",
|
"Miscellaneous" : "Miscelánea",
|
||||||
|
@ -90,9 +94,10 @@ OC.L10N.register(
|
||||||
"Listen only option" : "Opción de só escoitar",
|
"Listen only option" : "Opción de só escoitar",
|
||||||
"Skip media check before usage" : "Omitir a comprobación de medios antes do uso",
|
"Skip media check before usage" : "Omitir a comprobación de medios antes do uso",
|
||||||
"Clean layout" : "Disposición limpa",
|
"Clean layout" : "Disposición limpa",
|
||||||
"Join meeting muted" : "Unirse á xuntanza silenciado",
|
"Join meeting muted" : "Unirse á xuntanza enmudecido",
|
||||||
"Room name" : "Nome da sala",
|
"Room name" : "Nome da sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Open recording" : "Gravación aberta",
|
"Open recording" : "Gravación aberta",
|
||||||
"Copy to clipboard" : "Copiar no portapapeis.",
|
"Copy to clipboard" : "Copiar no portapapeis.",
|
||||||
"Save as file" : "Gardar como ficheiro",
|
"Save as file" : "Gardar como ficheiro",
|
||||||
|
@ -111,9 +116,10 @@ OC.L10N.register(
|
||||||
"Delete?" : "Eliminar?",
|
"Delete?" : "Eliminar?",
|
||||||
"Could not delete record" : "Non foi posíbel eliminar a gravación",
|
"Could not delete record" : "Non foi posíbel eliminar a gravación",
|
||||||
"Server error" : "Produciuse un erro de servidor",
|
"Server error" : "Produciuse un erro de servidor",
|
||||||
"moderator" : "moderador",
|
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
||||||
"admin" : "admin",
|
"Open room" : "Sala aberta",
|
||||||
"Share" : "Compartir",
|
"Start" : "Iniciar",
|
||||||
|
"Clone room" : "Clonar a sala",
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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",
|
"Max. rooms" : "Máx. de salas",
|
||||||
|
|
22
l10n/gl.json
22
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.",
|
"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" : "Integración de BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton en Nextcloud",
|
"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",
|
"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.",
|
"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",
|
"Back to %s" : "Volver a %s",
|
||||||
|
@ -54,12 +54,15 @@
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Non hai coincidencias",
|
"No matches" : "Non hai coincidencias",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderador",
|
||||||
|
"user" : "usuario",
|
||||||
"Name" : "Nome",
|
"Name" : "Nome",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx",
|
"Max" : "Máx",
|
||||||
"Record" : "Gravar",
|
"Record" : "Gravar",
|
||||||
"Recordings" : "Gravacións",
|
"Recordings" : "Gravacións",
|
||||||
"You are not permitted to create a room." : "Non ten permiso para crear unha sala",
|
"You are not permitted to create a room." : "Non ten permisos para crear unha sala",
|
||||||
"You exceeded the maximum number of rooms." : "Excedeu o número máximo de salas.",
|
"You exceeded the maximum number of rooms." : "Excedeu o número máximo de salas.",
|
||||||
"Room quota:" : "Cota de salas:",
|
"Room quota:" : "Cota de salas:",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
@ -67,7 +70,7 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Esta mensaxe amosase a todos os usuarios da área de parolas após unirse.",
|
"This message is shown to all users in the chat area after they joined." : "Esta mensaxe amosase a todos os usuarios da área de parolas após unirse.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estabeleza un límite para o número de participantes nesta sala. Cero significa que non hai límite.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Estabeleza un límite para o número de participantes nesta sala. Cero significa que non hai límite.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Se está activado, o moderador pode iniciar a gravación.",
|
"If enabled, the moderator is able to start the recording." : "Se está activado, o moderador pode iniciar a gravación.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pública: todos os que coñecen a ligazón poden unirse. Contrasinal: Os convidados teñen que fornecer un contrasinal. Sala de espera: Un moderador ten que aceptar a todos os convidados antes de que poidan unirse. Interna: só os usuarios de Nextcloud poden unirse.",
|
"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." : "Explicación dos distintos conceptos que constitúen as opcións de acceso :<br>- Público: Pode unirse calquera persoa que teña a ligazón.- <br>Interno: Só os poden unirse osusuarios de Nextcloud.- <br>Contrasinal: Só poden unirse os convidados que teñan o contrasinal..- <br>Sala de espera: Un moderador debe aceptar cada convidado antes de poder unirse.- <br>Restrinxido: só os usuarios e grupos seleccionados poden acceder a esta sala.",
|
||||||
"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." : "Un moderador é quen de xestionar a todos os participantes nunha xuntanza incluíndo expulsar, silenciar ou seleccionar un presentador. Os usuarios co rol de moderador tamén poden pechar unha xuntanza ou cambiar os axustes predeterminados.",
|
"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." : "Un moderador é quen de xestionar a todos os participantes nunha xuntanza incluíndo expulsar, silenciar ou seleccionar un presentador. Os usuarios co rol de moderador tamén poden pechar unha xuntanza ou cambiar os axustes predeterminados.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Se está activado, os usuarios normais deberán agardar a que un moderador estea na sala.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Se está activado, os usuarios normais deberán agardar a que un moderador estea na sala.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Se está activado, xérase un URL de moderador que permite o acceso con permisos de moderador.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Se está activado, xérase un URL de moderador que permite o acceso con permisos de moderador.",
|
||||||
|
@ -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 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 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, 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}»",
|
"Edit \"{room}\"" : "Editar «{room}»",
|
||||||
"Room URL" : "URL da sala",
|
"Room URL" : "URL da sala",
|
||||||
"Welcome" : "Benvido",
|
"Welcome" : "Benvido",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
|
"Sharing" : "Compartindo",
|
||||||
"Every participant is moderator" : "Todos os participantes son moderadores",
|
"Every participant is moderator" : "Todos os participantes son moderadores",
|
||||||
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
"Moderator access via URL" : "Acceso de moderador a través de URL",
|
||||||
"Miscellaneous" : "Miscelánea",
|
"Miscellaneous" : "Miscelánea",
|
||||||
|
@ -88,9 +92,10 @@
|
||||||
"Listen only option" : "Opción de só escoitar",
|
"Listen only option" : "Opción de só escoitar",
|
||||||
"Skip media check before usage" : "Omitir a comprobación de medios antes do uso",
|
"Skip media check before usage" : "Omitir a comprobación de medios antes do uso",
|
||||||
"Clean layout" : "Disposición limpa",
|
"Clean layout" : "Disposición limpa",
|
||||||
"Join meeting muted" : "Unirse á xuntanza silenciado",
|
"Join meeting muted" : "Unirse á xuntanza enmudecido",
|
||||||
"Room name" : "Nome da sala",
|
"Room name" : "Nome da sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
|
"Published" : "Publicado",
|
||||||
"Open recording" : "Gravación aberta",
|
"Open recording" : "Gravación aberta",
|
||||||
"Copy to clipboard" : "Copiar no portapapeis.",
|
"Copy to clipboard" : "Copiar no portapapeis.",
|
||||||
"Save as file" : "Gardar como ficheiro",
|
"Save as file" : "Gardar como ficheiro",
|
||||||
|
@ -109,9 +114,10 @@
|
||||||
"Delete?" : "Eliminar?",
|
"Delete?" : "Eliminar?",
|
||||||
"Could not delete record" : "Non foi posíbel eliminar a gravación",
|
"Could not delete record" : "Non foi posíbel eliminar a gravación",
|
||||||
"Server error" : "Produciuse un erro de servidor",
|
"Server error" : "Produciuse un erro de servidor",
|
||||||
"moderator" : "moderador",
|
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
||||||
"admin" : "admin",
|
"Open room" : "Sala aberta",
|
||||||
"Share" : "Compartir",
|
"Start" : "Iniciar",
|
||||||
|
"Clone room" : "Clonar a sala",
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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",
|
"Max. rooms" : "Máx. de salas",
|
||||||
|
|
|
@ -16,6 +16,7 @@ OC.L10N.register(
|
||||||
"Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.",
|
"Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.",
|
||||||
"Hello %s" : "שלום %s",
|
"Hello %s" : "שלום %s",
|
||||||
"Group" : "קבוצה",
|
"Group" : "קבוצה",
|
||||||
|
"moderator" : "מפקח/ת",
|
||||||
"Name" : "שם",
|
"Name" : "שם",
|
||||||
"Access" : "גישה",
|
"Access" : "גישה",
|
||||||
"Max" : "מרבי",
|
"Max" : "מרבי",
|
||||||
|
@ -23,6 +24,7 @@ OC.L10N.register(
|
||||||
"Recordings" : "הקלטה",
|
"Recordings" : "הקלטה",
|
||||||
"Edit" : "עריכה",
|
"Edit" : "עריכה",
|
||||||
"Welcome" : "ברוך בואך",
|
"Welcome" : "ברוך בואך",
|
||||||
|
"Sharing" : "שיתוף",
|
||||||
"Miscellaneous" : "שונות",
|
"Miscellaneous" : "שונות",
|
||||||
"Room name" : "שם החדר",
|
"Room name" : "שם החדר",
|
||||||
"Create" : "יצירה",
|
"Create" : "יצירה",
|
||||||
|
@ -40,11 +42,10 @@ OC.L10N.register(
|
||||||
"Delete?" : "למחוק?",
|
"Delete?" : "למחוק?",
|
||||||
"Could not delete record" : "לא ניתן למחוק רשומה",
|
"Could not delete record" : "לא ניתן למחוק רשומה",
|
||||||
"Server error" : "שגיאת שרת",
|
"Server error" : "שגיאת שרת",
|
||||||
"moderator" : "מפקח/ת",
|
"Start" : "התחלה",
|
||||||
"Share" : "שיתוף",
|
|
||||||
"Loading" : "בטעינה",
|
"Loading" : "בטעינה",
|
||||||
"Settings saved" : "הגדרות נשמרו",
|
"Settings saved" : "הגדרות נשמרו",
|
||||||
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
||||||
"API secret is invalid" : "סוד ה־API שגוי"
|
"API secret is invalid" : "סוד ה־API שגוי"
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");
|
"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;");
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
"Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.",
|
"Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.",
|
||||||
"Hello %s" : "שלום %s",
|
"Hello %s" : "שלום %s",
|
||||||
"Group" : "קבוצה",
|
"Group" : "קבוצה",
|
||||||
|
"moderator" : "מפקח/ת",
|
||||||
"Name" : "שם",
|
"Name" : "שם",
|
||||||
"Access" : "גישה",
|
"Access" : "גישה",
|
||||||
"Max" : "מרבי",
|
"Max" : "מרבי",
|
||||||
|
@ -21,6 +22,7 @@
|
||||||
"Recordings" : "הקלטה",
|
"Recordings" : "הקלטה",
|
||||||
"Edit" : "עריכה",
|
"Edit" : "עריכה",
|
||||||
"Welcome" : "ברוך בואך",
|
"Welcome" : "ברוך בואך",
|
||||||
|
"Sharing" : "שיתוף",
|
||||||
"Miscellaneous" : "שונות",
|
"Miscellaneous" : "שונות",
|
||||||
"Room name" : "שם החדר",
|
"Room name" : "שם החדר",
|
||||||
"Create" : "יצירה",
|
"Create" : "יצירה",
|
||||||
|
@ -38,11 +40,10 @@
|
||||||
"Delete?" : "למחוק?",
|
"Delete?" : "למחוק?",
|
||||||
"Could not delete record" : "לא ניתן למחוק רשומה",
|
"Could not delete record" : "לא ניתן למחוק רשומה",
|
||||||
"Server error" : "שגיאת שרת",
|
"Server error" : "שגיאת שרת",
|
||||||
"moderator" : "מפקח/ת",
|
"Start" : "התחלה",
|
||||||
"Share" : "שיתוף",
|
|
||||||
"Loading" : "בטעינה",
|
"Loading" : "בטעינה",
|
||||||
"Settings saved" : "הגדרות נשמרו",
|
"Settings saved" : "הגדרות נשמרו",
|
||||||
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
||||||
"API secret is invalid" : "סוד ה־API שגוי"
|
"API secret is invalid" : "סוד ה־API שגוי"
|
||||||
},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
|
},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"
|
||||||
}
|
}
|
|
@ -52,6 +52,8 @@ OC.L10N.register(
|
||||||
"Group" : "Grupa",
|
"Group" : "Grupa",
|
||||||
"Searching" : "Traženje",
|
"Searching" : "Traženje",
|
||||||
"No matches" : "Nema podudaranja",
|
"No matches" : "Nema podudaranja",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
"Name" : "Naziv",
|
"Name" : "Naziv",
|
||||||
"Access" : "Pristup",
|
"Access" : "Pristup",
|
||||||
"Max" : "Maks.",
|
"Max" : "Maks.",
|
||||||
|
@ -65,7 +67,6 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Ova se poruka prikazuje svim pridruženim korisnicima u prozoru za razmjenu poruka.",
|
"This message is shown to all users in the chat area after they joined." : "Ova se poruka prikazuje svim pridruženim korisnicima u prozoru za razmjenu poruka.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Postavlja ograničenje broja sudionika u ovoj sobi. Nula znači da nema ograničenja.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Postavlja ograničenje broja sudionika u ovoj sobi. Nula znači da nema ograničenja.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Ako je omogućeno, moderator može početi snimati.",
|
"If enabled, the moderator is able to start the recording." : "Ako je omogućeno, moderator može početi snimati.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Javno: može se pridružiti bilo tko putem poveznice. Zaporka: gosti moraju unijeti zaporku. Čekaonica: moderator mora odobriti svakog gosta koji se želi pridružiti. Interno: mogu se pridružiti samo Nextcloudovi korisnici.",
|
|
||||||
"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." : "Moderator može upravljati svim sudionicima sastanka, što znači da može izbaciti sudionika, utišati sudionika ili odabrati predavača. Korisnici s ulogom moderatora također mogu zatvoriti sastanak ili promijeniti zadane postavke.",
|
"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." : "Moderator može upravljati svim sudionicima sastanka, što znači da može izbaciti sudionika, utišati sudionika ili odabrati predavača. Korisnici s ulogom moderatora također mogu zatvoriti sastanak ili promijeniti zadane postavke.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Ako je to omogućeno, korisnici moraju pričekati da moderator dođe u sobu.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Ako je to omogućeno, korisnici moraju pričekati da moderator dođe u sobu.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ako je omogućeno, generira se URL moderatora koji omogućuje pristup uz dopuštenje moderatora.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ako je omogućeno, generira se URL moderatora koji omogućuje pristup uz dopuštenje moderatora.",
|
||||||
|
@ -77,6 +78,7 @@ OC.L10N.register(
|
||||||
"Room URL" : "URL sobe",
|
"Room URL" : "URL sobe",
|
||||||
"Welcome" : "Dobrodošli",
|
"Welcome" : "Dobrodošli",
|
||||||
"Participant limit" : "Ograničenje broja sudionika",
|
"Participant limit" : "Ograničenje broja sudionika",
|
||||||
|
"Sharing" : "Dijeljenje",
|
||||||
"Every participant is moderator" : "Svaki sudionik je moderator",
|
"Every participant is moderator" : "Svaki sudionik je moderator",
|
||||||
"Moderator access via URL" : "Pristup moderatora putem URL-a",
|
"Moderator access via URL" : "Pristup moderatora putem URL-a",
|
||||||
"Miscellaneous" : "Razno",
|
"Miscellaneous" : "Razno",
|
||||||
|
@ -105,9 +107,6 @@ OC.L10N.register(
|
||||||
"Delete?" : "Izbrisati?",
|
"Delete?" : "Izbrisati?",
|
||||||
"Could not delete record" : "Zapis nije moguće izbrisati",
|
"Could not delete record" : "Zapis nije moguće izbrisati",
|
||||||
"Server error" : "Greška poslužitelja",
|
"Server error" : "Greška poslužitelja",
|
||||||
"moderator" : "moderator",
|
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Dijeli",
|
|
||||||
"Loading" : "Učitavanje",
|
"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.",
|
"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",
|
"Max. rooms" : "Maks. soba",
|
||||||
|
|
|
@ -50,6 +50,8 @@
|
||||||
"Group" : "Grupa",
|
"Group" : "Grupa",
|
||||||
"Searching" : "Traženje",
|
"Searching" : "Traženje",
|
||||||
"No matches" : "Nema podudaranja",
|
"No matches" : "Nema podudaranja",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderator",
|
||||||
"Name" : "Naziv",
|
"Name" : "Naziv",
|
||||||
"Access" : "Pristup",
|
"Access" : "Pristup",
|
||||||
"Max" : "Maks.",
|
"Max" : "Maks.",
|
||||||
|
@ -63,7 +65,6 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Ova se poruka prikazuje svim pridruženim korisnicima u prozoru za razmjenu poruka.",
|
"This message is shown to all users in the chat area after they joined." : "Ova se poruka prikazuje svim pridruženim korisnicima u prozoru za razmjenu poruka.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Postavlja ograničenje broja sudionika u ovoj sobi. Nula znači da nema ograničenja.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Postavlja ograničenje broja sudionika u ovoj sobi. Nula znači da nema ograničenja.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Ako je omogućeno, moderator može početi snimati.",
|
"If enabled, the moderator is able to start the recording." : "Ako je omogućeno, moderator može početi snimati.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Javno: može se pridružiti bilo tko putem poveznice. Zaporka: gosti moraju unijeti zaporku. Čekaonica: moderator mora odobriti svakog gosta koji se želi pridružiti. Interno: mogu se pridružiti samo Nextcloudovi korisnici.",
|
|
||||||
"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." : "Moderator može upravljati svim sudionicima sastanka, što znači da može izbaciti sudionika, utišati sudionika ili odabrati predavača. Korisnici s ulogom moderatora također mogu zatvoriti sastanak ili promijeniti zadane postavke.",
|
"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." : "Moderator može upravljati svim sudionicima sastanka, što znači da može izbaciti sudionika, utišati sudionika ili odabrati predavača. Korisnici s ulogom moderatora također mogu zatvoriti sastanak ili promijeniti zadane postavke.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Ako je to omogućeno, korisnici moraju pričekati da moderator dođe u sobu.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Ako je to omogućeno, korisnici moraju pričekati da moderator dođe u sobu.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ako je omogućeno, generira se URL moderatora koji omogućuje pristup uz dopuštenje moderatora.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ako je omogućeno, generira se URL moderatora koji omogućuje pristup uz dopuštenje moderatora.",
|
||||||
|
@ -75,6 +76,7 @@
|
||||||
"Room URL" : "URL sobe",
|
"Room URL" : "URL sobe",
|
||||||
"Welcome" : "Dobrodošli",
|
"Welcome" : "Dobrodošli",
|
||||||
"Participant limit" : "Ograničenje broja sudionika",
|
"Participant limit" : "Ograničenje broja sudionika",
|
||||||
|
"Sharing" : "Dijeljenje",
|
||||||
"Every participant is moderator" : "Svaki sudionik je moderator",
|
"Every participant is moderator" : "Svaki sudionik je moderator",
|
||||||
"Moderator access via URL" : "Pristup moderatora putem URL-a",
|
"Moderator access via URL" : "Pristup moderatora putem URL-a",
|
||||||
"Miscellaneous" : "Razno",
|
"Miscellaneous" : "Razno",
|
||||||
|
@ -103,9 +105,6 @@
|
||||||
"Delete?" : "Izbrisati?",
|
"Delete?" : "Izbrisati?",
|
||||||
"Could not delete record" : "Zapis nije moguće izbrisati",
|
"Could not delete record" : "Zapis nije moguće izbrisati",
|
||||||
"Server error" : "Greška poslužitelja",
|
"Server error" : "Greška poslužitelja",
|
||||||
"moderator" : "moderator",
|
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Dijeli",
|
|
||||||
"Loading" : "Učitavanje",
|
"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.",
|
"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",
|
"Max. rooms" : "Maks. soba",
|
||||||
|
|
46
l10n/hu.js
46
l10n/hu.js
|
@ -19,15 +19,15 @@ OC.L10N.register(
|
||||||
"Waiting room for all users" : "Váróterem az összes felhasználó számára",
|
"Waiting room for all users" : "Váróterem az összes felhasználó számára",
|
||||||
"Internal" : "Belső",
|
"Internal" : "Belső",
|
||||||
"Internal restricted" : "Belső, korlátozott",
|
"Internal restricted" : "Belső, korlátozott",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Az API URL vagy titok nincs beállítva. Lépjen kapcsolatba a rendszergazdával.",
|
"API URL or secret not configured. Please contact your administrator." : "Az API webcíme vagy titka nincs beállítva. Lépjen kapcsolatba a rendszergazdával.",
|
||||||
"BigBlueButton Integration" : "BigBlueButton integráció",
|
"BigBlueButton Integration" : "BigBlueButton integráció",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integráció a Nextcloudhoz",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton integráció a Nextcloudhoz",
|
||||||
"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.*" : "Ez az alkalmazás lehetővé teszi találkozók létrehozását a [BigBlueButton(https://bigbluebutton.org)] külső telepítésével .\n\n* ** Szoba beállítása ** Hozzon létre több szobakonfigurációt névvel, üdvözlő üzenettel ...\n* ** Vendég link megosztása ** A szoba hivatkozásának megosztása az összes vendéggel\n* ** Moderátor link megosztása ** Moderátorok meghívása a szobába\n* ** Szobák megosztása ** Szobák megosztása tagokkal, csoportokkal vagy körökkel\n* ** Egyéni prezentáció ** Indítson el egy szobát a fájlböngészőből kiválasztott prezentációval\n* ** Felvételek kezelése ** A szobák felvételeinek megtekintése, megosztása és törlése\n* ** Korlátozások ** A szoba létrehozását bizonyos csoportokra korlátozza\n* ** Tevékenységek ** Áttekintés a szobai tevékenységekről\n\nGyors útmutató és további információk itt: [readme(https://github.com/sualko/cloud_bbb)].\nTetszik ez az alkalmazás? Adjon valamit vissza a nyílt forráskódú közösségnek, és nézze meg webhelyünket [a hozzájárulás módjai] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nFejlesztő kerestetik! Ha van ideje, félelmetes lenne, ha tudna segíteni az alkalmazás fejlesztésében.\n\n* Ez az alkalmazás integrálja a BigBlueButton alkalmazást, és azt a BigBlueButton Inc. nem hagyta jóvá vagy hitelesítette. A BigBlueButton és a BigBlueButton embléma a BigBlueButton Inc. védjegyei.*",
|
"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.*" : "Ez az alkalmazás lehetővé teszi találkozók létrehozását a [BigBlueButton(https://bigbluebutton.org)] külső telepítésével .\n\n* ** Szoba beállítása ** Hozzon létre több szobakonfigurációt névvel, üdvözlő üzenettel ...\n* ** Vendég link megosztása ** A szoba hivatkozásának megosztása az összes vendéggel\n* ** Moderátor link megosztása ** Moderátorok meghívása a szobába\n* ** Szobák megosztása ** Szobák megosztása tagokkal, csoportokkal vagy körökkel\n* ** Egyéni prezentáció ** Indítson el egy szobát a fájlböngészőből kiválasztott prezentációval\n* ** Felvételek kezelése ** A szobák felvételeinek megtekintése, megosztása és törlése\n* ** Korlátozások ** A szoba létrehozását bizonyos csoportokra korlátozza\n* ** Tevékenységek ** Áttekintés a szobai tevékenységekről\n\nGyors útmutató és további információk itt: [readme(https://github.com/sualko/cloud_bbb)].\nTetszik ez az alkalmazás? Adjon valamit vissza a nyílt forráskódú közösségnek, és nézze meg webhelyünket [a hozzájárulás módjai] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nFejlesztő kerestetik! Ha van ideje, félelmetes lenne, ha tudna segíteni az alkalmazás fejlesztésében.\n\n* Ez az alkalmazás integrálja a BigBlueButton alkalmazást, és azt a BigBlueButton Inc. nem hagyta jóvá vagy hitelesítette. A BigBlueButton és a BigBlueButton embléma a BigBlueButton Inc. védjegyei.*",
|
||||||
"Room not found" : "A szoba nem található",
|
"Room not found" : "A szoba nem található",
|
||||||
"The room could not be found. Maybe it was deleted?" : "A szoba nem található. Lehet, hogy törölték?",
|
"The room could not be found. Maybe it was deleted?" : "A szoba nem található. Lehet, hogy törölték?",
|
||||||
"Back to %s" : "Vissza ide: %s",
|
"Back to %s" : "Vissza ide: %s",
|
||||||
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API URL és titok megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.",
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API webcímének és titkának megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.",
|
||||||
"API URL" : "API URL",
|
"API URL" : "API webcíme",
|
||||||
"API secret" : "API titok",
|
"API secret" : "API titok",
|
||||||
"Save" : "Mentés",
|
"Save" : "Mentés",
|
||||||
"Show room manager in app navigation instead of settings page." : "A beállítások oldal helyett, a szobakezelő megjelenítése az alkalmazásnavigációban.",
|
"Show room manager in app navigation instead of settings page." : "A beállítások oldal helyett, a szobakezelő megjelenítése az alkalmazásnavigációban.",
|
||||||
|
@ -38,9 +38,9 @@ OC.L10N.register(
|
||||||
"Community" : "Közösség",
|
"Community" : "Közösség",
|
||||||
"Are you enjoying this app? Give something back to the open source community." : "Élvezi az alkalmazás használatát? Adjon vissza valamit a nyílt forráskódú közösségnek.",
|
"Are you enjoying this app? Give something back to the open source community." : "Élvezi az alkalmazás használatát? Adjon vissza valamit a nyílt forráskódú közösségnek.",
|
||||||
"Checkout the contributor guide" : "Tekintse meg a közreműködői útmutatót",
|
"Checkout the contributor guide" : "Tekintse meg a közreműködői útmutatót",
|
||||||
"URL Shortener" : "URL rövidítő",
|
"URL Shortener" : "Webcím-rövidítő",
|
||||||
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb URL-eket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.",
|
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb webcímeket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.",
|
||||||
"URL shortener" : "URL rövidítő",
|
"URL shortener" : "Webcím-rövidítő",
|
||||||
"Restrictions" : "Korlátozások",
|
"Restrictions" : "Korlátozások",
|
||||||
"You will be forwarded to the room in the next few seconds." : "Néhány másodperc múlva továbbításra kerül a szobába.",
|
"You will be forwarded to the room in the next few seconds." : "Néhány másodperc múlva továbbításra kerül a szobába.",
|
||||||
"Let's go!" : "Gyerünk!",
|
"Let's go!" : "Gyerünk!",
|
||||||
|
@ -56,6 +56,8 @@ OC.L10N.register(
|
||||||
"Group" : "Csoport",
|
"Group" : "Csoport",
|
||||||
"Searching" : "Keresés",
|
"Searching" : "Keresés",
|
||||||
"No matches" : "Nincs egyezés",
|
"No matches" : "Nincs egyezés",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderátor",
|
||||||
"Name" : "Név",
|
"Name" : "Név",
|
||||||
"Access" : "Hozzáférés",
|
"Access" : "Hozzáférés",
|
||||||
"Max" : "Maximum",
|
"Max" : "Maximum",
|
||||||
|
@ -69,30 +71,32 @@ OC.L10N.register(
|
||||||
"This message is shown to all users in the chat area after they joined." : "Ez az üzenet a csevegés minden felhasználójának megjelenik, miután csatlakoztak.",
|
"This message is shown to all users in the chat area after they joined." : "Ez az üzenet a csevegés minden felhasználójának megjelenik, miután csatlakoztak.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Korlátozza a résztvevők számát ebben a szobában. A nulla azt jelenti, hogy nincs korlátozás.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Korlátozza a résztvevők számát ebben a szobában. A nulla azt jelenti, hogy nincs korlátozás.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Ha engedélyezve van, a moderátor meg tudja kezdeni a felvételt.",
|
"If enabled, the moderator is able to start the recording." : "Ha engedélyezve van, a moderátor meg tudja kezdeni a felvételt.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Nyilvános: minden a hivatkozást ismerő személy csatlakozhat. Jelszó: A vendégeknek meg kell adniuk a jelszavukat. Váró: A moderátornak minden vendéget be kell engednie, mielőtt csatlakozhatnának. Belső: Csak a Nextcloud felhasználói csatlakozhatnak.",
|
"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." : "A hozzáférési beállítások magyarázata:<br>- Nyilvános: A hivatkozás birtokában bárki csatlakozhat. <br>- Belső: Csak a Nextcloud felhasználói csatlakozhatnak. <br>- Jelszó: Vendégek csak a jelszó ismeretében csatlakozhatnak. <br>- Váró: Egy moderátornak el kell fogadni a vendégek csatlakozását. <br>- Korlátozott: Csak a kiválasztott felhasználók és csoportok érhetik el a szobát.",
|
||||||
"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." : "A moderátor kezelheti az értekezlet összes résztvevőjét, ideértve a kirúgást, az elnémítást vagy az előadó kiválasztását. A moderátor szereppel rendelkező felhasználók bezárhatnak egy értekezletet, vagy módosíthatják az alapértelmezett beállításokat.",
|
"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." : "A moderátor kezelheti az értekezlet összes résztvevőjét, ideértve a kirúgást, az elnémítást vagy az előadó kiválasztását. A moderátor szereppel rendelkező felhasználók bezárhatnak egy értekezletet, vagy módosíthatják az alapértelmezett beállításokat.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Ha engedélyezve van, a normál felhasználóknak meg kell várniuk, amíg egy moderátor a szobában lesz.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Ha engedélyezve van, a normál felhasználóknak meg kell várniuk, amíg egy moderátor a szobában lesz.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátor URL jön létre, amely moderátori jogosultsággal biztosít hozzáférést.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátori webcím jön létre, amely moderátori jogosultsággal biztosít hozzáférést.",
|
||||||
"Only selected users and groups are allowed to access the room." : "Csak a kiválasztott felhasználók és csoportok férhetnek hozzá a szobához.",
|
"Only selected users and groups are allowed to access the room." : "Csak a kiválasztott felhasználók és csoportok férhetnek hozzá a szobához.",
|
||||||
"If disabled, a microphone is needed to join the conference." : "Hi tiltva van, mikrofonra van szükség a konferenciához való csatlakozáshoz.",
|
"If disabled, a microphone is needed to join the conference." : "Hi tiltva van, mikrofonra van szükség a konferenciához való csatlakozáshoz.",
|
||||||
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Ha engedélyezve van, akkor a felhasználónak nem kell visszhanghívást és webkamera előnézetet végeznie az első csatlakozásakor (a BBB kiszolgáló 2.3-as verziója óta érhető el).",
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Ha engedélyezve van, akkor a felhasználónak nem kell visszhanghívást és webkamera előnézetet végeznie az első csatlakozásakor (a BBB kiszolgáló 2.3-as verziója óta érhető el).",
|
||||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Ha engedélyezve van, akkor a felhasználólista, a csevegőterület és a prezentáció alapértelmezés szerint rejtett.",
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Ha engedélyezve van, akkor a felhasználólista, a csevegőterület és a prezentáció alapértelmezés szerint rejtett.",
|
||||||
"If enabled, all users will join the meeting muted." : "Ha engedélyezve van, akkor az összes felhasználó némítva csatlakozik az értekezlethez.",
|
"If enabled, all users will join the meeting muted." : "Ha engedélyezve van, akkor az összes felhasználó némítva csatlakozik az értekezlethez.",
|
||||||
"Edit \"{room}\"" : "„{room}” szerkesztése",
|
"Edit \"{room}\"" : "„{room}” szerkesztése",
|
||||||
"Room URL" : "Szoba URL",
|
"Room URL" : "Szoba webcíme",
|
||||||
"Welcome" : "Üdvözöljük",
|
"Welcome" : "Üdvözöljük",
|
||||||
"Participant limit" : "Résztvevők korlátja",
|
"Participant limit" : "Résztvevők korlátja",
|
||||||
|
"Sharing" : "Megosztás",
|
||||||
"Every participant is moderator" : "Minden résztvevő moderátor",
|
"Every participant is moderator" : "Minden résztvevő moderátor",
|
||||||
"Moderator access via URL" : "Moderátori elérés URL-en keresztül",
|
"Moderator access via URL" : "Moderátori elérés webcímen keresztül",
|
||||||
"Miscellaneous" : "Vegyes",
|
"Miscellaneous" : "Vegyes",
|
||||||
"Recording" : "Felvétel",
|
"Recording" : "Felvétel",
|
||||||
"Require moderator to start room" : "Moderátor szükséges a szoba elindításához",
|
"Require moderator to start room" : "Moderátor szükséges a szoba elindításához",
|
||||||
"Listen only option" : "Csak hallgatatás mód",
|
"Listen only option" : "Csak hallgatatás mód",
|
||||||
"Skip media check before usage" : "Használat elötti ellenőrzés kihagyása",
|
"Skip media check before usage" : "Használat előtti ellenőrzés kihagyása",
|
||||||
"Clean layout" : "Elrendezés törlése",
|
"Clean layout" : "Elrendezés törlése",
|
||||||
"Join meeting muted" : "Csatlakozás némítva",
|
"Join meeting muted" : "Csatlakozás némítva",
|
||||||
"Room name" : "Szoba neve",
|
"Room name" : "Szoba neve",
|
||||||
"Create" : "Létrehozás",
|
"Create" : "Létrehozás",
|
||||||
|
"Published" : "Közzétett",
|
||||||
"Open recording" : "Felvétel megnyitása",
|
"Open recording" : "Felvétel megnyitása",
|
||||||
"Copy to clipboard" : "Másolás a vágólapra",
|
"Copy to clipboard" : "Másolás a vágólapra",
|
||||||
"Save as file" : "Mentés fájlba",
|
"Save as file" : "Mentés fájlba",
|
||||||
|
@ -101,19 +105,17 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Biztos, hogy törli a következőt: „{name}”? Ez a művelet nem vonható vissza.",
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Biztos, hogy törli a következőt: „{name}”? Ez a művelet nem vonható vissza.",
|
||||||
"Delete \"{name}\"?" : "Törli a következőt: „{name}”?",
|
"Delete \"{name}\"?" : "Törli a következőt: „{name}”?",
|
||||||
"Select target folder" : "Célmappa kiválasztása",
|
"Select target folder" : "Célmappa kiválasztása",
|
||||||
"Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba URL itt lett tárolva: „{path}”, mint „{filename}”.",
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba webcíme itt lett tárolva: „{path}”, mint „{filename}”.",
|
||||||
"Link stored" : "Hivatkozás tárolva",
|
"Link stored" : "Hivatkozás tárolva",
|
||||||
"URL to room could not be stored." : "A szoba URL-ének tárolása sikertelen.",
|
"URL to room could not be stored." : "A szoba webcímének tárolása sikertelen.",
|
||||||
"Error" : "Hiba",
|
"Error" : "Hiba",
|
||||||
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató URL-je itt lett tárolva: „{path}”, mint „{filename}”.",
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató webcíme itt lett tárolva: „{path}”, mint „{filename}”.",
|
||||||
"URL to presentation could not be stored." : "A bemutató URL-jének tárolása sikertelen.",
|
"URL to presentation could not be stored." : "A bemutató webcímének tárolása sikertelen.",
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Biztos, hogy törli a felvételt innen: „{startDate}”? Ez a művelet nem vonható vissza.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Biztos, hogy törli a felvételt innen: „{startDate}”? Ez a művelet nem vonható vissza.",
|
||||||
"Delete?" : "Törli?",
|
"Delete?" : "Törli?",
|
||||||
"Could not delete record" : "A felvétel törlése sikertelen",
|
"Could not delete record" : "A felvétel törlése sikertelen",
|
||||||
"Server error" : "Kiszolgálóhiba",
|
"Server error" : "Kiszolgálóhiba",
|
||||||
"moderator" : "moderátor",
|
"Start" : "Kezdet",
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Megosztás",
|
|
||||||
"Loading" : "Betöltés",
|
"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.",
|
"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",
|
"Max. rooms" : "Szobák legnagyobb száma",
|
||||||
|
@ -124,11 +126,11 @@ OC.L10N.register(
|
||||||
"Delete restrictions for \"{name}\"?" : "Törli „{name}” korlátozásait?",
|
"Delete restrictions for \"{name}\"?" : "Törli „{name}” korlátozásait?",
|
||||||
"Settings saved" : "Beállítások elmentve",
|
"Settings saved" : "Beállítások elmentve",
|
||||||
"Unexpected error occurred" : "Váratlan hiba történt",
|
"Unexpected error occurred" : "Váratlan hiba történt",
|
||||||
"API URL is invalid" : "Az API URL érvénytelen",
|
"API URL is invalid" : "Az API webcíme érvénytelen",
|
||||||
"API secret is invalid" : "Az API titok érvénytelen",
|
"API secret is invalid" : "Az API titok érvénytelen",
|
||||||
"URL has to start with HTTPS" : "Az URL-nek HTTPS-sel kell kezdődnie",
|
"URL has to start with HTTPS" : "A webcímnek HTTPS-sel kell kezdődnie",
|
||||||
"URL has to contain the {token} placeholder" : "Az URL-nek tartalmaznia kell a(z) {token} helykitöltőt",
|
"URL has to contain the {token} placeholder" : "A webcímnek tartalmaznia kell a(z) {token} helykitöltőt",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Az URL-nek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "A webcímnek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "A(z) „{filename}” fájl feltöltésre került a szobájába.",
|
"The file \"{filename}\" was uploaded to your room." : "A(z) „{filename}” fájl feltöltésre került a szobájába.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "A(z) „{filename}” fájl nem tölthető fel a szobájába.",
|
"The file \"{filename}\" could not be uploaded to your room." : "A(z) „{filename}” fájl nem tölthető fel a szobájába.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "A(z) „{filename}” fájl nem tölthető fel a szobájába. Lehet, hogy a BigBlueButton-kiszolgáló nem támogatja ezt a műveletet.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "A(z) „{filename}” fájl nem tölthető fel a szobájába. Lehet, hogy a BigBlueButton-kiszolgáló nem támogatja ezt a műveletet.",
|
||||||
|
|
46
l10n/hu.json
46
l10n/hu.json
|
@ -17,15 +17,15 @@
|
||||||
"Waiting room for all users" : "Váróterem az összes felhasználó számára",
|
"Waiting room for all users" : "Váróterem az összes felhasználó számára",
|
||||||
"Internal" : "Belső",
|
"Internal" : "Belső",
|
||||||
"Internal restricted" : "Belső, korlátozott",
|
"Internal restricted" : "Belső, korlátozott",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Az API URL vagy titok nincs beállítva. Lépjen kapcsolatba a rendszergazdával.",
|
"API URL or secret not configured. Please contact your administrator." : "Az API webcíme vagy titka nincs beállítva. Lépjen kapcsolatba a rendszergazdával.",
|
||||||
"BigBlueButton Integration" : "BigBlueButton integráció",
|
"BigBlueButton Integration" : "BigBlueButton integráció",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integráció a Nextcloudhoz",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton integráció a Nextcloudhoz",
|
||||||
"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.*" : "Ez az alkalmazás lehetővé teszi találkozók létrehozását a [BigBlueButton(https://bigbluebutton.org)] külső telepítésével .\n\n* ** Szoba beállítása ** Hozzon létre több szobakonfigurációt névvel, üdvözlő üzenettel ...\n* ** Vendég link megosztása ** A szoba hivatkozásának megosztása az összes vendéggel\n* ** Moderátor link megosztása ** Moderátorok meghívása a szobába\n* ** Szobák megosztása ** Szobák megosztása tagokkal, csoportokkal vagy körökkel\n* ** Egyéni prezentáció ** Indítson el egy szobát a fájlböngészőből kiválasztott prezentációval\n* ** Felvételek kezelése ** A szobák felvételeinek megtekintése, megosztása és törlése\n* ** Korlátozások ** A szoba létrehozását bizonyos csoportokra korlátozza\n* ** Tevékenységek ** Áttekintés a szobai tevékenységekről\n\nGyors útmutató és további információk itt: [readme(https://github.com/sualko/cloud_bbb)].\nTetszik ez az alkalmazás? Adjon valamit vissza a nyílt forráskódú közösségnek, és nézze meg webhelyünket [a hozzájárulás módjai] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nFejlesztő kerestetik! Ha van ideje, félelmetes lenne, ha tudna segíteni az alkalmazás fejlesztésében.\n\n* Ez az alkalmazás integrálja a BigBlueButton alkalmazást, és azt a BigBlueButton Inc. nem hagyta jóvá vagy hitelesítette. A BigBlueButton és a BigBlueButton embléma a BigBlueButton Inc. védjegyei.*",
|
"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.*" : "Ez az alkalmazás lehetővé teszi találkozók létrehozását a [BigBlueButton(https://bigbluebutton.org)] külső telepítésével .\n\n* ** Szoba beállítása ** Hozzon létre több szobakonfigurációt névvel, üdvözlő üzenettel ...\n* ** Vendég link megosztása ** A szoba hivatkozásának megosztása az összes vendéggel\n* ** Moderátor link megosztása ** Moderátorok meghívása a szobába\n* ** Szobák megosztása ** Szobák megosztása tagokkal, csoportokkal vagy körökkel\n* ** Egyéni prezentáció ** Indítson el egy szobát a fájlböngészőből kiválasztott prezentációval\n* ** Felvételek kezelése ** A szobák felvételeinek megtekintése, megosztása és törlése\n* ** Korlátozások ** A szoba létrehozását bizonyos csoportokra korlátozza\n* ** Tevékenységek ** Áttekintés a szobai tevékenységekről\n\nGyors útmutató és további információk itt: [readme(https://github.com/sualko/cloud_bbb)].\nTetszik ez az alkalmazás? Adjon valamit vissza a nyílt forráskódú közösségnek, és nézze meg webhelyünket [a hozzájárulás módjai] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nFejlesztő kerestetik! Ha van ideje, félelmetes lenne, ha tudna segíteni az alkalmazás fejlesztésében.\n\n* Ez az alkalmazás integrálja a BigBlueButton alkalmazást, és azt a BigBlueButton Inc. nem hagyta jóvá vagy hitelesítette. A BigBlueButton és a BigBlueButton embléma a BigBlueButton Inc. védjegyei.*",
|
||||||
"Room not found" : "A szoba nem található",
|
"Room not found" : "A szoba nem található",
|
||||||
"The room could not be found. Maybe it was deleted?" : "A szoba nem található. Lehet, hogy törölték?",
|
"The room could not be found. Maybe it was deleted?" : "A szoba nem található. Lehet, hogy törölték?",
|
||||||
"Back to %s" : "Vissza ide: %s",
|
"Back to %s" : "Vissza ide: %s",
|
||||||
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API URL és titok megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.",
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API webcímének és titkának megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.",
|
||||||
"API URL" : "API URL",
|
"API URL" : "API webcíme",
|
||||||
"API secret" : "API titok",
|
"API secret" : "API titok",
|
||||||
"Save" : "Mentés",
|
"Save" : "Mentés",
|
||||||
"Show room manager in app navigation instead of settings page." : "A beállítások oldal helyett, a szobakezelő megjelenítése az alkalmazásnavigációban.",
|
"Show room manager in app navigation instead of settings page." : "A beállítások oldal helyett, a szobakezelő megjelenítése az alkalmazásnavigációban.",
|
||||||
|
@ -36,9 +36,9 @@
|
||||||
"Community" : "Közösség",
|
"Community" : "Közösség",
|
||||||
"Are you enjoying this app? Give something back to the open source community." : "Élvezi az alkalmazás használatát? Adjon vissza valamit a nyílt forráskódú közösségnek.",
|
"Are you enjoying this app? Give something back to the open source community." : "Élvezi az alkalmazás használatát? Adjon vissza valamit a nyílt forráskódú közösségnek.",
|
||||||
"Checkout the contributor guide" : "Tekintse meg a közreműködői útmutatót",
|
"Checkout the contributor guide" : "Tekintse meg a közreműködői útmutatót",
|
||||||
"URL Shortener" : "URL rövidítő",
|
"URL Shortener" : "Webcím-rövidítő",
|
||||||
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb URL-eket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.",
|
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb webcímeket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.",
|
||||||
"URL shortener" : "URL rövidítő",
|
"URL shortener" : "Webcím-rövidítő",
|
||||||
"Restrictions" : "Korlátozások",
|
"Restrictions" : "Korlátozások",
|
||||||
"You will be forwarded to the room in the next few seconds." : "Néhány másodperc múlva továbbításra kerül a szobába.",
|
"You will be forwarded to the room in the next few seconds." : "Néhány másodperc múlva továbbításra kerül a szobába.",
|
||||||
"Let's go!" : "Gyerünk!",
|
"Let's go!" : "Gyerünk!",
|
||||||
|
@ -54,6 +54,8 @@
|
||||||
"Group" : "Csoport",
|
"Group" : "Csoport",
|
||||||
"Searching" : "Keresés",
|
"Searching" : "Keresés",
|
||||||
"No matches" : "Nincs egyezés",
|
"No matches" : "Nincs egyezés",
|
||||||
|
"admin" : "admin",
|
||||||
|
"moderator" : "moderátor",
|
||||||
"Name" : "Név",
|
"Name" : "Név",
|
||||||
"Access" : "Hozzáférés",
|
"Access" : "Hozzáférés",
|
||||||
"Max" : "Maximum",
|
"Max" : "Maximum",
|
||||||
|
@ -67,30 +69,32 @@
|
||||||
"This message is shown to all users in the chat area after they joined." : "Ez az üzenet a csevegés minden felhasználójának megjelenik, miután csatlakoztak.",
|
"This message is shown to all users in the chat area after they joined." : "Ez az üzenet a csevegés minden felhasználójának megjelenik, miután csatlakoztak.",
|
||||||
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Korlátozza a résztvevők számát ebben a szobában. A nulla azt jelenti, hogy nincs korlátozás.",
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Korlátozza a résztvevők számát ebben a szobában. A nulla azt jelenti, hogy nincs korlátozás.",
|
||||||
"If enabled, the moderator is able to start the recording." : "Ha engedélyezve van, a moderátor meg tudja kezdeni a felvételt.",
|
"If enabled, the moderator is able to start the recording." : "Ha engedélyezve van, a moderátor meg tudja kezdeni a felvételt.",
|
||||||
"Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Nyilvános: minden a hivatkozást ismerő személy csatlakozhat. Jelszó: A vendégeknek meg kell adniuk a jelszavukat. Váró: A moderátornak minden vendéget be kell engednie, mielőtt csatlakozhatnának. Belső: Csak a Nextcloud felhasználói csatlakozhatnak.",
|
"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." : "A hozzáférési beállítások magyarázata:<br>- Nyilvános: A hivatkozás birtokában bárki csatlakozhat. <br>- Belső: Csak a Nextcloud felhasználói csatlakozhatnak. <br>- Jelszó: Vendégek csak a jelszó ismeretében csatlakozhatnak. <br>- Váró: Egy moderátornak el kell fogadni a vendégek csatlakozását. <br>- Korlátozott: Csak a kiválasztott felhasználók és csoportok érhetik el a szobát.",
|
||||||
"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." : "A moderátor kezelheti az értekezlet összes résztvevőjét, ideértve a kirúgást, az elnémítást vagy az előadó kiválasztását. A moderátor szereppel rendelkező felhasználók bezárhatnak egy értekezletet, vagy módosíthatják az alapértelmezett beállításokat.",
|
"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." : "A moderátor kezelheti az értekezlet összes résztvevőjét, ideértve a kirúgást, az elnémítást vagy az előadó kiválasztását. A moderátor szereppel rendelkező felhasználók bezárhatnak egy értekezletet, vagy módosíthatják az alapértelmezett beállításokat.",
|
||||||
"If enabled, normal users have to wait until a moderator is in the room." : "Ha engedélyezve van, a normál felhasználóknak meg kell várniuk, amíg egy moderátor a szobában lesz.",
|
"If enabled, normal users have to wait until a moderator is in the room." : "Ha engedélyezve van, a normál felhasználóknak meg kell várniuk, amíg egy moderátor a szobában lesz.",
|
||||||
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátor URL jön létre, amely moderátori jogosultsággal biztosít hozzáférést.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátori webcím jön létre, amely moderátori jogosultsággal biztosít hozzáférést.",
|
||||||
"Only selected users and groups are allowed to access the room." : "Csak a kiválasztott felhasználók és csoportok férhetnek hozzá a szobához.",
|
"Only selected users and groups are allowed to access the room." : "Csak a kiválasztott felhasználók és csoportok férhetnek hozzá a szobához.",
|
||||||
"If disabled, a microphone is needed to join the conference." : "Hi tiltva van, mikrofonra van szükség a konferenciához való csatlakozáshoz.",
|
"If disabled, a microphone is needed to join the conference." : "Hi tiltva van, mikrofonra van szükség a konferenciához való csatlakozáshoz.",
|
||||||
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Ha engedélyezve van, akkor a felhasználónak nem kell visszhanghívást és webkamera előnézetet végeznie az első csatlakozásakor (a BBB kiszolgáló 2.3-as verziója óta érhető el).",
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Ha engedélyezve van, akkor a felhasználónak nem kell visszhanghívást és webkamera előnézetet végeznie az első csatlakozásakor (a BBB kiszolgáló 2.3-as verziója óta érhető el).",
|
||||||
"If enabled, the user list, chat area and presentation are hidden by default." : "Ha engedélyezve van, akkor a felhasználólista, a csevegőterület és a prezentáció alapértelmezés szerint rejtett.",
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Ha engedélyezve van, akkor a felhasználólista, a csevegőterület és a prezentáció alapértelmezés szerint rejtett.",
|
||||||
"If enabled, all users will join the meeting muted." : "Ha engedélyezve van, akkor az összes felhasználó némítva csatlakozik az értekezlethez.",
|
"If enabled, all users will join the meeting muted." : "Ha engedélyezve van, akkor az összes felhasználó némítva csatlakozik az értekezlethez.",
|
||||||
"Edit \"{room}\"" : "„{room}” szerkesztése",
|
"Edit \"{room}\"" : "„{room}” szerkesztése",
|
||||||
"Room URL" : "Szoba URL",
|
"Room URL" : "Szoba webcíme",
|
||||||
"Welcome" : "Üdvözöljük",
|
"Welcome" : "Üdvözöljük",
|
||||||
"Participant limit" : "Résztvevők korlátja",
|
"Participant limit" : "Résztvevők korlátja",
|
||||||
|
"Sharing" : "Megosztás",
|
||||||
"Every participant is moderator" : "Minden résztvevő moderátor",
|
"Every participant is moderator" : "Minden résztvevő moderátor",
|
||||||
"Moderator access via URL" : "Moderátori elérés URL-en keresztül",
|
"Moderator access via URL" : "Moderátori elérés webcímen keresztül",
|
||||||
"Miscellaneous" : "Vegyes",
|
"Miscellaneous" : "Vegyes",
|
||||||
"Recording" : "Felvétel",
|
"Recording" : "Felvétel",
|
||||||
"Require moderator to start room" : "Moderátor szükséges a szoba elindításához",
|
"Require moderator to start room" : "Moderátor szükséges a szoba elindításához",
|
||||||
"Listen only option" : "Csak hallgatatás mód",
|
"Listen only option" : "Csak hallgatatás mód",
|
||||||
"Skip media check before usage" : "Használat elötti ellenőrzés kihagyása",
|
"Skip media check before usage" : "Használat előtti ellenőrzés kihagyása",
|
||||||
"Clean layout" : "Elrendezés törlése",
|
"Clean layout" : "Elrendezés törlése",
|
||||||
"Join meeting muted" : "Csatlakozás némítva",
|
"Join meeting muted" : "Csatlakozás némítva",
|
||||||
"Room name" : "Szoba neve",
|
"Room name" : "Szoba neve",
|
||||||
"Create" : "Létrehozás",
|
"Create" : "Létrehozás",
|
||||||
|
"Published" : "Közzétett",
|
||||||
"Open recording" : "Felvétel megnyitása",
|
"Open recording" : "Felvétel megnyitása",
|
||||||
"Copy to clipboard" : "Másolás a vágólapra",
|
"Copy to clipboard" : "Másolás a vágólapra",
|
||||||
"Save as file" : "Mentés fájlba",
|
"Save as file" : "Mentés fájlba",
|
||||||
|
@ -99,19 +103,17 @@
|
||||||
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Biztos, hogy törli a következőt: „{name}”? Ez a művelet nem vonható vissza.",
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Biztos, hogy törli a következőt: „{name}”? Ez a művelet nem vonható vissza.",
|
||||||
"Delete \"{name}\"?" : "Törli a következőt: „{name}”?",
|
"Delete \"{name}\"?" : "Törli a következőt: „{name}”?",
|
||||||
"Select target folder" : "Célmappa kiválasztása",
|
"Select target folder" : "Célmappa kiválasztása",
|
||||||
"Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba URL itt lett tárolva: „{path}”, mint „{filename}”.",
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba webcíme itt lett tárolva: „{path}”, mint „{filename}”.",
|
||||||
"Link stored" : "Hivatkozás tárolva",
|
"Link stored" : "Hivatkozás tárolva",
|
||||||
"URL to room could not be stored." : "A szoba URL-ének tárolása sikertelen.",
|
"URL to room could not be stored." : "A szoba webcímének tárolása sikertelen.",
|
||||||
"Error" : "Hiba",
|
"Error" : "Hiba",
|
||||||
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató URL-je itt lett tárolva: „{path}”, mint „{filename}”.",
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató webcíme itt lett tárolva: „{path}”, mint „{filename}”.",
|
||||||
"URL to presentation could not be stored." : "A bemutató URL-jének tárolása sikertelen.",
|
"URL to presentation could not be stored." : "A bemutató webcímének tárolása sikertelen.",
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Biztos, hogy törli a felvételt innen: „{startDate}”? Ez a művelet nem vonható vissza.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Biztos, hogy törli a felvételt innen: „{startDate}”? Ez a művelet nem vonható vissza.",
|
||||||
"Delete?" : "Törli?",
|
"Delete?" : "Törli?",
|
||||||
"Could not delete record" : "A felvétel törlése sikertelen",
|
"Could not delete record" : "A felvétel törlése sikertelen",
|
||||||
"Server error" : "Kiszolgálóhiba",
|
"Server error" : "Kiszolgálóhiba",
|
||||||
"moderator" : "moderátor",
|
"Start" : "Kezdet",
|
||||||
"admin" : "admin",
|
|
||||||
"Share" : "Megosztás",
|
|
||||||
"Loading" : "Betöltés",
|
"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.",
|
"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",
|
"Max. rooms" : "Szobák legnagyobb száma",
|
||||||
|
@ -122,11 +124,11 @@
|
||||||
"Delete restrictions for \"{name}\"?" : "Törli „{name}” korlátozásait?",
|
"Delete restrictions for \"{name}\"?" : "Törli „{name}” korlátozásait?",
|
||||||
"Settings saved" : "Beállítások elmentve",
|
"Settings saved" : "Beállítások elmentve",
|
||||||
"Unexpected error occurred" : "Váratlan hiba történt",
|
"Unexpected error occurred" : "Váratlan hiba történt",
|
||||||
"API URL is invalid" : "Az API URL érvénytelen",
|
"API URL is invalid" : "Az API webcíme érvénytelen",
|
||||||
"API secret is invalid" : "Az API titok érvénytelen",
|
"API secret is invalid" : "Az API titok érvénytelen",
|
||||||
"URL has to start with HTTPS" : "Az URL-nek HTTPS-sel kell kezdődnie",
|
"URL has to start with HTTPS" : "A webcímnek HTTPS-sel kell kezdődnie",
|
||||||
"URL has to contain the {token} placeholder" : "Az URL-nek tartalmaznia kell a(z) {token} helykitöltőt",
|
"URL has to contain the {token} placeholder" : "A webcímnek tartalmaznia kell a(z) {token} helykitöltőt",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Az URL-nek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "A webcímnek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "A(z) „{filename}” fájl feltöltésre került a szobájába.",
|
"The file \"{filename}\" was uploaded to your room." : "A(z) „{filename}” fájl feltöltésre került a szobájába.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "A(z) „{filename}” fájl nem tölthető fel a szobájába.",
|
"The file \"{filename}\" could not be uploaded to your room." : "A(z) „{filename}” fájl nem tölthető fel a szobájába.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "A(z) „{filename}” fájl nem tölthető fel a szobájába. Lehet, hogy a BigBlueButton-kiszolgáló nem támogatja ezt a műveletet.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "A(z) „{filename}” fájl nem tölthető fel a szobájába. Lehet, hogy a BigBlueButton-kiszolgáló nem támogatja ezt a műveletet.",
|
||||||
|
|
|
@ -10,7 +10,6 @@ OC.L10N.register(
|
||||||
"Create" : "Ստեղծել",
|
"Create" : "Ստեղծել",
|
||||||
"Delete" : "հեռացնել",
|
"Delete" : "հեռացնել",
|
||||||
"Error" : "Սխալ",
|
"Error" : "Սխալ",
|
||||||
"Share" : "Կիսվել",
|
|
||||||
"Loading" : "Loading"
|
"Loading" : "Loading"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"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