mirror of https://github.com/sualko/cloud_bbb
Compare commits
115 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
f9456b2830 | |
|
|
a458d11928 | |
|
|
577d5c55da | |
|
|
bfd85d7a53 | |
|
|
c0e85b3cab | |
|
|
4641a7f921 | |
|
|
981bdb3390 | |
|
|
6bc62b6c39 | |
|
|
6ab59538c2 | |
|
|
da93fbfe8a | |
|
|
c9ee4e86e5 | |
|
|
01d840236d | |
|
|
1421f23f6d | |
|
|
fa835156cc | |
|
|
a662f77065 | |
|
|
e4d48bd672 | |
|
|
cea63a474a | |
|
|
98950a2ae2 | |
|
|
eb86442773 | |
|
|
25d31cbbc8 | |
|
|
611fd39194 | |
|
|
92b6671354 | |
|
|
4fcd1126a2 | |
|
|
91783e55fd | |
|
|
48c02095ac | |
|
|
8a46f9a1b7 | |
|
|
ae5c903feb | |
|
|
216a5a8378 | |
|
|
5d51059c23 | |
|
|
0c1c8d25af | |
|
|
b22b2dcd5d | |
|
|
b0b1fab64f | |
|
|
be2df850a4 | |
|
|
83264c7a5f | |
|
|
23cd2f661b | |
|
|
c0e3002006 | |
|
|
323b902aeb | |
|
|
2257fa00f1 | |
|
|
81721673ec | |
|
|
85a607f209 | |
|
|
1c92e4a84f | |
|
|
b4f416777d | |
|
|
956cb37a48 | |
|
|
1a00f09a97 | |
|
|
c8acc88b18 | |
|
|
ecfbef2e7e | |
|
|
c8f13400eb | |
|
|
358efe7da5 | |
|
|
fa0967b49e | |
|
|
289cfe044e | |
|
|
e248a12ec1 | |
|
|
c5a0129d9a | |
|
|
77b86b5820 | |
|
|
6b6ad44753 | |
|
|
c60fbcad0b | |
|
|
15b1810684 | |
|
|
260dd45853 | |
|
|
7190b18552 | |
|
|
43376a0655 | |
|
|
a8387c6b22 | |
|
|
c42e77d9b6 | |
|
|
a74c9803f8 | |
|
|
a5340f8c54 | |
|
|
483a0897e6 | |
|
|
b6db93d03e | |
|
|
6c63392d71 | |
|
|
266f6c9f7d | |
|
|
acdd443175 | |
|
|
9334758925 | |
|
|
cfc9f75f26 | |
|
|
0d055356e5 | |
|
|
caefffffda | |
|
|
84886cd2a2 | |
|
|
4cf1f08a67 | |
|
|
5244470244 | |
|
|
c2c8f0cfc6 | |
|
|
d050d193c0 | |
|
|
9dbdc0bf73 | |
|
|
3e445136f9 | |
|
|
ba93d5cf2d | |
|
|
fa9de4f9df | |
|
|
e3cf041819 | |
|
|
ef0b05c8d9 | |
|
|
a6e886df5e | |
|
|
293e657b99 | |
|
|
253ae3dc78 | |
|
|
99487ac976 | |
|
|
a05b356391 | |
|
|
5fff78dc04 | |
|
|
62fc098d61 | |
|
|
68779ebd7c | |
|
|
1e27b5155d | |
|
|
f27f93ce5f | |
|
|
7d4aeb50f0 | |
|
|
b697b0dcdf | |
|
|
ba4c4a8196 | |
|
|
837718b28c | |
|
|
b3b8f1c463 | |
|
|
2a99b7e865 | |
|
|
92efd2bc8b | |
|
|
35fd969699 | |
|
|
74706cebe9 | |
|
|
f10b4b285e | |
|
|
5e4d725ca6 | |
|
|
91891145d1 | |
|
|
5bf996cb59 | |
|
|
0528fb10a5 | |
|
|
e5947b66a0 | |
|
|
81fb8612f1 | |
|
|
4b34363d89 | |
|
|
d622e84637 | |
|
|
36d3aaa11c | |
|
|
634269ee0a | |
|
|
d56bc00659 | |
|
|
af32351df8 |
19
.eslintrc.js
19
.eslintrc.js
|
|
@ -1,12 +1,15 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
root: true,
|
root: true,
|
||||||
parser: '@typescript-eslint/parser',
|
parser: 'vue-eslint-parser',
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
|
parser: '@typescript-eslint/parser',
|
||||||
ecmaFeatures: {
|
ecmaFeatures: {
|
||||||
jsx: true, // Allows for the parsing of JSX
|
jsx: true, // Allows for the parsing of JSX
|
||||||
},
|
},
|
||||||
|
extraFileExtensions: ['.vue'],
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
|
'vue',
|
||||||
'@typescript-eslint',
|
'@typescript-eslint',
|
||||||
],
|
],
|
||||||
settings: {
|
settings: {
|
||||||
|
|
@ -15,6 +18,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
extends: [
|
extends: [
|
||||||
|
'plugin:vue/recommended',
|
||||||
'plugin:react/recommended',
|
'plugin:react/recommended',
|
||||||
'plugin:@typescript-eslint/eslint-recommended',
|
'plugin:@typescript-eslint/eslint-recommended',
|
||||||
'plugin:@typescript-eslint/recommended',
|
'plugin:@typescript-eslint/recommended',
|
||||||
|
|
@ -31,5 +35,18 @@ module.exports = {
|
||||||
indent: ['warn', 'tab'],
|
indent: ['warn', 'tab'],
|
||||||
semi: ['error', 'always'],
|
semi: ['error', 'always'],
|
||||||
'@typescript-eslint/ban-types': 'off',
|
'@typescript-eslint/ban-types': 'off',
|
||||||
|
'vue/script-setup-uses-vars': 'error',
|
||||||
|
'vue/html-indent': ['warn', 'tab', {
|
||||||
|
attribute: 1,
|
||||||
|
baseIndent: 1,
|
||||||
|
closeBracket: 0,
|
||||||
|
alignAttributesVertically: true,
|
||||||
|
ignores: []
|
||||||
|
}],
|
||||||
|
'vue/first-attribute-linebreak': 'off',
|
||||||
|
'vue/max-attributes-per-line': ['warn', {
|
||||||
|
singleline: 5,
|
||||||
|
multiline: 1
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
@ -12,7 +12,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['8.1', '8.2', '8.3']
|
php-versions: ['8.1', '8.2', '8.3']
|
||||||
nextcloud-versions: ['stable29', 'stable30', 'stable31']
|
nextcloud-versions: ['stable29', 'stable30', 'stable31', 'stable32']
|
||||||
name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests
|
name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
|
|
|
||||||
22
CHANGELOG.md
22
CHANGELOG.md
|
|
@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## 2.9.1 (2026-01-08)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- v2.9.1 @smarinier [#418](https://github.com/littleredbutton/cloud_bbb/pull/418)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Load bbb-admin javascrpit file @smarinier [#416](https://github.com/littleredbutton/cloud_bbb/pull/416)
|
||||||
|
|
||||||
|
## 2.9.0 (2026-01-06)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Support Nextcloud 32 by @smarinier in [#411](https://github.com/littleredbutton/cloud_bbb/pull/411)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- Missing the send file feature to BBB menu by @smarinier in [#408](https://github.com/littleredbutton/cloud_bbb/pull/408)
|
||||||
|
- Invalid characters in recording file name by @smarinier in [#409](https://github.com/littleredbutton/cloud_bbb/pull/409)
|
||||||
|
|
||||||
|
|
||||||
## 2.8.0 (2025-05-19)
|
## 2.8.0 (2025-05-19)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
||||||
20
Makefile
20
Makefile
|
|
@ -21,34 +21,34 @@ install-composer-deps-dev: composer.phar
|
||||||
php composer.phar install -o
|
php composer.phar install -o
|
||||||
|
|
||||||
js-init:
|
js-init:
|
||||||
yarn install
|
npm install
|
||||||
|
|
||||||
yarn-update:
|
npm-update:
|
||||||
yarn update
|
npm update
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
build-js: js-init
|
build-js: js-init
|
||||||
yarn run dev
|
npm run dev
|
||||||
|
|
||||||
build-js-production: js-init
|
build-js-production: js-init
|
||||||
yarn run build
|
npm run build
|
||||||
|
|
||||||
watch-js: js-init
|
watch-js: js-init
|
||||||
yarn run watch
|
npm run watch
|
||||||
|
|
||||||
# Linting
|
# Linting
|
||||||
lint: js-init
|
lint: js-init
|
||||||
yarn run lint
|
npm run lint
|
||||||
|
|
||||||
lint-fix: js-init
|
lint-fix: js-init
|
||||||
yarn run fix
|
npm run fix
|
||||||
|
|
||||||
# Style linting
|
# Style linting
|
||||||
stylelint: js-init
|
stylelint: js-init
|
||||||
yarn run lint:style
|
npm run lint:style
|
||||||
|
|
||||||
stylelint-fix: js-init
|
stylelint-fix: js-init
|
||||||
yarn run lint:fix:style
|
npm run lint:fix:style
|
||||||
|
|
||||||
phplint:
|
phplint:
|
||||||
./vendor/bin/php-cs-fixer fix --dry-run
|
./vendor/bin/php-cs-fixer fix --dry-run
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ Contributors are welcome! If you have time it would be awesome if you could help
|
||||||
|
|
||||||
*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.8.0</version>
|
<version>2.9.1</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author mail="cloud_bbb@arawa.fr" homepage="https://arawa.fr/">Arawa</author>
|
<author mail="cloud_bbb@arawa.fr" homepage="https://arawa.fr/">Arawa</author>
|
||||||
<author>Klaus Herberth</author>
|
<author>Klaus Herberth</author>
|
||||||
|
|
@ -44,7 +44,7 @@ Contributors are welcome! If you have time it would be awesome if you could help
|
||||||
<lib>curl</lib>
|
<lib>curl</lib>
|
||||||
<lib>mbstring</lib>
|
<lib>mbstring</lib>
|
||||||
<lib>SimpleXML</lib>
|
<lib>SimpleXML</lib>
|
||||||
<nextcloud min-version="29" max-version="31"/>
|
<nextcloud min-version="29" max-version="32"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<commands>
|
<commands>
|
||||||
<command>OCA\BigBlueButton\Command\ClearAvatarCache</command>
|
<command>OCA\BigBlueButton\Command\ClearAvatarCache</command>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,3 @@
|
||||||
module.exports = {
|
const babelConfig = require('@nextcloud/babel-config')
|
||||||
plugins: [
|
|
||||||
'@babel/plugin-syntax-dynamic-import',
|
module.exports = babelConfig
|
||||||
],
|
|
||||||
presets: ['@babel/preset-env'],
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
"nextcloud/coding-standard": "^1.1.0",
|
"nextcloud/coding-standard": "^1.1.0",
|
||||||
"phpstan/phpstan": "^2.1.16",
|
"phpstan/phpstan": "^2.1.16",
|
||||||
"nextcloud/ocp": "^29.0 || ^30.0 || ^31.0",
|
"nextcloud/ocp": "^29.0 || ^30.0 || ^31.0",
|
||||||
"vimeo/psalm": "5.9.0 || ^6.1.0",
|
"vimeo/psalm": "^6.1.0",
|
||||||
"psr/container": "^1.1.2 || ^1.1.4 || ^2.0.2"
|
"psr/container": "^1.1.2 || ^1.1.4 || ^2.0.2"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,6 +1,7 @@
|
||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
|
"Loading…" : "Laai…",
|
||||||
"Back to %s" : "Terug na %s",
|
"Back to %s" : "Terug na %s",
|
||||||
"Save" : "Stoor",
|
"Save" : "Stoor",
|
||||||
"Display name" : "Vertoonnaam",
|
"Display name" : "Vertoonnaam",
|
||||||
|
|
@ -8,15 +9,16 @@ OC.L10N.register(
|
||||||
"Join" : "Sluit aan",
|
"Join" : "Sluit aan",
|
||||||
"Hello %s" : "Dag %s",
|
"Hello %s" : "Dag %s",
|
||||||
"Group" : "Groep",
|
"Group" : "Groep",
|
||||||
|
"Server error" : "Bedienerfout",
|
||||||
"Name" : "Naam",
|
"Name" : "Naam",
|
||||||
"Edit" : "Wysig",
|
"Edit" : "Wysig",
|
||||||
"Welcome" : "Welkom",
|
"Welcome" : "Welkom",
|
||||||
"Create" : "Skep",
|
"Create" : "Skep",
|
||||||
"Delete" : "Skrap",
|
"Delete" : "Skrap",
|
||||||
"Error" : "Fout",
|
"Error" : "Fout",
|
||||||
"Server error" : "Bedienerfout",
|
|
||||||
"Start" : "Begin",
|
"Start" : "Begin",
|
||||||
"Loading" : "Laai tans..",
|
"Group name" : "Groepnaam",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Instellings gestoor"
|
"Settings saved" : "Instellings gestoor"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
|
"Loading…" : "Laai…",
|
||||||
"Back to %s" : "Terug na %s",
|
"Back to %s" : "Terug na %s",
|
||||||
"Save" : "Stoor",
|
"Save" : "Stoor",
|
||||||
"Display name" : "Vertoonnaam",
|
"Display name" : "Vertoonnaam",
|
||||||
|
|
@ -6,15 +7,16 @@
|
||||||
"Join" : "Sluit aan",
|
"Join" : "Sluit aan",
|
||||||
"Hello %s" : "Dag %s",
|
"Hello %s" : "Dag %s",
|
||||||
"Group" : "Groep",
|
"Group" : "Groep",
|
||||||
|
"Server error" : "Bedienerfout",
|
||||||
"Name" : "Naam",
|
"Name" : "Naam",
|
||||||
"Edit" : "Wysig",
|
"Edit" : "Wysig",
|
||||||
"Welcome" : "Welkom",
|
"Welcome" : "Welkom",
|
||||||
"Create" : "Skep",
|
"Create" : "Skep",
|
||||||
"Delete" : "Skrap",
|
"Delete" : "Skrap",
|
||||||
"Error" : "Fout",
|
"Error" : "Fout",
|
||||||
"Server error" : "Bedienerfout",
|
|
||||||
"Start" : "Begin",
|
"Start" : "Begin",
|
||||||
"Loading" : "Laai tans..",
|
"Group name" : "Groepnaam",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Instellings gestoor"
|
"Settings saved" : "Instellings gestoor"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
OC.L10N.register(
|
||||||
|
"bbb",
|
||||||
|
{
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Zarrar",
|
||||||
|
"Password" : "Clau",
|
||||||
|
"Hello %s" : "Hola %s",
|
||||||
|
"Group" : "Grupo",
|
||||||
|
"Name" : "Nombre",
|
||||||
|
"Create" : "Crear",
|
||||||
|
"Delete" : "Borrar",
|
||||||
|
"Error" : "Error",
|
||||||
|
"All" : "Tot"
|
||||||
|
},
|
||||||
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
{ "translations": {
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Zarrar",
|
||||||
|
"Password" : "Clau",
|
||||||
|
"Hello %s" : "Hola %s",
|
||||||
|
"Group" : "Grupo",
|
||||||
|
"Name" : "Nombre",
|
||||||
|
"Create" : "Crear",
|
||||||
|
"Delete" : "Borrar",
|
||||||
|
"Error" : "Error",
|
||||||
|
"All" : "Tot"
|
||||||
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
|
}
|
||||||
21
l10n/ar.js
21
l10n/ar.js
|
|
@ -23,6 +23,13 @@ OC.L10N.register(
|
||||||
"BigBlueButton Integration" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton ",
|
"BigBlueButton Integration" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton ",
|
||||||
"BigBlueButton integration for Nextcloud" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton مع نكست كلاود",
|
"BigBlueButton integration for Nextcloud" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton مع نكست كلاود",
|
||||||
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "يتيح لك هذا التطبيق إنشاء اجتماعات بتثبيت خارجي لـ [BigBlueButton](https://bigbluebutton.org).\n\n* **إعداد الغرفة** إنشاء تكوينات متعددة للغرفة باسم ورسالة ترحيب...\n* **مشاركة رابط الضيف** مشاركة رابط الغرفة مع جميع ضيوفك\n* **مشاركة رابط المشرف** دعوة المشرفين إلى الغرفة\n* **مشاركة الغرف** مشاركة الغرف مع الأعضاء أو المجموعات أو الدوائر\n* **عرض تقديمي مخصص** ابدأ غرفة بعرض تقديمي محدد من متصفح الملفات الخاص بك\n* **إدارة التسجيلات** عرض ومشاركة وحذف التسجيلات الخاصة بغرفك\n* **القيود** تقييد إنشاء الغرفة على مجموعات معينة\n* **الأنشطة** احصل على نظرة عامة على أنشطة غرفتك\n\nدليل البدء السريع والمزيد من المعلومات في [ملف readme](https://github.com/littleredbutton/cloud_bbb).\nهل يعجبك هذا التطبيق؟ قدم شيئًا لمجتمع المصادر المفتوحة وتحقق من\n[طرق المساهمة](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nنرحب بالمساهمين! إذا كان لديك الوقت، فسيكون من الرائع أن تساعد في تحسين هذا التطبيق.\n\n*يدمج هذا التطبيق BigBlueButton ولا يتم اعتماده أو اعتماده من قبل BigBlueButton Inc. BigBlueButton وشعار BigBlueButton علامتان تجاريتان لشركة 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "يتيح لك هذا التطبيق إنشاء اجتماعات بتثبيت خارجي لـ [BigBlueButton](https://bigbluebutton.org).\n\n* **إعداد الغرفة** إنشاء تكوينات متعددة للغرفة باسم ورسالة ترحيب...\n* **مشاركة رابط الضيف** مشاركة رابط الغرفة مع جميع ضيوفك\n* **مشاركة رابط المشرف** دعوة المشرفين إلى الغرفة\n* **مشاركة الغرف** مشاركة الغرف مع الأعضاء أو المجموعات أو الدوائر\n* **عرض تقديمي مخصص** ابدأ غرفة بعرض تقديمي محدد من متصفح الملفات الخاص بك\n* **إدارة التسجيلات** عرض ومشاركة وحذف التسجيلات الخاصة بغرفك\n* **القيود** تقييد إنشاء الغرفة على مجموعات معينة\n* **الأنشطة** احصل على نظرة عامة على أنشطة غرفتك\n\nدليل البدء السريع والمزيد من المعلومات في [ملف readme](https://github.com/littleredbutton/cloud_bbb).\nهل يعجبك هذا التطبيق؟ قدم شيئًا لمجتمع المصادر المفتوحة وتحقق من\n[طرق المساهمة](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nنرحب بالمساهمين! إذا كان لديك الوقت، فسيكون من الرائع أن تساعد في تحسين هذا التطبيق.\n\n*يدمج هذا التطبيق BigBlueButton ولا يتم اعتماده أو اعتماده من قبل BigBlueButton Inc. BigBlueButton وشعار BigBlueButton علامتان تجاريتان لشركة BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "أرسل إلى BBB",
|
||||||
|
"Loading…" : "التحميل جارٍ ...",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "رجاءً، إختر الغرفة التي ترغب أن تستعمل فيها الملف \"{filename}\".",
|
||||||
|
"Send to" : "أرسل إلى",
|
||||||
|
"Start with" : "البدء بـ",
|
||||||
|
"No rooms available!" : "لا توجد غرف متاحة",
|
||||||
|
"Close" : "إغلاق",
|
||||||
"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" : "العودة إلى %s",
|
"Back to %s" : "العودة إلى %s",
|
||||||
|
|
@ -59,6 +66,8 @@ OC.L10N.register(
|
||||||
"admin" : "مدير",
|
"admin" : "مدير",
|
||||||
"moderator" : "مشرف",
|
"moderator" : "مشرف",
|
||||||
"user" : "مستخدِم",
|
"user" : "مستخدِم",
|
||||||
|
"Server error" : "خطا في الخادم",
|
||||||
|
"unlimited" : "غير محدود",
|
||||||
"Name" : "الاسم",
|
"Name" : "الاسم",
|
||||||
"Access" : "النفاذ",
|
"Access" : "النفاذ",
|
||||||
"Max" : "أقصى",
|
"Max" : "أقصى",
|
||||||
|
|
@ -114,19 +123,21 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف التسجيل من \"{startDate}\" هذه العملية لا يمكن التراجع عنها فيما بعدُ.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف التسجيل من \"{startDate}\" هذه العملية لا يمكن التراجع عنها فيما بعدُ.",
|
||||||
"Delete?" : "حذف؟",
|
"Delete?" : "حذف؟",
|
||||||
"Could not delete record" : "تعذّر حذف التسجيل",
|
"Could not delete record" : "تعذّر حذف التسجيل",
|
||||||
"Server error" : "خطا في الخادم",
|
|
||||||
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
||||||
"Open room" : "فتح غرفة",
|
"Open room" : "فتح غرفة",
|
||||||
"Start" : "ابدأ",
|
"Start" : "ابدأ",
|
||||||
"Clone room" : "استنساخ غرفة",
|
"Clone room" : "استنساخ غرفة",
|
||||||
"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." : "لا يمكنك تعديل هذا الخيار؛ بسبب أن الغرفة مشاركة معك.",
|
||||||
|
"Group name" : "اسم الفريق",
|
||||||
"Max. rooms" : "أقصى عدد من الغرف",
|
"Max. rooms" : "أقصى عدد من الغرف",
|
||||||
"Max. participants" : "أقصى عدد من المشاركين",
|
"Max. participants" : "أقصى عدد من المشاركين",
|
||||||
"Group …" : "المجموعات ...",
|
"Group …" : "المجموعات ...",
|
||||||
"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." : "لا تؤثر القيود على الغرف الموجودة. ناقص واحد يعني أن القيمة غير محدودة. يتم اختيار الخيار الأقل تقييدًا لكل مستخدم إذا ما تمّ تطبيق قيود متعددة.",
|
"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." : "لا تؤثر القيود على الغرف الموجودة. ناقص واحد يعني أن القيمة غير محدودة. يتم اختيار الخيار الأقل تقييدًا لكل مستخدم إذا ما تمّ تطبيق قيود متعددة.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف القيود عن المجموعة \"{name}\"؟ هذه العملية لا يمكن التراجع عنها.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف القيود عن المجموعة \"{name}\"؟ هذه العملية لا يمكن التراجع عنها.",
|
||||||
"Delete restrictions for \"{name}\"?" : "حذف القيود عن \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "حذف القيود عن \"{name}\"?",
|
||||||
|
"All users" : "كُلّ المستخدمين",
|
||||||
|
"All" : "الكل",
|
||||||
"Settings saved" : "تم حفظ الإعدادات",
|
"Settings saved" : "تم حفظ الإعدادات",
|
||||||
"Unexpected error occurred" : "حدث خطأ غير متوقع",
|
"Unexpected error occurred" : "حدث خطأ غير متوقع",
|
||||||
"API URL is invalid" : "عنوان واجهة برمجة التطبيقات API URL غير صحيح",
|
"API URL is invalid" : "عنوان واجهة برمجة التطبيقات API URL غير صحيح",
|
||||||
|
|
@ -137,12 +148,6 @@ OC.L10N.register(
|
||||||
"The file \"{filename}\" was uploaded to your room." : "تمّ رفع الملف \"{filename}\" إلى غرفتك.",
|
"The file \"{filename}\" was uploaded to your room." : "تمّ رفع الملف \"{filename}\" إلى غرفتك.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك.",
|
"The file \"{filename}\" could not be uploaded to your room." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك. ربما يكون ذلك بسبب أن خادوم BBB لا يدعم مثل هذا الإجراء.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك. ربما يكون ذلك بسبب أن خادوم BBB لا يدعم مثل هذا الإجراء.",
|
||||||
"Send file to BBB" : "إرسال ملف إلى BBB",
|
|
||||||
"Send to" : "أرسل إلى",
|
|
||||||
"Start with" : "البدء بـ",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "رجاءً، إختر الغرفة التي ترغب أن تستعمل فيها الملف \"{filename}\".",
|
|
||||||
"No rooms available!" : "لا توجد غرف متاحة",
|
|
||||||
"Send to BBB" : "أرسل إلى 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 ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثانية. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار."]
|
"_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 ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثانية. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار."]
|
||||||
},
|
},
|
||||||
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");
|
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");
|
||||||
|
|
|
||||||
21
l10n/ar.json
21
l10n/ar.json
|
|
@ -21,6 +21,13 @@
|
||||||
"BigBlueButton Integration" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton ",
|
"BigBlueButton Integration" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton ",
|
||||||
"BigBlueButton integration for Nextcloud" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton مع نكست كلاود",
|
"BigBlueButton integration for Nextcloud" : "مُكاملة \"بيغ بلو بوتون\" BigBlueButton مع نكست كلاود",
|
||||||
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "يتيح لك هذا التطبيق إنشاء اجتماعات بتثبيت خارجي لـ [BigBlueButton](https://bigbluebutton.org).\n\n* **إعداد الغرفة** إنشاء تكوينات متعددة للغرفة باسم ورسالة ترحيب...\n* **مشاركة رابط الضيف** مشاركة رابط الغرفة مع جميع ضيوفك\n* **مشاركة رابط المشرف** دعوة المشرفين إلى الغرفة\n* **مشاركة الغرف** مشاركة الغرف مع الأعضاء أو المجموعات أو الدوائر\n* **عرض تقديمي مخصص** ابدأ غرفة بعرض تقديمي محدد من متصفح الملفات الخاص بك\n* **إدارة التسجيلات** عرض ومشاركة وحذف التسجيلات الخاصة بغرفك\n* **القيود** تقييد إنشاء الغرفة على مجموعات معينة\n* **الأنشطة** احصل على نظرة عامة على أنشطة غرفتك\n\nدليل البدء السريع والمزيد من المعلومات في [ملف readme](https://github.com/littleredbutton/cloud_bbb).\nهل يعجبك هذا التطبيق؟ قدم شيئًا لمجتمع المصادر المفتوحة وتحقق من\n[طرق المساهمة](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nنرحب بالمساهمين! إذا كان لديك الوقت، فسيكون من الرائع أن تساعد في تحسين هذا التطبيق.\n\n*يدمج هذا التطبيق BigBlueButton ولا يتم اعتماده أو اعتماده من قبل BigBlueButton Inc. BigBlueButton وشعار BigBlueButton علامتان تجاريتان لشركة 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "يتيح لك هذا التطبيق إنشاء اجتماعات بتثبيت خارجي لـ [BigBlueButton](https://bigbluebutton.org).\n\n* **إعداد الغرفة** إنشاء تكوينات متعددة للغرفة باسم ورسالة ترحيب...\n* **مشاركة رابط الضيف** مشاركة رابط الغرفة مع جميع ضيوفك\n* **مشاركة رابط المشرف** دعوة المشرفين إلى الغرفة\n* **مشاركة الغرف** مشاركة الغرف مع الأعضاء أو المجموعات أو الدوائر\n* **عرض تقديمي مخصص** ابدأ غرفة بعرض تقديمي محدد من متصفح الملفات الخاص بك\n* **إدارة التسجيلات** عرض ومشاركة وحذف التسجيلات الخاصة بغرفك\n* **القيود** تقييد إنشاء الغرفة على مجموعات معينة\n* **الأنشطة** احصل على نظرة عامة على أنشطة غرفتك\n\nدليل البدء السريع والمزيد من المعلومات في [ملف readme](https://github.com/littleredbutton/cloud_bbb).\nهل يعجبك هذا التطبيق؟ قدم شيئًا لمجتمع المصادر المفتوحة وتحقق من\n[طرق المساهمة](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nنرحب بالمساهمين! إذا كان لديك الوقت، فسيكون من الرائع أن تساعد في تحسين هذا التطبيق.\n\n*يدمج هذا التطبيق BigBlueButton ولا يتم اعتماده أو اعتماده من قبل BigBlueButton Inc. BigBlueButton وشعار BigBlueButton علامتان تجاريتان لشركة BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "أرسل إلى BBB",
|
||||||
|
"Loading…" : "التحميل جارٍ ...",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "رجاءً، إختر الغرفة التي ترغب أن تستعمل فيها الملف \"{filename}\".",
|
||||||
|
"Send to" : "أرسل إلى",
|
||||||
|
"Start with" : "البدء بـ",
|
||||||
|
"No rooms available!" : "لا توجد غرف متاحة",
|
||||||
|
"Close" : "إغلاق",
|
||||||
"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" : "العودة إلى %s",
|
"Back to %s" : "العودة إلى %s",
|
||||||
|
|
@ -57,6 +64,8 @@
|
||||||
"admin" : "مدير",
|
"admin" : "مدير",
|
||||||
"moderator" : "مشرف",
|
"moderator" : "مشرف",
|
||||||
"user" : "مستخدِم",
|
"user" : "مستخدِم",
|
||||||
|
"Server error" : "خطا في الخادم",
|
||||||
|
"unlimited" : "غير محدود",
|
||||||
"Name" : "الاسم",
|
"Name" : "الاسم",
|
||||||
"Access" : "النفاذ",
|
"Access" : "النفاذ",
|
||||||
"Max" : "أقصى",
|
"Max" : "أقصى",
|
||||||
|
|
@ -112,19 +121,21 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف التسجيل من \"{startDate}\" هذه العملية لا يمكن التراجع عنها فيما بعدُ.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف التسجيل من \"{startDate}\" هذه العملية لا يمكن التراجع عنها فيما بعدُ.",
|
||||||
"Delete?" : "حذف؟",
|
"Delete?" : "حذف؟",
|
||||||
"Could not delete record" : "تعذّر حذف التسجيل",
|
"Could not delete record" : "تعذّر حذف التسجيل",
|
||||||
"Server error" : "خطا في الخادم",
|
|
||||||
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
"Could not modify publishing state" : "تعذّر تعديل حالة النشر",
|
||||||
"Open room" : "فتح غرفة",
|
"Open room" : "فتح غرفة",
|
||||||
"Start" : "ابدأ",
|
"Start" : "ابدأ",
|
||||||
"Clone room" : "استنساخ غرفة",
|
"Clone room" : "استنساخ غرفة",
|
||||||
"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." : "لا يمكنك تعديل هذا الخيار؛ بسبب أن الغرفة مشاركة معك.",
|
||||||
|
"Group name" : "اسم الفريق",
|
||||||
"Max. rooms" : "أقصى عدد من الغرف",
|
"Max. rooms" : "أقصى عدد من الغرف",
|
||||||
"Max. participants" : "أقصى عدد من المشاركين",
|
"Max. participants" : "أقصى عدد من المشاركين",
|
||||||
"Group …" : "المجموعات ...",
|
"Group …" : "المجموعات ...",
|
||||||
"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." : "لا تؤثر القيود على الغرف الموجودة. ناقص واحد يعني أن القيمة غير محدودة. يتم اختيار الخيار الأقل تقييدًا لكل مستخدم إذا ما تمّ تطبيق قيود متعددة.",
|
"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." : "لا تؤثر القيود على الغرف الموجودة. ناقص واحد يعني أن القيمة غير محدودة. يتم اختيار الخيار الأقل تقييدًا لكل مستخدم إذا ما تمّ تطبيق قيود متعددة.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف القيود عن المجموعة \"{name}\"؟ هذه العملية لا يمكن التراجع عنها.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "هل أنت متأكد أنك تريد حذف القيود عن المجموعة \"{name}\"؟ هذه العملية لا يمكن التراجع عنها.",
|
||||||
"Delete restrictions for \"{name}\"?" : "حذف القيود عن \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "حذف القيود عن \"{name}\"?",
|
||||||
|
"All users" : "كُلّ المستخدمين",
|
||||||
|
"All" : "الكل",
|
||||||
"Settings saved" : "تم حفظ الإعدادات",
|
"Settings saved" : "تم حفظ الإعدادات",
|
||||||
"Unexpected error occurred" : "حدث خطأ غير متوقع",
|
"Unexpected error occurred" : "حدث خطأ غير متوقع",
|
||||||
"API URL is invalid" : "عنوان واجهة برمجة التطبيقات API URL غير صحيح",
|
"API URL is invalid" : "عنوان واجهة برمجة التطبيقات API URL غير صحيح",
|
||||||
|
|
@ -135,12 +146,6 @@
|
||||||
"The file \"{filename}\" was uploaded to your room." : "تمّ رفع الملف \"{filename}\" إلى غرفتك.",
|
"The file \"{filename}\" was uploaded to your room." : "تمّ رفع الملف \"{filename}\" إلى غرفتك.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك.",
|
"The file \"{filename}\" could not be uploaded to your room." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك. ربما يكون ذلك بسبب أن خادوم BBB لا يدعم مثل هذا الإجراء.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "تعذّر رفع الملف \"{filename}\" إلى غرفتك. ربما يكون ذلك بسبب أن خادوم BBB لا يدعم مثل هذا الإجراء.",
|
||||||
"Send file to BBB" : "إرسال ملف إلى BBB",
|
|
||||||
"Send to" : "أرسل إلى",
|
|
||||||
"Start with" : "البدء بـ",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "رجاءً، إختر الغرفة التي ترغب أن تستعمل فيها الملف \"{filename}\".",
|
|
||||||
"No rooms available!" : "لا توجد غرف متاحة",
|
|
||||||
"Send to BBB" : "أرسل إلى 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 ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثانية. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار."]
|
"_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 ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثانية. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار.","هذه الغرفة لم تفتح بعد. سنحاول مرة أخرى خلال %n ثواني. برجاء الانتظار."]
|
||||||
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
|
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
|
||||||
}
|
}
|
||||||
13
l10n/ast.js
13
l10n/ast.js
|
|
@ -11,6 +11,9 @@ OC.L10N.register(
|
||||||
"Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.",
|
"Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.",
|
||||||
"Public" : "Pública",
|
"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.",
|
"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.",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"No rooms available!" : "¡Nun hai nenguna sala disponible!",
|
||||||
|
"Close" : "Zarrar",
|
||||||
"Room not found" : "Nun s'atopó la sala",
|
"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",
|
"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»",
|
"Back to %s" : "Volver a «%s»",
|
||||||
|
|
@ -34,6 +37,8 @@ OC.L10N.register(
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Nun hai nenguna coincidencia",
|
"No matches" : "Nun hai nenguna coincidencia",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Error del sirividor",
|
||||||
|
"unlimited" : "ensin llende",
|
||||||
"Name" : "Nome",
|
"Name" : "Nome",
|
||||||
"Access" : "Accesu",
|
"Access" : "Accesu",
|
||||||
"Recordings" : "Grabaciones",
|
"Recordings" : "Grabaciones",
|
||||||
|
|
@ -62,18 +67,18 @@ OC.L10N.register(
|
||||||
"URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.",
|
"URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
||||||
"Server error" : "Error del sirividor",
|
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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 name" : "Nome del grupu",
|
||||||
"Group …" : "Grupu…",
|
"Group …" : "Grupu…",
|
||||||
|
"All users" : "Tolos usuarios",
|
||||||
|
"All" : "Too",
|
||||||
"Settings saved" : "Guardóse la configuración",
|
"Settings saved" : "Guardóse la configuración",
|
||||||
"Unexpected error occurred" : "Prodúxose un error inesperáu",
|
"Unexpected error occurred" : "Prodúxose un error inesperáu",
|
||||||
"API URL is invalid" : "La URL de l'API ye inválida",
|
"API URL is invalid" : "La URL de l'API ye inválida",
|
||||||
"API secret is invalid" : "El secretu de l'API ye inválidu",
|
"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",
|
"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}\" 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.",
|
"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);");
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,9 @@
|
||||||
"Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.",
|
"Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.",
|
||||||
"Public" : "Pública",
|
"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.",
|
"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.",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"No rooms available!" : "¡Nun hai nenguna sala disponible!",
|
||||||
|
"Close" : "Zarrar",
|
||||||
"Room not found" : "Nun s'atopó la sala",
|
"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",
|
"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»",
|
"Back to %s" : "Volver a «%s»",
|
||||||
|
|
@ -32,6 +35,8 @@
|
||||||
"Searching" : "Buscando",
|
"Searching" : "Buscando",
|
||||||
"No matches" : "Nun hai nenguna coincidencia",
|
"No matches" : "Nun hai nenguna coincidencia",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Error del sirividor",
|
||||||
|
"unlimited" : "ensin llende",
|
||||||
"Name" : "Nome",
|
"Name" : "Nome",
|
||||||
"Access" : "Accesu",
|
"Access" : "Accesu",
|
||||||
"Recordings" : "Grabaciones",
|
"Recordings" : "Grabaciones",
|
||||||
|
|
@ -60,18 +65,18 @@
|
||||||
"URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.",
|
"URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.",
|
||||||
"Error" : "Error",
|
"Error" : "Error",
|
||||||
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
"Could not delete record" : "Nun se pudo desaniciar la grabación",
|
||||||
"Server error" : "Error del sirividor",
|
|
||||||
"Loading" : "Cargando",
|
"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.",
|
"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 name" : "Nome del grupu",
|
||||||
"Group …" : "Grupu…",
|
"Group …" : "Grupu…",
|
||||||
|
"All users" : "Tolos usuarios",
|
||||||
|
"All" : "Too",
|
||||||
"Settings saved" : "Guardóse la configuración",
|
"Settings saved" : "Guardóse la configuración",
|
||||||
"Unexpected error occurred" : "Prodúxose un error inesperáu",
|
"Unexpected error occurred" : "Prodúxose un error inesperáu",
|
||||||
"API URL is invalid" : "La URL de l'API ye inválida",
|
"API URL is invalid" : "La URL de l'API ye inválida",
|
||||||
"API secret is invalid" : "El secretu de l'API ye inválidu",
|
"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",
|
"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}\" 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.",
|
"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);"
|
||||||
}
|
}
|
||||||
|
|
@ -2,6 +2,7 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "İctimai",
|
"Public" : "İctimai",
|
||||||
|
"Close" : "Bağla",
|
||||||
"Save" : "Saxla",
|
"Save" : "Saxla",
|
||||||
"Password" : "Şifrə",
|
"Password" : "Şifrə",
|
||||||
"Hello %s" : "Salam %s",
|
"Hello %s" : "Salam %s",
|
||||||
|
|
@ -13,7 +14,7 @@ OC.L10N.register(
|
||||||
"Published" : "Nəşr edilmiş",
|
"Published" : "Nəşr edilmiş",
|
||||||
"Delete" : "Sil",
|
"Delete" : "Sil",
|
||||||
"Error" : "Səhv",
|
"Error" : "Səhv",
|
||||||
"Loading" : "Loading",
|
"All" : "Hamısı",
|
||||||
"Settings saved" : "Parametrlər yaddaşa verildi"
|
"Settings saved" : "Parametrlər yaddaşa verildi"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "İctimai",
|
"Public" : "İctimai",
|
||||||
|
"Close" : "Bağla",
|
||||||
"Save" : "Saxla",
|
"Save" : "Saxla",
|
||||||
"Password" : "Şifrə",
|
"Password" : "Şifrə",
|
||||||
"Hello %s" : "Salam %s",
|
"Hello %s" : "Salam %s",
|
||||||
|
|
@ -11,7 +12,7 @@
|
||||||
"Published" : "Nəşr edilmiş",
|
"Published" : "Nəşr edilmiş",
|
||||||
"Delete" : "Sil",
|
"Delete" : "Sil",
|
||||||
"Error" : "Səhv",
|
"Error" : "Səhv",
|
||||||
"Loading" : "Loading",
|
"All" : "Hamısı",
|
||||||
"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);"
|
||||||
}
|
}
|
||||||
37
l10n/be.js
37
l10n/be.js
|
|
@ -1,13 +1,40 @@
|
||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Save" : "Save",
|
"You unshared the room %s with {shareWith}." : "Вы скасавалі абагульванне пакоя %s з {shareWith}.",
|
||||||
"Password" : "Password",
|
"{user} unshared the room %s with you." : "{user} скасаваў(-ла) абагульванне пакоя %s з вамі.",
|
||||||
|
"Internal" : "Унутраны",
|
||||||
|
"Loading…" : "Загрузка…",
|
||||||
|
"Send to" : "Адправіць",
|
||||||
|
"Close" : "Закрыць",
|
||||||
|
"Back to %s" : "Назад да %s",
|
||||||
|
"API URL" : "URL-адрас API",
|
||||||
|
"Save" : "Захаваць",
|
||||||
|
"Community" : "Супольнасць",
|
||||||
|
"Please enter your name!" : "Увядзіце сваё імя!",
|
||||||
|
"Display name" : "Імя для паказу",
|
||||||
|
"Password" : "Пароль",
|
||||||
|
"Join" : "Далучыцца",
|
||||||
"Hello %s" : "Прывітанне %s",
|
"Hello %s" : "Прывітанне %s",
|
||||||
"Group" : "Group",
|
"Group" : "Група",
|
||||||
|
"moderator" : "мадэратар",
|
||||||
|
"Name" : "Назва",
|
||||||
|
"Access" : "Доступ",
|
||||||
|
"Edit" : "Рэдагаваць",
|
||||||
|
"Sharing" : "Абагульванне",
|
||||||
|
"Recording" : "Запіс",
|
||||||
|
"Create" : "Стварыць",
|
||||||
|
"Published" : "Апублікавана",
|
||||||
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
||||||
"Delete" : "Delete",
|
"Delete" : "Выдаліць",
|
||||||
|
"Delete \"{name}\"?" : "Выдаліць \"{name}\"?",
|
||||||
"Error" : "Памылка",
|
"Error" : "Памылка",
|
||||||
"Loading" : "Loading"
|
"Start" : "Запусціць",
|
||||||
|
"Loading" : "Загрузка",
|
||||||
|
"Group name" : "Назва групы",
|
||||||
|
"All" : "Усе",
|
||||||
|
"Settings saved" : "Налады захаваны",
|
||||||
|
"URL has to contain the {token} placeholder" : "URL-адрас павінен утрымліваць запаўняльнік {token}",
|
||||||
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL-адрас павінен пачынацца з https:// і ўтрымліваць {token}. Акрамя таго, можна выкарыстоўваць запаўняльнік {user}."
|
||||||
},
|
},
|
||||||
"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);");
|
||||||
|
|
|
||||||
37
l10n/be.json
37
l10n/be.json
|
|
@ -1,11 +1,38 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Save" : "Save",
|
"You unshared the room %s with {shareWith}." : "Вы скасавалі абагульванне пакоя %s з {shareWith}.",
|
||||||
"Password" : "Password",
|
"{user} unshared the room %s with you." : "{user} скасаваў(-ла) абагульванне пакоя %s з вамі.",
|
||||||
|
"Internal" : "Унутраны",
|
||||||
|
"Loading…" : "Загрузка…",
|
||||||
|
"Send to" : "Адправіць",
|
||||||
|
"Close" : "Закрыць",
|
||||||
|
"Back to %s" : "Назад да %s",
|
||||||
|
"API URL" : "URL-адрас API",
|
||||||
|
"Save" : "Захаваць",
|
||||||
|
"Community" : "Супольнасць",
|
||||||
|
"Please enter your name!" : "Увядзіце сваё імя!",
|
||||||
|
"Display name" : "Імя для паказу",
|
||||||
|
"Password" : "Пароль",
|
||||||
|
"Join" : "Далучыцца",
|
||||||
"Hello %s" : "Прывітанне %s",
|
"Hello %s" : "Прывітанне %s",
|
||||||
"Group" : "Group",
|
"Group" : "Група",
|
||||||
|
"moderator" : "мадэратар",
|
||||||
|
"Name" : "Назва",
|
||||||
|
"Access" : "Доступ",
|
||||||
|
"Edit" : "Рэдагаваць",
|
||||||
|
"Sharing" : "Абагульванне",
|
||||||
|
"Recording" : "Запіс",
|
||||||
|
"Create" : "Стварыць",
|
||||||
|
"Published" : "Апублікавана",
|
||||||
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
"Copy to clipboard" : "Капіяваць у буфер абмену",
|
||||||
"Delete" : "Delete",
|
"Delete" : "Выдаліць",
|
||||||
|
"Delete \"{name}\"?" : "Выдаліць \"{name}\"?",
|
||||||
"Error" : "Памылка",
|
"Error" : "Памылка",
|
||||||
"Loading" : "Loading"
|
"Start" : "Запусціць",
|
||||||
|
"Loading" : "Загрузка",
|
||||||
|
"Group name" : "Назва групы",
|
||||||
|
"All" : "Усе",
|
||||||
|
"Settings saved" : "Налады захаваны",
|
||||||
|
"URL has to contain the {token} placeholder" : "URL-адрас павінен утрымліваць запаўняльнік {token}",
|
||||||
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL-адрас павінен пачынацца з https:// і ўтрымліваць {token}. Акрамя таго, можна выкарыстоўваць запаўняльнік {user}."
|
||||||
},"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);"
|
||||||
}
|
}
|
||||||
27
l10n/bg.js
27
l10n/bg.js
|
|
@ -22,6 +22,14 @@ OC.L10N.register(
|
||||||
"API URL or secret not configured. Please contact your administrator." : "URL адресът или API тайна не са конфигурирани. Моля, свържете се с вашия администратор.",
|
"API URL or secret not configured. Please contact your administrator." : "URL адресът или API тайна не са конфигурирани. Моля, свържете се с вашия администратор.",
|
||||||
"BigBlueButton Integration" : " Интеграция с BigBlueButton",
|
"BigBlueButton Integration" : " Интеграция с BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Интеграция с BigBlueButton за Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Интеграция с BigBlueButton за 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Това приложение позволява създаването на срещи с външна инсталация на [BigBlueButton](https://bigbluebutton.org). \n\n* **Настройка на стаята** Създайте множество конфигурации на стаи с име, приветствено съобщение…\n* **Споделяне на връзка за гости** Споделяне на връзката към стаята с всички Ваши гости\n* **Споделяне на връзка към модератор** Поканете модераторите в стаята\n* **Споделяне на стаи** Споделяне на стаи с членове, групи или кръгове\n* **Персонализирана презентация** Започнете стая с избрана презентация от Вашия файлов браузър\n* **Управление на записи** Преглеждайте, споделяйте и изтривайте записи за Вашите стаи\n* **Ограничения** Ограничаване на създаването на стаи до определени групи\n* **Дейности** Получете общ преглед на дейностите в стаята си\n\nКратко ръководство за стартиране и допълнителна информация в нашия [readme](https://github.com/littleredbutton/cloud_bbb).\nХаресва ли ви това приложение? Дайте нещо обратно на общността с отворен код и разгледайте нашите\n[начини за принос](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nДобре дошли, сътрудници! Ако имате време, би било чудесно, ако можете да помогнете за подобряването на това приложение.\n\n*Това приложение интегрира BigBlueButton и не е одобрено или сертифицирано от BigBlueButton Inc. BigBlueButton и логото на BigBlueButton са търговски марки на BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Изпращане до BBB",
|
||||||
|
"Loading…" : "Зареждане…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Моля, изберете стаята, в която искате да използвате файла \"{filename}\".",
|
||||||
|
"Send to" : "Изпращане до",
|
||||||
|
"Start with" : "Започване с",
|
||||||
|
"No rooms available!" : "Няма налични стаи!",
|
||||||
|
"Close" : "Затваряне",
|
||||||
"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" : "Обратно към %s",
|
"Back to %s" : "Обратно към %s",
|
||||||
|
|
@ -57,6 +65,9 @@ OC.L10N.register(
|
||||||
"No matches" : "Няма съвпадения.",
|
"No matches" : "Няма съвпадения.",
|
||||||
"admin" : "администратор",
|
"admin" : "администратор",
|
||||||
"moderator" : "модератор",
|
"moderator" : "модератор",
|
||||||
|
"user" : "потребител",
|
||||||
|
"Server error" : "Сървърна грешка",
|
||||||
|
"unlimited" : "неограничено",
|
||||||
"Name" : "Име",
|
"Name" : "Име",
|
||||||
"Access" : "Достъп",
|
"Access" : "Достъп",
|
||||||
"Max" : "Макс",
|
"Max" : "Макс",
|
||||||
|
|
@ -70,6 +81,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." : "Ако е активирано, модераторът може да започне записа.",
|
"If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.",
|
||||||
|
"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> - Вътрешен: Само потребители на Nextcloud могат да се присъединят. <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 на модератор, който позволява достъп с разрешение на модератора.",
|
||||||
|
|
@ -112,16 +124,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете записа от „{startDate}“? Тази операция не може да бъде отменена.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете записа от „{startDate}“? Тази операция не може да бъде отменена.",
|
||||||
"Delete?" : "Изтриване?",
|
"Delete?" : "Изтриване?",
|
||||||
"Could not delete record" : "Записът не можа да се изтрие",
|
"Could not delete record" : "Записът не можа да се изтрие",
|
||||||
"Server error" : "Сървърна грешка",
|
"Could not modify publishing state" : "Състоянието на публикуване не се промени",
|
||||||
|
"Open room" : "Отваряне на стая",
|
||||||
"Start" : "Начало",
|
"Start" : "Начало",
|
||||||
|
"Clone room" : "Клониране на стая",
|
||||||
"Loading" : "Зареждане",
|
"Loading" : "Зареждане",
|
||||||
"You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.",
|
"You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.",
|
||||||
|
"Group name" : "Име на групата",
|
||||||
"Max. rooms" : "Макс. стаи",
|
"Max. rooms" : "Макс. стаи",
|
||||||
|
"Access options" : "Опции за достъп",
|
||||||
"Max. participants" : "Макс. участници ",
|
"Max. participants" : "Макс. участници ",
|
||||||
"Group …" : "Група ...",
|
"Group …" : "Група ...",
|
||||||
"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." : "Ограниченията не засягат съществуващите стаи. Минус едно означава, че стойността е неограничена. За всеки потребителсе избира най-малко ограничителната опция, ако се прилагат множество ограничения.",
|
"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." : "Ограниченията не засягат съществуващите стаи. Минус едно означава, че стойността е неограничена. За всеки потребителсе избира най-малко ограничителната опция, ако се прилагат множество ограничения.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете ограниченията за групата „{name}“? Тази операция не може да бъде отменена.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете ограниченията за групата „{name}“? Тази операция не може да бъде отменена.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Да се изтрият ли ограниченията за „{name}“?",
|
"Delete restrictions for \"{name}\"?" : "Да се изтрият ли ограниченията за „{name}“?",
|
||||||
|
"All users" : "Всички потребители",
|
||||||
|
"All" : "Всички",
|
||||||
"Settings saved" : "Настройките са запазени",
|
"Settings saved" : "Настройките са запазени",
|
||||||
"Unexpected error occurred" : "Възникна неочаквана грешка",
|
"Unexpected error occurred" : "Възникна неочаквана грешка",
|
||||||
"API URL is invalid" : "URL адресът на API е невалиден",
|
"API URL is invalid" : "URL адресът на API е невалиден",
|
||||||
|
|
@ -129,15 +147,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "URL адресът трябва да започва с HTTPS",
|
"URL has to start with HTTPS" : "URL адресът трябва да започва с HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "URL адресът трябва да съдържа заместителя {token}",
|
"URL has to contain the {token} placeholder" : "URL адресът трябва да съдържа заместителя {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL адресът трябва да започва с https:// и да съдържа {token}. Освен това може да се използва заместителят {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL адресът трябва да започва с https:// и да съдържа {token}. Освен това може да се използва заместителят {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Примерна конфигурация за Apache и Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Файлът „{filename}“ беше качен във вашата стая.",
|
"The file \"{filename}\" was uploaded to your room." : "Файлът „{filename}“ беше качен във вашата стая.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Файлът „{filename}“ не можа да бъде качен в стаята ви.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Файлът „{filename}“ не можа да бъде качен в стаята ви.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Файлът „{filename}“ не можа да бъде качен в стаята ви. Може би вашият BigBlueButton сървър не поддържа това действие.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Файлът „{filename}“ не можа да бъде качен в стаята ви. Може би вашият BigBlueButton сървър не поддържа това действие.",
|
||||||
"Send file to BBB" : "Изпращане на файл към BBB",
|
|
||||||
"Send to" : "Изпращане до",
|
|
||||||
"Start with" : "Започване с",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Моля, изберете стаята, в която искате да използвате файла \"{filename}\".",
|
|
||||||
"No rooms available!" : "Няма налични стаи!",
|
|
||||||
"Send to BBB" : "Изпращане до 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 секунди. Моля изчакайте. ","Тази стая все още не е отворена. Ще опитаме отново след %nсекунди. Моля изчакайте. "]
|
"_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 секунди. Моля изчакайте. ","Тази стая все още не е отворена. Ще опитаме отново след %nсекунди. Моля изчакайте. "]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
27
l10n/bg.json
27
l10n/bg.json
|
|
@ -20,6 +20,14 @@
|
||||||
"API URL or secret not configured. Please contact your administrator." : "URL адресът или API тайна не са конфигурирани. Моля, свържете се с вашия администратор.",
|
"API URL or secret not configured. Please contact your administrator." : "URL адресът или API тайна не са конфигурирани. Моля, свържете се с вашия администратор.",
|
||||||
"BigBlueButton Integration" : " Интеграция с BigBlueButton",
|
"BigBlueButton Integration" : " Интеграция с BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Интеграция с BigBlueButton за Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Интеграция с BigBlueButton за 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Това приложение позволява създаването на срещи с външна инсталация на [BigBlueButton](https://bigbluebutton.org). \n\n* **Настройка на стаята** Създайте множество конфигурации на стаи с име, приветствено съобщение…\n* **Споделяне на връзка за гости** Споделяне на връзката към стаята с всички Ваши гости\n* **Споделяне на връзка към модератор** Поканете модераторите в стаята\n* **Споделяне на стаи** Споделяне на стаи с членове, групи или кръгове\n* **Персонализирана презентация** Започнете стая с избрана презентация от Вашия файлов браузър\n* **Управление на записи** Преглеждайте, споделяйте и изтривайте записи за Вашите стаи\n* **Ограничения** Ограничаване на създаването на стаи до определени групи\n* **Дейности** Получете общ преглед на дейностите в стаята си\n\nКратко ръководство за стартиране и допълнителна информация в нашия [readme](https://github.com/littleredbutton/cloud_bbb).\nХаресва ли ви това приложение? Дайте нещо обратно на общността с отворен код и разгледайте нашите\n[начини за принос](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nДобре дошли, сътрудници! Ако имате време, би било чудесно, ако можете да помогнете за подобряването на това приложение.\n\n*Това приложение интегрира BigBlueButton и не е одобрено или сертифицирано от BigBlueButton Inc. BigBlueButton и логото на BigBlueButton са търговски марки на BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Изпращане до BBB",
|
||||||
|
"Loading…" : "Зареждане…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Моля, изберете стаята, в която искате да използвате файла \"{filename}\".",
|
||||||
|
"Send to" : "Изпращане до",
|
||||||
|
"Start with" : "Започване с",
|
||||||
|
"No rooms available!" : "Няма налични стаи!",
|
||||||
|
"Close" : "Затваряне",
|
||||||
"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" : "Обратно към %s",
|
"Back to %s" : "Обратно към %s",
|
||||||
|
|
@ -55,6 +63,9 @@
|
||||||
"No matches" : "Няма съвпадения.",
|
"No matches" : "Няма съвпадения.",
|
||||||
"admin" : "администратор",
|
"admin" : "администратор",
|
||||||
"moderator" : "модератор",
|
"moderator" : "модератор",
|
||||||
|
"user" : "потребител",
|
||||||
|
"Server error" : "Сървърна грешка",
|
||||||
|
"unlimited" : "неограничено",
|
||||||
"Name" : "Име",
|
"Name" : "Име",
|
||||||
"Access" : "Достъп",
|
"Access" : "Достъп",
|
||||||
"Max" : "Макс",
|
"Max" : "Макс",
|
||||||
|
|
@ -68,6 +79,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." : "Ако е активирано, модераторът може да започне записа.",
|
"If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.",
|
||||||
|
"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> - Вътрешен: Само потребители на Nextcloud могат да се присъединят. <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 на модератор, който позволява достъп с разрешение на модератора.",
|
||||||
|
|
@ -110,16 +122,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете записа от „{startDate}“? Тази операция не може да бъде отменена.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете записа от „{startDate}“? Тази операция не може да бъде отменена.",
|
||||||
"Delete?" : "Изтриване?",
|
"Delete?" : "Изтриване?",
|
||||||
"Could not delete record" : "Записът не можа да се изтрие",
|
"Could not delete record" : "Записът не можа да се изтрие",
|
||||||
"Server error" : "Сървърна грешка",
|
"Could not modify publishing state" : "Състоянието на публикуване не се промени",
|
||||||
|
"Open room" : "Отваряне на стая",
|
||||||
"Start" : "Начало",
|
"Start" : "Начало",
|
||||||
|
"Clone room" : "Клониране на стая",
|
||||||
"Loading" : "Зареждане",
|
"Loading" : "Зареждане",
|
||||||
"You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.",
|
"You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.",
|
||||||
|
"Group name" : "Име на групата",
|
||||||
"Max. rooms" : "Макс. стаи",
|
"Max. rooms" : "Макс. стаи",
|
||||||
|
"Access options" : "Опции за достъп",
|
||||||
"Max. participants" : "Макс. участници ",
|
"Max. participants" : "Макс. участници ",
|
||||||
"Group …" : "Група ...",
|
"Group …" : "Група ...",
|
||||||
"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." : "Ограниченията не засягат съществуващите стаи. Минус едно означава, че стойността е неограничена. За всеки потребителсе избира най-малко ограничителната опция, ако се прилагат множество ограничения.",
|
"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." : "Ограниченията не засягат съществуващите стаи. Минус едно означава, че стойността е неограничена. За всеки потребителсе избира най-малко ограничителната опция, ако се прилагат множество ограничения.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете ограниченията за групата „{name}“? Тази операция не може да бъде отменена.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Сигурни ли сте, че искате да изтриете ограниченията за групата „{name}“? Тази операция не може да бъде отменена.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Да се изтрият ли ограниченията за „{name}“?",
|
"Delete restrictions for \"{name}\"?" : "Да се изтрият ли ограниченията за „{name}“?",
|
||||||
|
"All users" : "Всички потребители",
|
||||||
|
"All" : "Всички",
|
||||||
"Settings saved" : "Настройките са запазени",
|
"Settings saved" : "Настройките са запазени",
|
||||||
"Unexpected error occurred" : "Възникна неочаквана грешка",
|
"Unexpected error occurred" : "Възникна неочаквана грешка",
|
||||||
"API URL is invalid" : "URL адресът на API е невалиден",
|
"API URL is invalid" : "URL адресът на API е невалиден",
|
||||||
|
|
@ -127,15 +145,10 @@
|
||||||
"URL has to start with HTTPS" : "URL адресът трябва да започва с HTTPS",
|
"URL has to start with HTTPS" : "URL адресът трябва да започва с HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "URL адресът трябва да съдържа заместителя {token}",
|
"URL has to contain the {token} placeholder" : "URL адресът трябва да съдържа заместителя {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL адресът трябва да започва с https:// и да съдържа {token}. Освен това може да се използва заместителят {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL адресът трябва да започва с https:// и да съдържа {token}. Освен това може да се използва заместителят {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Примерна конфигурация за Apache и Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Файлът „{filename}“ беше качен във вашата стая.",
|
"The file \"{filename}\" was uploaded to your room." : "Файлът „{filename}“ беше качен във вашата стая.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Файлът „{filename}“ не можа да бъде качен в стаята ви.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Файлът „{filename}“ не можа да бъде качен в стаята ви.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Файлът „{filename}“ не можа да бъде качен в стаята ви. Може би вашият BigBlueButton сървър не поддържа това действие.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Файлът „{filename}“ не можа да бъде качен в стаята ви. Може би вашият BigBlueButton сървър не поддържа това действие.",
|
||||||
"Send file to BBB" : "Изпращане на файл към BBB",
|
|
||||||
"Send to" : "Изпращане до",
|
|
||||||
"Start with" : "Започване с",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Моля, изберете стаята, в която искате да използвате файла \"{filename}\".",
|
|
||||||
"No rooms available!" : "Няма налични стаи!",
|
|
||||||
"Send to BBB" : "Изпращане до 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 секунди. Моля изчакайте. ","Тази стая все още не е отворена. Ще опитаме отново след %nсекунди. Моля изчакайте. "]
|
"_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 секунди. Моля изчакайте. ","Тази стая все още не е отворена. Ще опитаме отново след %nсекунди. Моля изчакайте. "]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
|
"Close" : "বন্ধ",
|
||||||
"Save" : "সংরক্ষণ",
|
"Save" : "সংরক্ষণ",
|
||||||
"Password" : "কূটশব্দ",
|
"Password" : "কূটশব্দ",
|
||||||
"Hello %s" : "হ্যালো %s",
|
"Hello %s" : "হ্যালো %s",
|
||||||
|
|
@ -11,6 +12,7 @@ OC.L10N.register(
|
||||||
"Create" : "তৈরী কর",
|
"Create" : "তৈরী কর",
|
||||||
"Delete" : "মুছে",
|
"Delete" : "মুছে",
|
||||||
"Error" : "সমস্যা",
|
"Error" : "সমস্যা",
|
||||||
"Loading" : "Loading"
|
"Group name" : "গ্রুপের নাম",
|
||||||
|
"All" : "সবাই"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
|
"Close" : "বন্ধ",
|
||||||
"Save" : "সংরক্ষণ",
|
"Save" : "সংরক্ষণ",
|
||||||
"Password" : "কূটশব্দ",
|
"Password" : "কূটশব্দ",
|
||||||
"Hello %s" : "হ্যালো %s",
|
"Hello %s" : "হ্যালো %s",
|
||||||
|
|
@ -9,6 +10,7 @@
|
||||||
"Create" : "তৈরী কর",
|
"Create" : "তৈরী কর",
|
||||||
"Delete" : "মুছে",
|
"Delete" : "মুছে",
|
||||||
"Error" : "সমস্যা",
|
"Error" : "সমস্যা",
|
||||||
"Loading" : "Loading"
|
"Group name" : "গ্রুপের নাম",
|
||||||
|
"All" : "সবাই"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
|
|
@ -2,6 +2,8 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Publik",
|
"Public" : "Publik",
|
||||||
|
"Loading…" : "O kargañ...",
|
||||||
|
"Close" : "Serriñ",
|
||||||
"Back to %s" : "Distro da %s",
|
"Back to %s" : "Distro da %s",
|
||||||
"Save" : "Enrollañ",
|
"Save" : "Enrollañ",
|
||||||
"Community" : "Kumuniezh",
|
"Community" : "Kumuniezh",
|
||||||
|
|
@ -21,6 +23,7 @@ OC.L10N.register(
|
||||||
"Error" : "Fazi",
|
"Error" : "Fazi",
|
||||||
"Delete?" : "Dilemel?",
|
"Delete?" : "Dilemel?",
|
||||||
"Loading" : "Kargañ",
|
"Loading" : "Kargañ",
|
||||||
|
"All" : "Pep tra",
|
||||||
"Settings saved" : "Stummoù enrollet"
|
"Settings saved" : "Stummoù enrollet"
|
||||||
},
|
},
|
||||||
"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);");
|
"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);");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Publik",
|
"Public" : "Publik",
|
||||||
|
"Loading…" : "O kargañ...",
|
||||||
|
"Close" : "Serriñ",
|
||||||
"Back to %s" : "Distro da %s",
|
"Back to %s" : "Distro da %s",
|
||||||
"Save" : "Enrollañ",
|
"Save" : "Enrollañ",
|
||||||
"Community" : "Kumuniezh",
|
"Community" : "Kumuniezh",
|
||||||
|
|
@ -19,6 +21,7 @@
|
||||||
"Error" : "Fazi",
|
"Error" : "Fazi",
|
||||||
"Delete?" : "Dilemel?",
|
"Delete?" : "Dilemel?",
|
||||||
"Loading" : "Kargañ",
|
"Loading" : "Kargañ",
|
||||||
|
"All" : "Pep tra",
|
||||||
"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);"
|
||||||
}
|
}
|
||||||
|
|
@ -2,6 +2,7 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Javno",
|
"Public" : "Javno",
|
||||||
|
"Close" : "Zatvori",
|
||||||
"Save" : "Spremi",
|
"Save" : "Spremi",
|
||||||
"Password" : "Lozinka",
|
"Password" : "Lozinka",
|
||||||
"Group" : "Grupa",
|
"Group" : "Grupa",
|
||||||
|
|
@ -11,6 +12,7 @@ OC.L10N.register(
|
||||||
"Create" : "Ustvari",
|
"Create" : "Ustvari",
|
||||||
"Delete" : "Obriši",
|
"Delete" : "Obriši",
|
||||||
"Error" : "Greška",
|
"Error" : "Greška",
|
||||||
"Loading" : "Loading"
|
"Group name" : "Naziv grupe",
|
||||||
|
"All" : "Sve"
|
||||||
},
|
},
|
||||||
"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);");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Javno",
|
"Public" : "Javno",
|
||||||
|
"Close" : "Zatvori",
|
||||||
"Save" : "Spremi",
|
"Save" : "Spremi",
|
||||||
"Password" : "Lozinka",
|
"Password" : "Lozinka",
|
||||||
"Group" : "Grupa",
|
"Group" : "Grupa",
|
||||||
|
|
@ -9,6 +10,7 @@
|
||||||
"Create" : "Ustvari",
|
"Create" : "Ustvari",
|
||||||
"Delete" : "Obriši",
|
"Delete" : "Obriši",
|
||||||
"Error" : "Greška",
|
"Error" : "Greška",
|
||||||
"Loading" : "Loading"
|
"Group name" : "Naziv grupe",
|
||||||
|
"All" : "Sve"
|
||||||
},"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);"
|
||||||
}
|
}
|
||||||
35
l10n/ca.js
35
l10n/ca.js
|
|
@ -14,14 +14,22 @@ OC.L10N.register(
|
||||||
"Recording for room \"%s\" is ready." : "L'enregistrament de la sala \"%s\" està llest.",
|
"Recording for room \"%s\" is ready." : "L'enregistrament de la sala \"%s\" està llest.",
|
||||||
"To invite someone to the meeting, send them this link: %s" : "Per convidar algú a la reunió, envieu-los aquest enllaç: %s",
|
"To invite someone to the meeting, send them this link: %s" : "Per convidar algú a la reunió, envieu-los aquest enllaç: %s",
|
||||||
"Public" : "Públic",
|
"Public" : "Públic",
|
||||||
"Internal + Password protection for guests" : "Protecció interna + contrasenya per als convidats",
|
"Internal + Password protection for guests" : "Interna + Protecció amb contrasenya per convidats",
|
||||||
"Internal + Waiting room for guests" : "Interior + Sala d'espera per a convidats",
|
"Internal + Waiting room for guests" : "Interna + Sala d'espera per a convidats",
|
||||||
"Waiting room for all users" : "Sala d'espera per a tots els usuaris",
|
"Waiting room for all users" : "Sala d'espera per a tots els usuaris",
|
||||||
"Internal" : "Intern",
|
"Internal" : "Interna",
|
||||||
"Internal restricted" : "Restringit intern",
|
"Internal restricted" : "Interna restringida",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Adreça URL o secret de l'API no configurat. Poseu-vos en contacte amb l'administrador.",
|
"API URL or secret not configured. Please contact your administrator." : "Adreça URL o secret de l'API no configurat. Poseu-vos en contacte amb l'administrador.",
|
||||||
"BigBlueButton Integration" : "Integració de BigBlueButton",
|
"BigBlueButton Integration" : "Integració de BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integració de BigBlueButton per Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Integració de BigBlueButton per 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Aquesta aplicació permet crear reunions amb una instal·lació externa de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuració de la sala** Crea diverses configuracions de sala amb nom, missatge de benvinguda …\n* **Comparteix l'enllaç de convidat** Comparteix l'enllaç de la sala amb tots els teus convidats\n* **Comparteix l'enllaç del moderador** Convida moderadors a la sala\n* **Comparteix sales** Comparteix sales amb membres, grups o cercles\n* **Presentació personalitzada** Inicia una sala amb una presentació seleccionada des del teu navegador d'arxius\n* **Gestiona les gravacions** Visualitza, comparteix i suprimeix les gravacions de les teves sales\n* **Restriccions** Restringeix la creació de sales a determinats grups\n* **Activitats** Obtén una visió general de les activitats de la teva sala\n\nGuia d'inici ràpid i més informació al nostre [readme](https://github.com/littleredbutton/cloud_bbb).\nT'agrada aquesta aplicació? Dona alguna cosa a la comunitat de codi obert i consulta les nostres\n[maneres de contribuir](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nEls col·laboradors són benvinguts! Si teniu temps, seria fantàstic que poguéssiu ajudar a millorar aquesta aplicació.\n\n*Aquesta aplicació integra BigBlueButton i no està avalada ni certificada per BigBlueButton Inc. BigBlueButton i el logotip de BigBlueButton són marques comercials de BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Envia a BBB",
|
||||||
|
"Loading…" : "S'està carregant…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccioneu la sala en què voleu utilitzar el fitxer \"{filename}\".",
|
||||||
|
"Send to" : "Envia a",
|
||||||
|
"Start with" : "Començar amb",
|
||||||
|
"No rooms available!" : "No hi ha sales disponibles!",
|
||||||
|
"Close" : "Tanca",
|
||||||
"Room not found" : "No s'ha trobat la sala",
|
"Room not found" : "No s'ha trobat la sala",
|
||||||
"The room could not be found. Maybe it was deleted?" : "No s'ha trobat la sala. Potser s'ha suprimit?",
|
"The room could not be found. Maybe it was deleted?" : "No s'ha trobat la sala. Potser s'ha suprimit?",
|
||||||
"Back to %s" : "Tornar a %s",
|
"Back to %s" : "Tornar a %s",
|
||||||
|
|
@ -58,6 +66,8 @@ OC.L10N.register(
|
||||||
"admin" : "administrador",
|
"admin" : "administrador",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
"user" : "usuari",
|
"user" : "usuari",
|
||||||
|
"Server error" : "Error del servidor",
|
||||||
|
"unlimited" : "il·limitada",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accés",
|
"Access" : "Accés",
|
||||||
"Max" : "Màx",
|
"Max" : "Màx",
|
||||||
|
|
@ -71,6 +81,7 @@ 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.",
|
||||||
|
"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ó dels diferents conceptes que constitueixen les opcions d'accés:<br> - Públic: Qualsevol persona que tingui l'enllaç pot unir-s'hi.<br> - Intern: Només els usuaris del Nextcloud poden unir-s'hi.<br> - Contrasenya: Només els convidats que tinguin la contrasenya poden unir-s'hi.<br> - Sala d'espera: Un moderador ha d'acceptar cada convidat abans que pugui unir-se.<br> - Restringit: Només els usuaris i grups seleccionats poden accedir a aquesta 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 é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.",
|
||||||
|
|
@ -113,19 +124,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir la gravació de \"{startDate}\"? Aquesta operació no es pot desfer.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir la gravació de \"{startDate}\"? Aquesta operació no es pot desfer.",
|
||||||
"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",
|
"Could not modify publishing state" : "No s'ha pogut modificar l'estat de publicació",
|
||||||
"Could not modify publishing state" : "No s'ha pogut modificar l'estat de publicació ",
|
|
||||||
"Open room" : "Obrir sala",
|
"Open room" : "Obrir sala",
|
||||||
"Start" : "Inici",
|
"Start" : "Inici",
|
||||||
"Clone room" : "Clonar sala",
|
"Clone room" : "Clonar sala",
|
||||||
"Loading" : "Carregant",
|
"Loading" : "S'està 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è.",
|
||||||
|
"Group name" : "Nom del grup",
|
||||||
"Max. rooms" : "Màx. sales",
|
"Max. rooms" : "Màx. sales",
|
||||||
|
"Access options" : "Opcions d'accés",
|
||||||
"Max. participants" : "Màx. participants",
|
"Max. participants" : "Màx. participants",
|
||||||
"Group …" : "Grup …",
|
"Group …" : "Grup …",
|
||||||
"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." : "Les restriccions no afecten les sales existents. Menys un significa que el valor és il·limitat. L'opció menys restrictiva es tria per a cada usuari si apliquen diverses restriccions.",
|
"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." : "Les restriccions no afecten les sales existents. Menys un significa que el valor és il·limitat. L'opció menys restrictiva es tria per a cada usuari si apliquen diverses restriccions.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir les restriccions del grup \"{name}\"? Aquesta operació no es pot desfer.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir les restriccions del grup \"{name}\"? Aquesta operació no es pot desfer.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Voleu suprimir restriccions per a \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "Voleu suprimir restriccions per a \"{name}\"?",
|
||||||
|
"All users" : "Tots els usuaris",
|
||||||
|
"All" : "Totes",
|
||||||
"Settings saved" : "S'han desat els paràmetres",
|
"Settings saved" : "S'han desat els paràmetres",
|
||||||
"Unexpected error occurred" : "S'ha produït un error inesperat",
|
"Unexpected error occurred" : "S'ha produït un error inesperat",
|
||||||
"API URL is invalid" : "URL de l'API no és vàlid",
|
"API URL is invalid" : "URL de l'API no és vàlid",
|
||||||
|
|
@ -133,15 +147,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "La URL ha de començar amb HTTPS",
|
"URL has to start with HTTPS" : "La URL ha de començar amb HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "L'URL ha de contenir el marcador de posició {token}",
|
"URL has to contain the {token} placeholder" : "L'URL ha de contenir el marcador de posició {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL ha de començar per https:// i contenir {token}. A més, es pot utilitzar el marcador de posició de {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL ha de començar per https:// i contenir {token}. A més, es pot utilitzar el marcador de posició de {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Exemple de configuració per a Apache i Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "El fitxer \"{filename}\" s'ha penjat a la vostra sala.",
|
"The file \"{filename}\" was uploaded to your room." : "El fitxer \"{filename}\" s'ha penjat a la vostra sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala. Potser el vostre servidor BigBlueButton no admet aquesta acció.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala. Potser el vostre servidor BigBlueButton no admet aquesta acció.",
|
||||||
"Send file to BBB" : "Envia el fitxer a BBB",
|
|
||||||
"Send to" : "Envia a",
|
|
||||||
"Start with" : "Començar amb",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccioneu la sala en què voleu utilitzar el fitxer \"{filename}\".",
|
|
||||||
"No rooms available!" : "No hi ha sales disponibles!",
|
|
||||||
"Send to BBB" : "Envia 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._" : ["Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segon. Si us plau, espereu.","Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segons. Si us plau, espereu."]
|
"_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._" : ["Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segon. Si us plau, espereu.","Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segons. Si us plau, espereu."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
35
l10n/ca.json
35
l10n/ca.json
|
|
@ -12,14 +12,22 @@
|
||||||
"Recording for room \"%s\" is ready." : "L'enregistrament de la sala \"%s\" està llest.",
|
"Recording for room \"%s\" is ready." : "L'enregistrament de la sala \"%s\" està llest.",
|
||||||
"To invite someone to the meeting, send them this link: %s" : "Per convidar algú a la reunió, envieu-los aquest enllaç: %s",
|
"To invite someone to the meeting, send them this link: %s" : "Per convidar algú a la reunió, envieu-los aquest enllaç: %s",
|
||||||
"Public" : "Públic",
|
"Public" : "Públic",
|
||||||
"Internal + Password protection for guests" : "Protecció interna + contrasenya per als convidats",
|
"Internal + Password protection for guests" : "Interna + Protecció amb contrasenya per convidats",
|
||||||
"Internal + Waiting room for guests" : "Interior + Sala d'espera per a convidats",
|
"Internal + Waiting room for guests" : "Interna + Sala d'espera per a convidats",
|
||||||
"Waiting room for all users" : "Sala d'espera per a tots els usuaris",
|
"Waiting room for all users" : "Sala d'espera per a tots els usuaris",
|
||||||
"Internal" : "Intern",
|
"Internal" : "Interna",
|
||||||
"Internal restricted" : "Restringit intern",
|
"Internal restricted" : "Interna restringida",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Adreça URL o secret de l'API no configurat. Poseu-vos en contacte amb l'administrador.",
|
"API URL or secret not configured. Please contact your administrator." : "Adreça URL o secret de l'API no configurat. Poseu-vos en contacte amb l'administrador.",
|
||||||
"BigBlueButton Integration" : "Integració de BigBlueButton",
|
"BigBlueButton Integration" : "Integració de BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integració de BigBlueButton per Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Integració de BigBlueButton per 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Aquesta aplicació permet crear reunions amb una instal·lació externa de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuració de la sala** Crea diverses configuracions de sala amb nom, missatge de benvinguda …\n* **Comparteix l'enllaç de convidat** Comparteix l'enllaç de la sala amb tots els teus convidats\n* **Comparteix l'enllaç del moderador** Convida moderadors a la sala\n* **Comparteix sales** Comparteix sales amb membres, grups o cercles\n* **Presentació personalitzada** Inicia una sala amb una presentació seleccionada des del teu navegador d'arxius\n* **Gestiona les gravacions** Visualitza, comparteix i suprimeix les gravacions de les teves sales\n* **Restriccions** Restringeix la creació de sales a determinats grups\n* **Activitats** Obtén una visió general de les activitats de la teva sala\n\nGuia d'inici ràpid i més informació al nostre [readme](https://github.com/littleredbutton/cloud_bbb).\nT'agrada aquesta aplicació? Dona alguna cosa a la comunitat de codi obert i consulta les nostres\n[maneres de contribuir](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nEls col·laboradors són benvinguts! Si teniu temps, seria fantàstic que poguéssiu ajudar a millorar aquesta aplicació.\n\n*Aquesta aplicació integra BigBlueButton i no està avalada ni certificada per BigBlueButton Inc. BigBlueButton i el logotip de BigBlueButton són marques comercials de BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Envia a BBB",
|
||||||
|
"Loading…" : "S'està carregant…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccioneu la sala en què voleu utilitzar el fitxer \"{filename}\".",
|
||||||
|
"Send to" : "Envia a",
|
||||||
|
"Start with" : "Començar amb",
|
||||||
|
"No rooms available!" : "No hi ha sales disponibles!",
|
||||||
|
"Close" : "Tanca",
|
||||||
"Room not found" : "No s'ha trobat la sala",
|
"Room not found" : "No s'ha trobat la sala",
|
||||||
"The room could not be found. Maybe it was deleted?" : "No s'ha trobat la sala. Potser s'ha suprimit?",
|
"The room could not be found. Maybe it was deleted?" : "No s'ha trobat la sala. Potser s'ha suprimit?",
|
||||||
"Back to %s" : "Tornar a %s",
|
"Back to %s" : "Tornar a %s",
|
||||||
|
|
@ -56,6 +64,8 @@
|
||||||
"admin" : "administrador",
|
"admin" : "administrador",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
"user" : "usuari",
|
"user" : "usuari",
|
||||||
|
"Server error" : "Error del servidor",
|
||||||
|
"unlimited" : "il·limitada",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accés",
|
"Access" : "Accés",
|
||||||
"Max" : "Màx",
|
"Max" : "Màx",
|
||||||
|
|
@ -69,6 +79,7 @@
|
||||||
"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.",
|
||||||
|
"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ó dels diferents conceptes que constitueixen les opcions d'accés:<br> - Públic: Qualsevol persona que tingui l'enllaç pot unir-s'hi.<br> - Intern: Només els usuaris del Nextcloud poden unir-s'hi.<br> - Contrasenya: Només els convidats que tinguin la contrasenya poden unir-s'hi.<br> - Sala d'espera: Un moderador ha d'acceptar cada convidat abans que pugui unir-se.<br> - Restringit: Només els usuaris i grups seleccionats poden accedir a aquesta 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 é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.",
|
||||||
|
|
@ -111,19 +122,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir la gravació de \"{startDate}\"? Aquesta operació no es pot desfer.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir la gravació de \"{startDate}\"? Aquesta operació no es pot desfer.",
|
||||||
"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",
|
"Could not modify publishing state" : "No s'ha pogut modificar l'estat de publicació",
|
||||||
"Could not modify publishing state" : "No s'ha pogut modificar l'estat de publicació ",
|
|
||||||
"Open room" : "Obrir sala",
|
"Open room" : "Obrir sala",
|
||||||
"Start" : "Inici",
|
"Start" : "Inici",
|
||||||
"Clone room" : "Clonar sala",
|
"Clone room" : "Clonar sala",
|
||||||
"Loading" : "Carregant",
|
"Loading" : "S'està 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è.",
|
||||||
|
"Group name" : "Nom del grup",
|
||||||
"Max. rooms" : "Màx. sales",
|
"Max. rooms" : "Màx. sales",
|
||||||
|
"Access options" : "Opcions d'accés",
|
||||||
"Max. participants" : "Màx. participants",
|
"Max. participants" : "Màx. participants",
|
||||||
"Group …" : "Grup …",
|
"Group …" : "Grup …",
|
||||||
"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." : "Les restriccions no afecten les sales existents. Menys un significa que el valor és il·limitat. L'opció menys restrictiva es tria per a cada usuari si apliquen diverses restriccions.",
|
"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." : "Les restriccions no afecten les sales existents. Menys un significa que el valor és il·limitat. L'opció menys restrictiva es tria per a cada usuari si apliquen diverses restriccions.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir les restriccions del grup \"{name}\"? Aquesta operació no es pot desfer.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Esteu segur que voleu suprimir les restriccions del grup \"{name}\"? Aquesta operació no es pot desfer.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Voleu suprimir restriccions per a \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "Voleu suprimir restriccions per a \"{name}\"?",
|
||||||
|
"All users" : "Tots els usuaris",
|
||||||
|
"All" : "Totes",
|
||||||
"Settings saved" : "S'han desat els paràmetres",
|
"Settings saved" : "S'han desat els paràmetres",
|
||||||
"Unexpected error occurred" : "S'ha produït un error inesperat",
|
"Unexpected error occurred" : "S'ha produït un error inesperat",
|
||||||
"API URL is invalid" : "URL de l'API no és vàlid",
|
"API URL is invalid" : "URL de l'API no és vàlid",
|
||||||
|
|
@ -131,15 +145,10 @@
|
||||||
"URL has to start with HTTPS" : "La URL ha de començar amb HTTPS",
|
"URL has to start with HTTPS" : "La URL ha de començar amb HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "L'URL ha de contenir el marcador de posició {token}",
|
"URL has to contain the {token} placeholder" : "L'URL ha de contenir el marcador de posició {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL ha de començar per https:// i contenir {token}. A més, es pot utilitzar el marcador de posició de {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL ha de començar per https:// i contenir {token}. A més, es pot utilitzar el marcador de posició de {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Exemple de configuració per a Apache i Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "El fitxer \"{filename}\" s'ha penjat a la vostra sala.",
|
"The file \"{filename}\" was uploaded to your room." : "El fitxer \"{filename}\" s'ha penjat a la vostra sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala. Potser el vostre servidor BigBlueButton no admet aquesta acció.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "El fitxer \"{filename}\" no s'ha pogut penjar a la vostra sala. Potser el vostre servidor BigBlueButton no admet aquesta acció.",
|
||||||
"Send file to BBB" : "Envia el fitxer a BBB",
|
|
||||||
"Send to" : "Envia a",
|
|
||||||
"Start with" : "Començar amb",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccioneu la sala en què voleu utilitzar el fitxer \"{filename}\".",
|
|
||||||
"No rooms available!" : "No hi ha sales disponibles!",
|
|
||||||
"Send to BBB" : "Envia 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._" : ["Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segon. Si us plau, espereu.","Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segons. Si us plau, espereu."]
|
"_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._" : ["Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segon. Si us plau, espereu.","Aquesta sala encara no està oberta. Ho tornarem a provar d'aquí a 1%n segons. Si us plau, espereu."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
25
l10n/cs.js
25
l10n/cs.js
|
|
@ -22,6 +22,15 @@ OC.L10N.register(
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Není nastavená URL adresa aplikačního programového rozhraní (API) nebo tajemství. Obraťte se na svého správce.",
|
"API URL or secret not configured. Please contact your administrator." : "Není nastavená URL adresa aplikačního programového rozhraní (API) nebo tajemství. Obraťte se na svého správce.",
|
||||||
"BigBlueButton Integration" : "Napojení na BigBlueButton",
|
"BigBlueButton Integration" : "Napojení na BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Napojení na BigBlueButton pro Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Napojení na BigBlueButton pro Nextcloud",
|
||||||
|
"Send to BBB" : "Odeslat do BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Došlo k chybě při odesílání souboru do místnosti.",
|
||||||
|
"Loading…" : "Načítání …",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Vyberte místnost ve které chcete použít soubor „{filename}“.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Zobrazeny budou pouze místnosti, pro které jste jedním ze správců.",
|
||||||
|
"Send to" : "Odeslat k",
|
||||||
|
"Start with" : "Začít s",
|
||||||
|
"No rooms available!" : "Nejsou k dispozici žádné místnosti!",
|
||||||
|
"Close" : "Zavřít",
|
||||||
"Room not found" : "Místnost nenalezena",
|
"Room not found" : "Místnost nenalezena",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Místnost se nepodařilo nalézt. Možná byla smazána?",
|
"The room could not be found. Maybe it was deleted?" : "Místnost se nepodařilo nalézt. Možná byla smazána?",
|
||||||
"Back to %s" : "Zpět na %s",
|
"Back to %s" : "Zpět na %s",
|
||||||
|
|
@ -51,13 +60,15 @@ OC.L10N.register(
|
||||||
"Join" : "Připojit se",
|
"Join" : "Připojit se",
|
||||||
"Have an account? Log in." : "Máte uživatelský účet? Přihlaste se jím.",
|
"Have an account? Log in." : "Máte uživatelský účet? Přihlaste se jím.",
|
||||||
"Hello %s" : "Dobrý den, %s",
|
"Hello %s" : "Dobrý den, %s",
|
||||||
"Name, group …" : "Jméno, skupina…",
|
"Name, group …" : "Jméno, skupina …",
|
||||||
"Group" : "Skupina",
|
"Group" : "Skupina",
|
||||||
"Searching" : "Hledá se",
|
"Searching" : "Hledá se",
|
||||||
"No matches" : "Žádné shody",
|
"No matches" : "Žádné shody",
|
||||||
"admin" : "správce",
|
"admin" : "správce",
|
||||||
"moderator" : "moderátor",
|
"moderator" : "moderátor",
|
||||||
"user" : "uživatel",
|
"user" : "uživatel",
|
||||||
|
"Server error" : "Chyba serveru",
|
||||||
|
"unlimited" : "neomezené",
|
||||||
"Name" : "Název",
|
"Name" : "Název",
|
||||||
"Access" : "Přístup",
|
"Access" : "Přístup",
|
||||||
"Max" : "Nejvýše",
|
"Max" : "Nejvýše",
|
||||||
|
|
@ -114,19 +125,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Opravdu chcete smazat nahrávku z „{startDate}“? Tuto operaci nelze vzít zpět.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Opravdu chcete smazat nahrávku z „{startDate}“? Tuto operaci nelze vzít zpět.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Nepodařilo se změnit stav zvěřejnění",
|
"Could not modify publishing state" : "Nepodařilo se změnit stav zvěřejnění",
|
||||||
"Open room" : "Otevřít místnost",
|
"Open room" : "Otevřít místnost",
|
||||||
"Start" : "Spustit",
|
"Start" : "Spustit",
|
||||||
"Clone room" : "Klonovat místnost",
|
"Clone room" : "Klonovat místnost",
|
||||||
"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.",
|
||||||
|
"Group name" : "Název skupiny",
|
||||||
"Max. rooms" : "Nejvýše místností",
|
"Max. rooms" : "Nejvýše místností",
|
||||||
|
"Access options" : "Předvolby přístupu",
|
||||||
"Max. participants" : "Nejvýše účastníků",
|
"Max. participants" : "Nejvýše účastníků",
|
||||||
"Group …" : "Skupina…",
|
"Group …" : "Skupina…",
|
||||||
"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." : "Omezení neovlivní existující místnosti. Mínus 1 (-1) znamená, že hodnota je neomezená. Pokud je uplatněno vícero omezení, je pro každého uživatele zvoleno ta nejméně omezující volba.",
|
"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." : "Omezení neovlivní existující místnosti. Mínus 1 (-1) znamená, že hodnota je neomezená. Pokud je uplatněno vícero omezení, je pro každého uživatele zvoleno ta nejméně omezující volba.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Opravdu chcete mazat omezení pro skupinu „{name}“? Tuto operaci nelze vzít zpět.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Opravdu chcete mazat omezení pro skupinu „{name}“? Tuto operaci nelze vzít zpět.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Smazat omezení pro „{name}“?",
|
"Delete restrictions for \"{name}\"?" : "Smazat omezení pro „{name}“?",
|
||||||
|
"All users" : "Všichni uživatelé",
|
||||||
|
"All" : "Vše",
|
||||||
"Settings saved" : "Nastavení uložena",
|
"Settings saved" : "Nastavení uložena",
|
||||||
"Unexpected error occurred" : "Došlo k neočekávané chybě",
|
"Unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||||
"API URL is invalid" : "URL adresa aplikačního program. rozhraní (API) není platná",
|
"API URL is invalid" : "URL adresa aplikačního program. rozhraní (API) není platná",
|
||||||
|
|
@ -134,15 +148,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "Je třeba, aby URL začínalo na HTTPS",
|
"URL has to start with HTTPS" : "Je třeba, aby URL začínalo na HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "Je třeba, aby URL obsahovalo zástupné vyjádření {token}",
|
"URL has to contain the {token} placeholder" : "Je třeba, aby URL obsahovalo zástupné vyjádření {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Je třeba, aby URL začínalo na https:// a obsahovalo {token}. Dále je možné použít také zástupné vyjádření {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Je třeba, aby URL začínalo na https:// a obsahovalo {token}. Dále je možné použít také zástupné vyjádření {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Ukázka nastavení pro Apache a Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Soubor „{filename}“ byl nahrán do vaší místnosti.",
|
"The file \"{filename}\" was uploaded to your room." : "Soubor „{filename}“ byl nahrán do vaší místnosti.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti. Vámi využívaný BigBlueButton server tuto akci nepodporuje.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti. Vámi využívaný BigBlueButton server tuto akci nepodporuje.",
|
||||||
"Send file to BBB" : "Odeslat soubor do BBB",
|
|
||||||
"Send to" : "Odeslat k",
|
|
||||||
"Start with" : "Začít s",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Vyberte místnost ve které chcete použít soubor „{filename}“.",
|
|
||||||
"No rooms available!" : "Nejsou k dispozici žádné místnosti!",
|
|
||||||
"Send to BBB" : "Odeslat do 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._" : ["Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundu. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekund. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy Čekejte prosím."]
|
"_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._" : ["Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundu. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekund. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy Čekejte prosím."]
|
||||||
},
|
},
|
||||||
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
|
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
|
||||||
|
|
|
||||||
25
l10n/cs.json
25
l10n/cs.json
|
|
@ -20,6 +20,15 @@
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Není nastavená URL adresa aplikačního programového rozhraní (API) nebo tajemství. Obraťte se na svého správce.",
|
"API URL or secret not configured. Please contact your administrator." : "Není nastavená URL adresa aplikačního programového rozhraní (API) nebo tajemství. Obraťte se na svého správce.",
|
||||||
"BigBlueButton Integration" : "Napojení na BigBlueButton",
|
"BigBlueButton Integration" : "Napojení na BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Napojení na BigBlueButton pro Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Napojení na BigBlueButton pro Nextcloud",
|
||||||
|
"Send to BBB" : "Odeslat do BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Došlo k chybě při odesílání souboru do místnosti.",
|
||||||
|
"Loading…" : "Načítání …",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Vyberte místnost ve které chcete použít soubor „{filename}“.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Zobrazeny budou pouze místnosti, pro které jste jedním ze správců.",
|
||||||
|
"Send to" : "Odeslat k",
|
||||||
|
"Start with" : "Začít s",
|
||||||
|
"No rooms available!" : "Nejsou k dispozici žádné místnosti!",
|
||||||
|
"Close" : "Zavřít",
|
||||||
"Room not found" : "Místnost nenalezena",
|
"Room not found" : "Místnost nenalezena",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Místnost se nepodařilo nalézt. Možná byla smazána?",
|
"The room could not be found. Maybe it was deleted?" : "Místnost se nepodařilo nalézt. Možná byla smazána?",
|
||||||
"Back to %s" : "Zpět na %s",
|
"Back to %s" : "Zpět na %s",
|
||||||
|
|
@ -49,13 +58,15 @@
|
||||||
"Join" : "Připojit se",
|
"Join" : "Připojit se",
|
||||||
"Have an account? Log in." : "Máte uživatelský účet? Přihlaste se jím.",
|
"Have an account? Log in." : "Máte uživatelský účet? Přihlaste se jím.",
|
||||||
"Hello %s" : "Dobrý den, %s",
|
"Hello %s" : "Dobrý den, %s",
|
||||||
"Name, group …" : "Jméno, skupina…",
|
"Name, group …" : "Jméno, skupina …",
|
||||||
"Group" : "Skupina",
|
"Group" : "Skupina",
|
||||||
"Searching" : "Hledá se",
|
"Searching" : "Hledá se",
|
||||||
"No matches" : "Žádné shody",
|
"No matches" : "Žádné shody",
|
||||||
"admin" : "správce",
|
"admin" : "správce",
|
||||||
"moderator" : "moderátor",
|
"moderator" : "moderátor",
|
||||||
"user" : "uživatel",
|
"user" : "uživatel",
|
||||||
|
"Server error" : "Chyba serveru",
|
||||||
|
"unlimited" : "neomezené",
|
||||||
"Name" : "Název",
|
"Name" : "Název",
|
||||||
"Access" : "Přístup",
|
"Access" : "Přístup",
|
||||||
"Max" : "Nejvýše",
|
"Max" : "Nejvýše",
|
||||||
|
|
@ -112,19 +123,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Opravdu chcete smazat nahrávku z „{startDate}“? Tuto operaci nelze vzít zpět.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Opravdu chcete smazat nahrávku z „{startDate}“? Tuto operaci nelze vzít zpět.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Nepodařilo se změnit stav zvěřejnění",
|
"Could not modify publishing state" : "Nepodařilo se změnit stav zvěřejnění",
|
||||||
"Open room" : "Otevřít místnost",
|
"Open room" : "Otevřít místnost",
|
||||||
"Start" : "Spustit",
|
"Start" : "Spustit",
|
||||||
"Clone room" : "Klonovat místnost",
|
"Clone room" : "Klonovat místnost",
|
||||||
"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.",
|
||||||
|
"Group name" : "Název skupiny",
|
||||||
"Max. rooms" : "Nejvýše místností",
|
"Max. rooms" : "Nejvýše místností",
|
||||||
|
"Access options" : "Předvolby přístupu",
|
||||||
"Max. participants" : "Nejvýše účastníků",
|
"Max. participants" : "Nejvýše účastníků",
|
||||||
"Group …" : "Skupina…",
|
"Group …" : "Skupina…",
|
||||||
"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." : "Omezení neovlivní existující místnosti. Mínus 1 (-1) znamená, že hodnota je neomezená. Pokud je uplatněno vícero omezení, je pro každého uživatele zvoleno ta nejméně omezující volba.",
|
"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." : "Omezení neovlivní existující místnosti. Mínus 1 (-1) znamená, že hodnota je neomezená. Pokud je uplatněno vícero omezení, je pro každého uživatele zvoleno ta nejméně omezující volba.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Opravdu chcete mazat omezení pro skupinu „{name}“? Tuto operaci nelze vzít zpět.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Opravdu chcete mazat omezení pro skupinu „{name}“? Tuto operaci nelze vzít zpět.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Smazat omezení pro „{name}“?",
|
"Delete restrictions for \"{name}\"?" : "Smazat omezení pro „{name}“?",
|
||||||
|
"All users" : "Všichni uživatelé",
|
||||||
|
"All" : "Vše",
|
||||||
"Settings saved" : "Nastavení uložena",
|
"Settings saved" : "Nastavení uložena",
|
||||||
"Unexpected error occurred" : "Došlo k neočekávané chybě",
|
"Unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||||
"API URL is invalid" : "URL adresa aplikačního program. rozhraní (API) není platná",
|
"API URL is invalid" : "URL adresa aplikačního program. rozhraní (API) není platná",
|
||||||
|
|
@ -132,15 +146,10 @@
|
||||||
"URL has to start with HTTPS" : "Je třeba, aby URL začínalo na HTTPS",
|
"URL has to start with HTTPS" : "Je třeba, aby URL začínalo na HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "Je třeba, aby URL obsahovalo zástupné vyjádření {token}",
|
"URL has to contain the {token} placeholder" : "Je třeba, aby URL obsahovalo zástupné vyjádření {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Je třeba, aby URL začínalo na https:// a obsahovalo {token}. Dále je možné použít také zástupné vyjádření {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Je třeba, aby URL začínalo na https:// a obsahovalo {token}. Dále je možné použít také zástupné vyjádření {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Ukázka nastavení pro Apache a Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Soubor „{filename}“ byl nahrán do vaší místnosti.",
|
"The file \"{filename}\" was uploaded to your room." : "Soubor „{filename}“ byl nahrán do vaší místnosti.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti. Vámi využívaný BigBlueButton server tuto akci nepodporuje.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Soubor „{filename}“ se nepodařilo nahrát do vaší místnosti. Vámi využívaný BigBlueButton server tuto akci nepodporuje.",
|
||||||
"Send file to BBB" : "Odeslat soubor do BBB",
|
|
||||||
"Send to" : "Odeslat k",
|
|
||||||
"Start with" : "Začít s",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Vyberte místnost ve které chcete použít soubor „{filename}“.",
|
|
||||||
"No rooms available!" : "Nejsou k dispozici žádné místnosti!",
|
|
||||||
"Send to BBB" : "Odeslat do 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._" : ["Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundu. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekund. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy Čekejte prosím."]
|
"_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._" : ["Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundu. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekund. Čekejte prosím.","Tato místnost ještě není otevřená. Bude opětovně vyzkoušeno za %n sekundy Čekejte prosím."]
|
||||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
|
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
|
"Loading…" : "Yn llwytho…",
|
||||||
|
"Close" : "Cau",
|
||||||
"Save" : "Cadw",
|
"Save" : "Cadw",
|
||||||
"Display name" : "Enw Dangos",
|
"Display name" : "Enw Dangos",
|
||||||
"Password" : "Cyfrinair",
|
"Password" : "Cyfrinair",
|
||||||
|
|
@ -12,6 +14,6 @@ OC.L10N.register(
|
||||||
"Create" : "Creu",
|
"Create" : "Creu",
|
||||||
"Delete" : "Dileu",
|
"Delete" : "Dileu",
|
||||||
"Error" : "Gwall",
|
"Error" : "Gwall",
|
||||||
"Loading" : "Llwytho"
|
"All" : "Popeth"
|
||||||
},
|
},
|
||||||
"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;");
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
|
"Loading…" : "Yn llwytho…",
|
||||||
|
"Close" : "Cau",
|
||||||
"Save" : "Cadw",
|
"Save" : "Cadw",
|
||||||
"Display name" : "Enw Dangos",
|
"Display name" : "Enw Dangos",
|
||||||
"Password" : "Cyfrinair",
|
"Password" : "Cyfrinair",
|
||||||
|
|
@ -10,6 +12,6 @@
|
||||||
"Create" : "Creu",
|
"Create" : "Creu",
|
||||||
"Delete" : "Dileu",
|
"Delete" : "Dileu",
|
||||||
"Error" : "Gwall",
|
"Error" : "Gwall",
|
||||||
"Loading" : "Llwytho"
|
"All" : "Popeth"
|
||||||
},"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;"
|
||||||
}
|
}
|
||||||
15
l10n/da.js
15
l10n/da.js
|
|
@ -23,6 +23,9 @@ OC.L10N.register(
|
||||||
"BigBlueButton Integration" : "BigBlueButton integration",
|
"BigBlueButton Integration" : "BigBlueButton integration",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration til Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration til 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Denne app giver mulighed for at oprette møder med en ekstern installation af [BigBlueButton](https://bigbluebutton.org).\n\n* **Rumopsætning** Opret multiple rumkonfigurationer med navn. velkomstbesked …\n* **Del gæstelink** Del rumlinket med alle dine gæster\n* **Del moderatorlink** Inviter moderatorer til rummet\n* **Del rum** Del rum med medlemmer, grupper eller cirkler\n* **Brugerdefineret præsentation** Start et rum med en udvalgt præsentation fra din filbrowser\n* **Styr optagelser** Vis, del og slet optagelser af dine rum\n* **Begrænsninger** Begræns rumoprettelse til visse grupper\n* **Aktiviteter** Få et overblik over dine rumaktiviteter\n\nHurtigt start guide og yderligere information i vores [readme](https://github.com/littleredbutton/cloud_bbb).\nKan du li' denne applikation? Giv noget tilbage til opensource fællesskabet og tjek vores\n[måder at bidrage på](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nBidragsydere er velkomne! Hvis du har tid, så ville det være skønt, hvis du kan hjælpe med at forbedre denne applikation.\n\n*Denne app integrerer BigBlueButton og er ikke godkendt eller certificeret af BigBlueButton Inc. BigBlueButton og BigBlueButton logoet er handelsmærker for 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Denne app giver mulighed for at oprette møder med en ekstern installation af [BigBlueButton](https://bigbluebutton.org).\n\n* **Rumopsætning** Opret multiple rumkonfigurationer med navn. velkomstbesked …\n* **Del gæstelink** Del rumlinket med alle dine gæster\n* **Del moderatorlink** Inviter moderatorer til rummet\n* **Del rum** Del rum med medlemmer, grupper eller cirkler\n* **Brugerdefineret præsentation** Start et rum med en udvalgt præsentation fra din filbrowser\n* **Styr optagelser** Vis, del og slet optagelser af dine rum\n* **Begrænsninger** Begræns rumoprettelse til visse grupper\n* **Aktiviteter** Få et overblik over dine rumaktiviteter\n\nHurtigt start guide og yderligere information i vores [readme](https://github.com/littleredbutton/cloud_bbb).\nKan du li' denne applikation? Giv noget tilbage til opensource fællesskabet og tjek vores\n[måder at bidrage på](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nBidragsydere er velkomne! Hvis du har tid, så ville det være skønt, hvis du kan hjælpe med at forbedre denne applikation.\n\n*Denne app integrerer BigBlueButton og er ikke godkendt eller certificeret af BigBlueButton Inc. BigBlueButton og BigBlueButton logoet er handelsmærker for BigBlueButton Inc.*",
|
||||||
|
"Loading…" : "Indlæser…",
|
||||||
|
"Send to" : "Send til",
|
||||||
|
"Close" : "Luk",
|
||||||
"Room not found" : "Rum ikke fundet",
|
"Room not found" : "Rum ikke fundet",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Rummet kunne ikke findes. Måske er det blevet slettet?",
|
"The room could not be found. Maybe it was deleted?" : "Rummet kunne ikke findes. Måske er det blevet slettet?",
|
||||||
"Back to %s" : "Tilbage til %s",
|
"Back to %s" : "Tilbage til %s",
|
||||||
|
|
@ -32,7 +35,7 @@ OC.L10N.register(
|
||||||
"Save" : "Gem",
|
"Save" : "Gem",
|
||||||
"Show room manager in app navigation instead of settings page." : "Vis rumstyring i app navigation i stedet for indstillingssiden.",
|
"Show room manager in app navigation instead of settings page." : "Vis rumstyring i app navigation i stedet for indstillingssiden.",
|
||||||
"Use Nextcloud theme in BigBlueButton." : "Anvend Nextcloud tema i BigBlueButton.",
|
"Use Nextcloud theme in BigBlueButton." : "Anvend Nextcloud tema i BigBlueButton.",
|
||||||
"Default Room Settings" : "Standard rumindstillingerRoom Settings",
|
"Default Room Settings" : "Standard rumindstillinger",
|
||||||
"Below you can change some default values, which are used to create a new room." : "Nedenfor kan du ændre nogle standardværdier, som anvendes til at oprette et nyt rum.",
|
"Below you can change some default values, which are used to create a new room." : "Nedenfor kan du ændre nogle standardværdier, som anvendes til at oprette et nyt rum.",
|
||||||
"Community" : "Onlinefællesskab",
|
"Community" : "Onlinefællesskab",
|
||||||
"Display name" : "Vist navn",
|
"Display name" : "Vist navn",
|
||||||
|
|
@ -43,10 +46,11 @@ OC.L10N.register(
|
||||||
"No matches" : "Ingen matches",
|
"No matches" : "Ingen matches",
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderator",
|
"moderator" : "moderator",
|
||||||
|
"Server error" : "Serverfejl",
|
||||||
"Name" : "Navn",
|
"Name" : "Navn",
|
||||||
"Access" : "Adgang",
|
"Access" : "Adgang",
|
||||||
"Max" : "Maks",
|
"Max" : "Maks",
|
||||||
"Edit" : "Rediger",
|
"Edit" : "Redigér",
|
||||||
"Welcome" : "Velkommen",
|
"Welcome" : "Velkommen",
|
||||||
"Sharing" : "Deling",
|
"Sharing" : "Deling",
|
||||||
"Miscellaneous" : "Diverse",
|
"Miscellaneous" : "Diverse",
|
||||||
|
|
@ -58,10 +62,11 @@ OC.L10N.register(
|
||||||
"Delete" : "Slet",
|
"Delete" : "Slet",
|
||||||
"Error" : "Fejl",
|
"Error" : "Fejl",
|
||||||
"Delete?" : "Slet?",
|
"Delete?" : "Slet?",
|
||||||
"Server error" : "Serverfejl",
|
|
||||||
"Loading" : "Indlæser",
|
"Loading" : "Indlæser",
|
||||||
|
"Group name" : "Gruppenavn",
|
||||||
|
"All users" : "Alle brugere",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Indstillinger gemt",
|
"Settings saved" : "Indstillinger gemt",
|
||||||
"Unexpected error occurred" : "En uventet fejl opstod",
|
"Unexpected error occurred" : "En uventet fejl opstod"
|
||||||
"Send to" : "Send til"
|
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
15
l10n/da.json
15
l10n/da.json
|
|
@ -21,6 +21,9 @@
|
||||||
"BigBlueButton Integration" : "BigBlueButton integration",
|
"BigBlueButton Integration" : "BigBlueButton integration",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration til Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton integration til 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Denne app giver mulighed for at oprette møder med en ekstern installation af [BigBlueButton](https://bigbluebutton.org).\n\n* **Rumopsætning** Opret multiple rumkonfigurationer med navn. velkomstbesked …\n* **Del gæstelink** Del rumlinket med alle dine gæster\n* **Del moderatorlink** Inviter moderatorer til rummet\n* **Del rum** Del rum med medlemmer, grupper eller cirkler\n* **Brugerdefineret præsentation** Start et rum med en udvalgt præsentation fra din filbrowser\n* **Styr optagelser** Vis, del og slet optagelser af dine rum\n* **Begrænsninger** Begræns rumoprettelse til visse grupper\n* **Aktiviteter** Få et overblik over dine rumaktiviteter\n\nHurtigt start guide og yderligere information i vores [readme](https://github.com/littleredbutton/cloud_bbb).\nKan du li' denne applikation? Giv noget tilbage til opensource fællesskabet og tjek vores\n[måder at bidrage på](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nBidragsydere er velkomne! Hvis du har tid, så ville det være skønt, hvis du kan hjælpe med at forbedre denne applikation.\n\n*Denne app integrerer BigBlueButton og er ikke godkendt eller certificeret af BigBlueButton Inc. BigBlueButton og BigBlueButton logoet er handelsmærker for 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Denne app giver mulighed for at oprette møder med en ekstern installation af [BigBlueButton](https://bigbluebutton.org).\n\n* **Rumopsætning** Opret multiple rumkonfigurationer med navn. velkomstbesked …\n* **Del gæstelink** Del rumlinket med alle dine gæster\n* **Del moderatorlink** Inviter moderatorer til rummet\n* **Del rum** Del rum med medlemmer, grupper eller cirkler\n* **Brugerdefineret præsentation** Start et rum med en udvalgt præsentation fra din filbrowser\n* **Styr optagelser** Vis, del og slet optagelser af dine rum\n* **Begrænsninger** Begræns rumoprettelse til visse grupper\n* **Aktiviteter** Få et overblik over dine rumaktiviteter\n\nHurtigt start guide og yderligere information i vores [readme](https://github.com/littleredbutton/cloud_bbb).\nKan du li' denne applikation? Giv noget tilbage til opensource fællesskabet og tjek vores\n[måder at bidrage på](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nBidragsydere er velkomne! Hvis du har tid, så ville det være skønt, hvis du kan hjælpe med at forbedre denne applikation.\n\n*Denne app integrerer BigBlueButton og er ikke godkendt eller certificeret af BigBlueButton Inc. BigBlueButton og BigBlueButton logoet er handelsmærker for BigBlueButton Inc.*",
|
||||||
|
"Loading…" : "Indlæser…",
|
||||||
|
"Send to" : "Send til",
|
||||||
|
"Close" : "Luk",
|
||||||
"Room not found" : "Rum ikke fundet",
|
"Room not found" : "Rum ikke fundet",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Rummet kunne ikke findes. Måske er det blevet slettet?",
|
"The room could not be found. Maybe it was deleted?" : "Rummet kunne ikke findes. Måske er det blevet slettet?",
|
||||||
"Back to %s" : "Tilbage til %s",
|
"Back to %s" : "Tilbage til %s",
|
||||||
|
|
@ -30,7 +33,7 @@
|
||||||
"Save" : "Gem",
|
"Save" : "Gem",
|
||||||
"Show room manager in app navigation instead of settings page." : "Vis rumstyring i app navigation i stedet for indstillingssiden.",
|
"Show room manager in app navigation instead of settings page." : "Vis rumstyring i app navigation i stedet for indstillingssiden.",
|
||||||
"Use Nextcloud theme in BigBlueButton." : "Anvend Nextcloud tema i BigBlueButton.",
|
"Use Nextcloud theme in BigBlueButton." : "Anvend Nextcloud tema i BigBlueButton.",
|
||||||
"Default Room Settings" : "Standard rumindstillingerRoom Settings",
|
"Default Room Settings" : "Standard rumindstillinger",
|
||||||
"Below you can change some default values, which are used to create a new room." : "Nedenfor kan du ændre nogle standardværdier, som anvendes til at oprette et nyt rum.",
|
"Below you can change some default values, which are used to create a new room." : "Nedenfor kan du ændre nogle standardværdier, som anvendes til at oprette et nyt rum.",
|
||||||
"Community" : "Onlinefællesskab",
|
"Community" : "Onlinefællesskab",
|
||||||
"Display name" : "Vist navn",
|
"Display name" : "Vist navn",
|
||||||
|
|
@ -41,10 +44,11 @@
|
||||||
"No matches" : "Ingen matches",
|
"No matches" : "Ingen matches",
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderator",
|
"moderator" : "moderator",
|
||||||
|
"Server error" : "Serverfejl",
|
||||||
"Name" : "Navn",
|
"Name" : "Navn",
|
||||||
"Access" : "Adgang",
|
"Access" : "Adgang",
|
||||||
"Max" : "Maks",
|
"Max" : "Maks",
|
||||||
"Edit" : "Rediger",
|
"Edit" : "Redigér",
|
||||||
"Welcome" : "Velkommen",
|
"Welcome" : "Velkommen",
|
||||||
"Sharing" : "Deling",
|
"Sharing" : "Deling",
|
||||||
"Miscellaneous" : "Diverse",
|
"Miscellaneous" : "Diverse",
|
||||||
|
|
@ -56,10 +60,11 @@
|
||||||
"Delete" : "Slet",
|
"Delete" : "Slet",
|
||||||
"Error" : "Fejl",
|
"Error" : "Fejl",
|
||||||
"Delete?" : "Slet?",
|
"Delete?" : "Slet?",
|
||||||
"Server error" : "Serverfejl",
|
|
||||||
"Loading" : "Indlæser",
|
"Loading" : "Indlæser",
|
||||||
|
"Group name" : "Gruppenavn",
|
||||||
|
"All users" : "Alle brugere",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Indstillinger gemt",
|
"Settings saved" : "Indstillinger gemt",
|
||||||
"Unexpected error occurred" : "En uventet fejl opstod",
|
"Unexpected error occurred" : "En uventet fejl opstod"
|
||||||
"Send to" : "Send til"
|
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
25
l10n/de.js
25
l10n/de.js
|
|
@ -23,6 +23,15 @@ OC.L10N.register(
|
||||||
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstelle mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teile den Raumlink mit all deinen Gästen\n* **Moderatorlink teilen** Lade Moderatoren in den Raum ein\n* **Räume teilen** Teile Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starte einen Raum mit einer ausgewählten Präsentation aus deinem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für deine Räume\n* **Einschränkungen** Beschränke die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalte einen Überblick über deine Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt dir diese Anwendung? Gib der Open-Source-Community etwas zurück und sieh dir unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn du Zeit hast, wäre es großartig, wenn du helfen könntest, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstelle mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teile den Raumlink mit all deinen Gästen\n* **Moderatorlink teilen** Lade Moderatoren in den Raum ein\n* **Räume teilen** Teile Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starte einen Raum mit einer ausgewählten Präsentation aus deinem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für deine Räume\n* **Einschränkungen** Beschränke die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalte einen Überblick über deine Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt dir diese Anwendung? Gib der Open-Source-Community etwas zurück und sieh dir unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn du Zeit hast, wäre es großartig, wenn du helfen könntest, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "An BBB senden ",
|
||||||
|
"An error occurred while sending the file to the room." : "Es ist ein Fehler beim Senden der Datei an den Raum aufgetreten",
|
||||||
|
"Loading…" : "Lade …",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte wähle den Raum aus, in dem du die Datei \"{filename}\" verwenden möchtest.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Es werden nur Räume angezeigt, für die du der Administration angehörst.",
|
||||||
|
"Send to" : "Senden an",
|
||||||
|
"Start with" : "Beginne mit",
|
||||||
|
"No rooms available!" : "Keine Räume verfügbar!",
|
||||||
|
"Close" : "Schließen",
|
||||||
"Room not found" : "Raum nicht gefunden",
|
"Room not found" : "Raum nicht gefunden",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
||||||
"Back to %s" : "Zurück zu %s",
|
"Back to %s" : "Zurück zu %s",
|
||||||
|
|
@ -59,6 +68,8 @@ OC.L10N.register(
|
||||||
"admin" : "Administration",
|
"admin" : "Administration",
|
||||||
"moderator" : "Moderator",
|
"moderator" : "Moderator",
|
||||||
"user" : "Benutzer",
|
"user" : "Benutzer",
|
||||||
|
"Server error" : "Serverfehler",
|
||||||
|
"unlimited" : "Unbegrenzt",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -115,19 +126,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Bist du sicher, dass du die Aufnahme von \"{startDate}\" löschen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Bist du sicher, dass du die Aufnahme von \"{startDate}\" löschen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"Open room" : "Raum öffnen",
|
"Open room" : "Raum öffnen",
|
||||||
"Start" : "Start",
|
"Start" : "Start",
|
||||||
"Clone room" : "Raum duplizieren",
|
"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.",
|
||||||
|
"Group name" : "Gruppenname",
|
||||||
"Max. rooms" : "Max. Räume",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
"Access options" : "Zugriffsoptionen",
|
||||||
"Max. participants" : "Max. Teilnehmer",
|
"Max. participants" : "Max. Teilnehmer",
|
||||||
"Group …" : "Gruppe …",
|
"Group …" : "Gruppe …",
|
||||||
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Bist du sicher, dass du die Beschränkungen für die Gruppe \"{name}\" entfernen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Bist du sicher, dass du die Beschränkungen für die Gruppe \"{name}\" entfernen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
||||||
|
"All users" : "Alle Benutzer",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Einstellungen gespeichert",
|
"Settings saved" : "Einstellungen gespeichert",
|
||||||
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
||||||
"API URL is invalid" : "API-URL ist ungültig",
|
"API URL is invalid" : "API-URL ist ungültig",
|
||||||
|
|
@ -135,15 +149,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
||||||
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Beispielkonfiguration für Apache und Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in deinen Raum hochgeladen.",
|
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in deinen Raum hochgeladen.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden. Möglicherweise unterstützt dein BigBlueButton-Server diese Aktion nicht.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden. Möglicherweise unterstützt dein BigBlueButton-Server diese Aktion nicht.",
|
||||||
"Send file to BBB" : "Datei an BBB senden",
|
|
||||||
"Send to" : "Senden an",
|
|
||||||
"Start with" : "Beginne mit",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte wähle den Raum aus, in dem du die Datei \"{filename}\" verwenden möchtest.",
|
|
||||||
"No rooms available!" : "Keine Räume verfügbar!",
|
|
||||||
"Send to BBB" : "An BBB senden ",
|
|
||||||
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
25
l10n/de.json
25
l10n/de.json
|
|
@ -21,6 +21,15 @@
|
||||||
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstelle mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teile den Raumlink mit all deinen Gästen\n* **Moderatorlink teilen** Lade Moderatoren in den Raum ein\n* **Räume teilen** Teile Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starte einen Raum mit einer ausgewählten Präsentation aus deinem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für deine Räume\n* **Einschränkungen** Beschränke die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalte einen Überblick über deine Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt dir diese Anwendung? Gib der Open-Source-Community etwas zurück und sieh dir unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn du Zeit hast, wäre es großartig, wenn du helfen könntest, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstelle mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teile den Raumlink mit all deinen Gästen\n* **Moderatorlink teilen** Lade Moderatoren in den Raum ein\n* **Räume teilen** Teile Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starte einen Raum mit einer ausgewählten Präsentation aus deinem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für deine Räume\n* **Einschränkungen** Beschränke die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalte einen Überblick über deine Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt dir diese Anwendung? Gib der Open-Source-Community etwas zurück und sieh dir unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn du Zeit hast, wäre es großartig, wenn du helfen könntest, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "An BBB senden ",
|
||||||
|
"An error occurred while sending the file to the room." : "Es ist ein Fehler beim Senden der Datei an den Raum aufgetreten",
|
||||||
|
"Loading…" : "Lade …",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte wähle den Raum aus, in dem du die Datei \"{filename}\" verwenden möchtest.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Es werden nur Räume angezeigt, für die du der Administration angehörst.",
|
||||||
|
"Send to" : "Senden an",
|
||||||
|
"Start with" : "Beginne mit",
|
||||||
|
"No rooms available!" : "Keine Räume verfügbar!",
|
||||||
|
"Close" : "Schließen",
|
||||||
"Room not found" : "Raum nicht gefunden",
|
"Room not found" : "Raum nicht gefunden",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
||||||
"Back to %s" : "Zurück zu %s",
|
"Back to %s" : "Zurück zu %s",
|
||||||
|
|
@ -57,6 +66,8 @@
|
||||||
"admin" : "Administration",
|
"admin" : "Administration",
|
||||||
"moderator" : "Moderator",
|
"moderator" : "Moderator",
|
||||||
"user" : "Benutzer",
|
"user" : "Benutzer",
|
||||||
|
"Server error" : "Serverfehler",
|
||||||
|
"unlimited" : "Unbegrenzt",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -113,19 +124,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Bist du sicher, dass du die Aufnahme von \"{startDate}\" löschen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Bist du sicher, dass du die Aufnahme von \"{startDate}\" löschen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"Open room" : "Raum öffnen",
|
"Open room" : "Raum öffnen",
|
||||||
"Start" : "Start",
|
"Start" : "Start",
|
||||||
"Clone room" : "Raum duplizieren",
|
"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.",
|
||||||
|
"Group name" : "Gruppenname",
|
||||||
"Max. rooms" : "Max. Räume",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
"Access options" : "Zugriffsoptionen",
|
||||||
"Max. participants" : "Max. Teilnehmer",
|
"Max. participants" : "Max. Teilnehmer",
|
||||||
"Group …" : "Gruppe …",
|
"Group …" : "Gruppe …",
|
||||||
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Bist du sicher, dass du die Beschränkungen für die Gruppe \"{name}\" entfernen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Bist du sicher, dass du die Beschränkungen für die Gruppe \"{name}\" entfernen möchtest? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
||||||
|
"All users" : "Alle Benutzer",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Einstellungen gespeichert",
|
"Settings saved" : "Einstellungen gespeichert",
|
||||||
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
||||||
"API URL is invalid" : "API-URL ist ungültig",
|
"API URL is invalid" : "API-URL ist ungültig",
|
||||||
|
|
@ -133,15 +147,10 @@
|
||||||
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
||||||
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Beispielkonfiguration für Apache und Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in deinen Raum hochgeladen.",
|
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in deinen Raum hochgeladen.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden. Möglicherweise unterstützt dein BigBlueButton-Server diese Aktion nicht.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in deinen Raum hochgeladen werden. Möglicherweise unterstützt dein BigBlueButton-Server diese Aktion nicht.",
|
||||||
"Send file to BBB" : "Datei an BBB senden",
|
|
||||||
"Send to" : "Senden an",
|
|
||||||
"Start with" : "Beginne mit",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte wähle den Raum aus, in dem du die Datei \"{filename}\" verwenden möchtest.",
|
|
||||||
"No rooms available!" : "Keine Räume verfügbar!",
|
|
||||||
"Send to BBB" : "An BBB senden ",
|
|
||||||
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
|
|
@ -23,6 +23,15 @@ OC.L10N.register(
|
||||||
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstellen Sie mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teilen Sie den Raumlink mit all Ihren Gästen\n* **Moderatorlink teilen** Laden Sie Moderatoren in den Raum ein\n* **Räume teilen** Teilen Sie Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starten Sie einen Raum mit einer ausgewählten Präsentation aus Ihrem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für Ihre Räume\n* **Einschränkungen** Beschränken Sie die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalten Sie einen Überblick über Ihre Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt Ihnen diese Anwendung? Geben Sie der Open-Source-Community etwas zurück und sehen Sie sich unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn Sie Zeit haben, wäre es großartig, wenn Sie helfen könnten, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstellen Sie mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teilen Sie den Raumlink mit all Ihren Gästen\n* **Moderatorlink teilen** Laden Sie Moderatoren in den Raum ein\n* **Räume teilen** Teilen Sie Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starten Sie einen Raum mit einer ausgewählten Präsentation aus Ihrem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für Ihre Räume\n* **Einschränkungen** Beschränken Sie die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalten Sie einen Überblick über Ihre Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt Ihnen diese Anwendung? Geben Sie der Open-Source-Community etwas zurück und sehen Sie sich unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn Sie Zeit haben, wäre es großartig, wenn Sie helfen könnten, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "An BBB senden",
|
||||||
|
"An error occurred while sending the file to the room." : "Es ist ein Fehler beim Senden der Datei an den Raum aufgetreten",
|
||||||
|
"Loading…" : "Lade …",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte den Raum auswählen, in dem Sie die Datei \"{filename}\" verwenden möchten.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Es werden nur Räume angezeigt, für die Sie der Administration angehören.",
|
||||||
|
"Send to" : "Senden an",
|
||||||
|
"Start with" : "Beginne mit",
|
||||||
|
"No rooms available!" : "Keine Räume verfügbar!",
|
||||||
|
"Close" : "Schließen",
|
||||||
"Room not found" : "Raum nicht gefunden",
|
"Room not found" : "Raum nicht gefunden",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
||||||
"Back to %s" : "Zurück zu %s",
|
"Back to %s" : "Zurück zu %s",
|
||||||
|
|
@ -59,6 +68,8 @@ OC.L10N.register(
|
||||||
"admin" : "Administration",
|
"admin" : "Administration",
|
||||||
"moderator" : "Moderator",
|
"moderator" : "Moderator",
|
||||||
"user" : "Benutzer",
|
"user" : "Benutzer",
|
||||||
|
"Server error" : "Serverfehler",
|
||||||
|
"unlimited" : "Unbegrenzt",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -115,19 +126,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Möchten Sie wirklich die Aufnahme vom \"{startDate}\" löschen? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Möchten Sie wirklich die Aufnahme vom \"{startDate}\" löschen? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"Open room" : "Raum öffnen",
|
"Open room" : "Raum öffnen",
|
||||||
"Start" : "Start",
|
"Start" : "Start",
|
||||||
"Clone room" : "Raum duplizieren",
|
"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.",
|
||||||
|
"Group name" : "Gruppenname",
|
||||||
"Max. rooms" : "Max. Räume",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
"Access options" : "Zugriffsoptionen",
|
||||||
"Max. participants" : "Max. Teilnehmer",
|
"Max. participants" : "Max. Teilnehmer",
|
||||||
"Group …" : "Gruppe …",
|
"Group …" : "Gruppe …",
|
||||||
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Möchten Sie die Beschränkungen für die Gruppe \"{name}\" wirklich löschen? Diese Operation kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Möchten Sie die Beschränkungen für die Gruppe \"{name}\" wirklich löschen? Diese Operation kann nicht rückgängig gemacht werden.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
||||||
|
"All users" : "Alle Benutzer",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Einstellungen gespeichert",
|
"Settings saved" : "Einstellungen gespeichert",
|
||||||
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
||||||
"API URL is invalid" : "API-URL ist ungültig",
|
"API URL is invalid" : "API-URL ist ungültig",
|
||||||
|
|
@ -135,15 +149,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
||||||
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Beispielkonfiguration für Apache und Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in Ihren Raum hochgeladen.",
|
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in Ihren Raum hochgeladen.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden. Möglicherweise unterstützt Ihr BigBlueButton-Server diese Aktion nicht.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden. Möglicherweise unterstützt Ihr BigBlueButton-Server diese Aktion nicht.",
|
||||||
"Send file to BBB" : "Datei an BBB senden",
|
|
||||||
"Send to" : "Senden an",
|
|
||||||
"Start with" : "Beginne mit",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte den Raum auswählen, in dem Sie die Datei \"{filename}\" verwenden möchten.",
|
|
||||||
"No rooms available!" : "Keine Räume verfügbar!",
|
|
||||||
"Send to BBB" : "An BBB senden",
|
|
||||||
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,15 @@
|
||||||
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
"BigBlueButton Integration" : "BigBlueButton-Einbindung",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton-Einbindung für 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstellen Sie mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teilen Sie den Raumlink mit all Ihren Gästen\n* **Moderatorlink teilen** Laden Sie Moderatoren in den Raum ein\n* **Räume teilen** Teilen Sie Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starten Sie einen Raum mit einer ausgewählten Präsentation aus Ihrem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für Ihre Räume\n* **Einschränkungen** Beschränken Sie die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalten Sie einen Überblick über Ihre Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt Ihnen diese Anwendung? Geben Sie der Open-Source-Community etwas zurück und sehen Sie sich unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn Sie Zeit haben, wäre es großartig, wenn Sie helfen könnten, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Diese App ermöglicht das Erstellen von Meetings mit einer externen Installation von [BigBlueButton](https://bigbluebutton.org).\n\n* **Raumeinrichtung** Erstellen Sie mehrere Raumkonfigurationen mit Namen, Willkommensnachricht …\n\n* **Gästelink teilen** Teilen Sie den Raumlink mit all Ihren Gästen\n* **Moderatorlink teilen** Laden Sie Moderatoren in den Raum ein\n* **Räume teilen** Teilen Sie Räume mit Mitgliedern, Gruppen oder Kreisen\n* **Benutzerdefinierte Präsentation** Starten Sie einen Raum mit einer ausgewählten Präsentation aus Ihrem Dateibrowser\n* **Aufzeichnungen verwalten** Anzeigen, Teilen und Löschen von Aufzeichnungen für Ihre Räume\n* **Einschränkungen** Beschränken Sie die Raumerstellung auf bestimmte Gruppen\n* **Aktivitäten** Erhalten Sie einen Überblick über Ihre Raumaktivitäten\n\nKurzanleitung und weitere Informationen in unserer [Readme](https://github.com/littleredbutton/cloud_bbb).\nGefällt Ihnen diese Anwendung? Geben Sie der Open-Source-Community etwas zurück und sehen Sie sich unsere\n[Möglichkeiten zum Beitragen](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) an.\n\nMitwirkende sind willkommen! Wenn Sie Zeit haben, wäre es großartig, wenn Sie helfen könnten, diese Anwendung zu verbessern.\n\n*Diese App integriert BigBlueButton und wird nicht von BigBlueButton Inc. unterstützt oder zertifiziert. BigBlueButton und das BigBlueButton-Logo sind Marken von BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "An BBB senden",
|
||||||
|
"An error occurred while sending the file to the room." : "Es ist ein Fehler beim Senden der Datei an den Raum aufgetreten",
|
||||||
|
"Loading…" : "Lade …",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte den Raum auswählen, in dem Sie die Datei \"{filename}\" verwenden möchten.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Es werden nur Räume angezeigt, für die Sie der Administration angehören.",
|
||||||
|
"Send to" : "Senden an",
|
||||||
|
"Start with" : "Beginne mit",
|
||||||
|
"No rooms available!" : "Keine Räume verfügbar!",
|
||||||
|
"Close" : "Schließen",
|
||||||
"Room not found" : "Raum nicht gefunden",
|
"Room not found" : "Raum nicht gefunden",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
"The room could not be found. Maybe it was deleted?" : "Der Raum konnte nicht gefunden werden. Möglicherweise wurde er gelöscht?",
|
||||||
"Back to %s" : "Zurück zu %s",
|
"Back to %s" : "Zurück zu %s",
|
||||||
|
|
@ -57,6 +66,8 @@
|
||||||
"admin" : "Administration",
|
"admin" : "Administration",
|
||||||
"moderator" : "Moderator",
|
"moderator" : "Moderator",
|
||||||
"user" : "Benutzer",
|
"user" : "Benutzer",
|
||||||
|
"Server error" : "Serverfehler",
|
||||||
|
"unlimited" : "Unbegrenzt",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Zugriff",
|
"Access" : "Zugriff",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -113,19 +124,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Möchten Sie wirklich die Aufnahme vom \"{startDate}\" löschen? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Möchten Sie wirklich die Aufnahme vom \"{startDate}\" löschen? Dieser Vorgang kann nicht rückgängig gemacht werden.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
"Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden",
|
||||||
"Open room" : "Raum öffnen",
|
"Open room" : "Raum öffnen",
|
||||||
"Start" : "Start",
|
"Start" : "Start",
|
||||||
"Clone room" : "Raum duplizieren",
|
"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.",
|
||||||
|
"Group name" : "Gruppenname",
|
||||||
"Max. rooms" : "Max. Räume",
|
"Max. rooms" : "Max. Räume",
|
||||||
|
"Access options" : "Zugriffsoptionen",
|
||||||
"Max. participants" : "Max. Teilnehmer",
|
"Max. participants" : "Max. Teilnehmer",
|
||||||
"Group …" : "Gruppe …",
|
"Group …" : "Gruppe …",
|
||||||
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
"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." : "Beschränkungen haben keine Auswirkungen auf bestehende Räume. Minus eins bedeutet, dass der Wert unbegrenzt ist. Bei mehreren Beschränkungen wird für jeden Benutzer die am wenigsten beschränkende Option gewählt.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Möchten Sie die Beschränkungen für die Gruppe \"{name}\" wirklich löschen? Diese Operation kann nicht rückgängig gemacht werden.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Möchten Sie die Beschränkungen für die Gruppe \"{name}\" wirklich löschen? Diese Operation kann nicht rückgängig gemacht werden.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
"Delete restrictions for \"{name}\"?" : "Beschränkungen für \"{Name}\" löschen?",
|
||||||
|
"All users" : "Alle Benutzer",
|
||||||
|
"All" : "Alle",
|
||||||
"Settings saved" : "Einstellungen gespeichert",
|
"Settings saved" : "Einstellungen gespeichert",
|
||||||
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
"Unexpected error occurred" : "Es ist ein unerwarteter Fehler aufgetreten",
|
||||||
"API URL is invalid" : "API-URL ist ungültig",
|
"API URL is invalid" : "API-URL ist ungültig",
|
||||||
|
|
@ -133,15 +147,10 @@
|
||||||
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
"URL has to start with HTTPS" : "Die URL muss mit HTTPS beginnen",
|
||||||
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
"URL has to contain the {token} placeholder" : "Die Adresse (URL) muss den {token} Platzhalter beinhalten",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Die Adresse (URL) muss mit https:// beginnen und muss den {token} Platzhalter beinhalten. Zusätzlich kann der {user} Platzhalter verwendet werden.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Beispielkonfiguration für Apache und Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in Ihren Raum hochgeladen.",
|
"The file \"{filename}\" was uploaded to your room." : "Die Datei \"{filename}\" wurde in Ihren Raum hochgeladen.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden. Möglicherweise unterstützt Ihr BigBlueButton-Server diese Aktion nicht.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Die Datei \"{filename}\" konnte nicht in Ihren Raum hochgeladen werden. Möglicherweise unterstützt Ihr BigBlueButton-Server diese Aktion nicht.",
|
||||||
"Send file to BBB" : "Datei an BBB senden",
|
|
||||||
"Send to" : "Senden an",
|
|
||||||
"Start with" : "Beginne mit",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Bitte den Raum auswählen, in dem Sie die Datei \"{filename}\" verwenden möchten.",
|
|
||||||
"No rooms available!" : "Keine Räume verfügbar!",
|
|
||||||
"Send to BBB" : "An BBB senden",
|
|
||||||
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
"_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._" : ["Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunde. Bitte warten.","Dieser Raum ist noch geschlossen. Neuer Versuch in %n Sekunden. Bitte warten."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
53
l10n/el.js
53
l10n/el.js
|
|
@ -7,20 +7,29 @@ OC.L10N.register(
|
||||||
"You shared the room %s with {shareWith}." : "Διαμοιραστήκατε το δωμάτιο %s με τον {shareWith}.",
|
"You shared the room %s with {shareWith}." : "Διαμοιραστήκατε το δωμάτιο %s με τον {shareWith}.",
|
||||||
"{user} shared the room %s with you." : "Ο/η {user} διαμοιράστηκε το δωμάτιο %s με εσάς.",
|
"{user} shared the room %s with you." : "Ο/η {user} διαμοιράστηκε το δωμάτιο %s με εσάς.",
|
||||||
"You unshared the room %s with {shareWith}." : "Αναιρέσατε τον διαμοιρασμό του δωματίου %s με τον {shareWith}.",
|
"You unshared the room %s with {shareWith}." : "Αναιρέσατε τον διαμοιρασμό του δωματίου %s με τον {shareWith}.",
|
||||||
"{user} unshared the room %s with you." : "Ο {user} αναίρεσε τον διαμοιρασμό του δωματίου %s με εσάς.",
|
"{user} unshared the room %s with you." : "Ο/η {user} αναίρεσε τον διαμοιρασμό του δωματίου %s με εσάς.",
|
||||||
"You started a meeting in the \"%s\" room." : "Ξεκινήσατε μια συνάντηση στο δωμάτιο «%s».",
|
"You started a meeting in the \"%s\" room." : "Ξεκινήσατε μια συνάντηση στο δωμάτιο «%s».",
|
||||||
"{user} started a meeting in the \"%s\" room." : "Ο {user} ξεκίνησε μια συνάντηση στο δωμάτιο «%s».",
|
"{user} started a meeting in the \"%s\" room." : "Ο/η {user} ξεκίνησε μια συνάντηση στο δωμάτιο «%s».",
|
||||||
"The meeting in room \"%s\" has ended." : "Τελείωσε η συνάντηση στο δωμάτιο «%s».",
|
"The meeting in room \"%s\" has ended." : "Τελείωσε η συνάντηση στο δωμάτιο «%s».",
|
||||||
"Recording for room \"%s\" is ready." : "Η καταγραφή για το δωμάτιο «%s» είναι έτοιμη.",
|
"Recording for room \"%s\" is ready." : "Η καταγραφή για το δωμάτιο «%s» είναι έτοιμη.",
|
||||||
"To invite someone to the meeting, send them this link: %s" : "Για να προσκαλέσετε κάποιον στη συνάντηση, στείλτε αυτόν τον σύνδεσμο: %s",
|
"To invite someone to the meeting, send them this link: %s" : "Για να προσκαλέσετε κάποιον στη συνάντηση, στείλτε αυτόν τον σύνδεσμο: %s",
|
||||||
"Public" : "Δημόσιο",
|
"Public" : "Δημόσιο",
|
||||||
"Internal + Password protection for guests" : "Προστασία Εσωτερική + με Κωδικό για επισκέπτες",
|
"Internal + Password protection for guests" : "Προστασία Εσωτερική + με Κωδικό για επισκέπτες",
|
||||||
"Internal + Waiting room for guests" : "Εσωτερική + Δωμάτιο αναμονής για επισκέπτες",
|
"Internal + Waiting room for guests" : "Εσωτερική + Δωμάτιο αναμονής για επισκέπτες",
|
||||||
|
"Waiting room for all users" : "Αίθουσα αναμονής για όλους τους χρήστες",
|
||||||
"Internal" : "Εσωτερικό",
|
"Internal" : "Εσωτερικό",
|
||||||
"Internal restricted" : "Περιορισμός εσωτερικού",
|
"Internal restricted" : "Περιορισμός εσωτερικού",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Η διεύθυνση URL ή το μυστικό API δεν έχει ρυθμιστεί. Επικοινωνήστε με τον διαχειριστή σας.",
|
"API URL or secret not configured. Please contact your administrator." : "Η διεύθυνση URL ή το μυστικό API δεν έχει ρυθμιστεί. Επικοινωνήστε με τον διαχειριστή σας.",
|
||||||
"BigBlueButton Integration" : "Ενσωμάτωση του BigBlueButton",
|
"BigBlueButton Integration" : "Ενσωμάτωση του BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Ενσωμάτωση του BigBlueButton για το Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Ενσωμάτωση του BigBlueButton για το 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Αυτή η εφαρμογή επιτρέπει τη δημιουργία συναντήσεων με εξωτερική εγκατάσταση του [BigBlueButton](https://bigbluebutton.org).\n\n* **Ρύθμιση δωματίου** Δημιουργήστε πολλαπλές διαμορφώσεις δωματίων με όνομα, μήνυμα υποδοχής …\n* **Κοινή χρήση συνδέσμου επισκεπτών** Μοιραστείτε το σύνδεσμο του δωματίου με όλους τους επισκέπτες σας\n* **Κοινή χρήση συνδέσμου συντονιστή** Προσκαλέστε συντονιστές στο δωμάτιο\n* **Κοινή χρήση δωματίων** Μοιραστείτε δωμάτια με μέλη, ομάδες ή κύκλους\n* **Προσαρμοσμένη παρουσίαση** Ξεκινήστε ένα δωμάτιο με επιλεγμένη παρουσίαση από τον περιηγητή αρχείων σας\n* **Διαχείριση εγγραφών** Προβολή, κοινή χρήση και διαγραφή εγγραφών για τα δωμάτιά σας\n* **Περιορισμοί** Περιορίστε τη δημιουργία δωματίων σε συγκεκριμένες ομάδες\n* **Δραστηριότητες** Λάβετε μια επισκόπηση των δραστηριοτήτων των δωματίων σας\n\nΟδηγός γρήγορης εκκίνησης και περαιτέρω πληροφορίες στο [readme](https://github.com/littleredbutton/cloud_bbb).\nΣας αρέσει αυτή η εφαρμογή; Δώστε κάτι πίσω στην κοινότητα ανοιχτού κώδικα και δείτε τους\n[τρόπους συνεισφοράς](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nΟι συνεισφέροντες είναι ευπρόσδεκτοι! Εάν έχετε χρόνο, θα ήταν υπέροχο αν μπορούσατε να βοηθήσετε στη βελτίωση αυτής της εφαρμογής.\n\n*Αυτή η εφαρμογή ενσωματώνει το BigBlueButton και δεν εγκρίνεται ή πιστοποιείται από την BigBlueButton Inc. Το BigBlueButton και το Λογότυπο BigBlueButton είναι εμπορικά σήματα της BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Αποστολή στο BBB",
|
||||||
|
"Loading…" : "Γίνεται φόρτωση…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Παρακαλώ επιλέξτε το δωμάτιο στο οποίο θέλετε να χρησιμοποιήσετε το αρχείο \"{filename}\".",
|
||||||
|
"Send to" : "Αποστολή σε",
|
||||||
|
"Start with" : "Έναρξη με",
|
||||||
|
"No rooms available!" : "Δεν υπάρχουν διαθέσιμα δωμάτια!",
|
||||||
|
"Close" : "Κλείσιμο",
|
||||||
"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" : "Πίσω στο %s",
|
"Back to %s" : "Πίσω στο %s",
|
||||||
|
|
@ -29,7 +38,14 @@ OC.L10N.register(
|
||||||
"API secret" : "Το μυστικό του API",
|
"API secret" : "Το μυστικό του API",
|
||||||
"Save" : "Αποθήκευση",
|
"Save" : "Αποθήκευση",
|
||||||
"Show room manager in app navigation instead of settings page." : "Εμφάνιση διαχειριστή δωματίου στην πλοήγηση εφαρμογών αντί στη σελίδα ρυθμίσεων.",
|
"Show room manager in app navigation instead of settings page." : "Εμφάνιση διαχειριστή δωματίου στην πλοήγηση εφαρμογών αντί στη σελίδα ρυθμίσεων.",
|
||||||
|
"Use Nextcloud theme in BigBlueButton." : "Χρήση του θέματος Nextcloud στο BigBlueButton.",
|
||||||
|
"Default Room Settings" : "Προεπιλεγμένες Ρυθμίσεις Δωματίου",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Παρακάτω μπορείτε να αλλάξετε ορισμένες προεπιλεγμένες τιμές, που χρησιμοποιούνται για τη δημιουργία ενός νέου δωματίου.",
|
||||||
|
"Perform media check before usage" : "Έλεγχος πολυμέσων πριν τη χρήση",
|
||||||
"Community" : "Κοινότητα",
|
"Community" : "Κοινότητα",
|
||||||
|
"Are you enjoying this app? Give something back to the open source community." : "Απολαμβάνετε αυτήν την εφαρμογή; Δώστε κάτι πίσω στην κοινότητα ανοιχτού κώδικα.",
|
||||||
|
"Checkout the contributor guide" : "Δείτε τον οδηγό συνεισφοράς",
|
||||||
|
"URL Shortener" : "Συντόμευση URL",
|
||||||
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Εάν θέλετε να χρησιμοποιήσετε μικρότερα URL, μπορείτε να εισαγάγετε έναν διακομιστή μεσολάβησης παρακάτω.",
|
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Εάν θέλετε να χρησιμοποιήσετε μικρότερα URL, μπορείτε να εισαγάγετε έναν διακομιστή μεσολάβησης παρακάτω.",
|
||||||
"URL shortener" : "Συντόμευση διεύθυνσης URL",
|
"URL shortener" : "Συντόμευση διεύθυνσης URL",
|
||||||
"Restrictions" : "Περιορισμοί",
|
"Restrictions" : "Περιορισμοί",
|
||||||
|
|
@ -39,16 +55,19 @@ OC.L10N.register(
|
||||||
"The name must be at least 3 characters long." : "Το όνομα πρέπει να έχει τουλάχιστον 3 χαρακτήρες.",
|
"The name must be at least 3 characters long." : "Το όνομα πρέπει να έχει τουλάχιστον 3 χαρακτήρες.",
|
||||||
"You have to provide the correct password to join the meeting." : "Πρέπει να καταχωρήσετε τον σωστό κωδικό για να συμμετέχετε στην συνάντηση.",
|
"You have to provide the correct password to join the meeting." : "Πρέπει να καταχωρήσετε τον σωστό κωδικό για να συμμετέχετε στην συνάντηση.",
|
||||||
"Display name" : "Εμφανιζόμενο όνομα",
|
"Display name" : "Εμφανιζόμενο όνομα",
|
||||||
"Password" : "Συνθηατικό",
|
"Password" : "Συνθηματικό",
|
||||||
"Join" : "Συμμετοχή",
|
"Join" : "Συμμετοχή",
|
||||||
"Have an account? Log in." : "Έχετε λογαριασμό; Συνδεθείτε.",
|
"Have an account? Log in." : "Έχετε λογαριασμό; Συνδεθείτε.",
|
||||||
"Hello %s" : "Γεια σας %s",
|
"Hello %s" : "Γεια σας %s",
|
||||||
"Name, group …" : "Όνομα, ομάδα...",
|
"Name, group …" : "Όνομα, ομάδα...",
|
||||||
"Group" : "Ομάδα",
|
"Group" : "Ομάδα",
|
||||||
"Searching" : "Αναζήτηση",
|
"Searching" : "Αναζήτηση",
|
||||||
"No matches" : "Καμιά αντιστοιχία",
|
"No matches" : "Καμία αντιστοιχία",
|
||||||
"admin" : "διαχειριστής",
|
"admin" : "διαχειριστής",
|
||||||
"moderator" : "συντονιστής",
|
"moderator" : "συντονιστής",
|
||||||
|
"user" : "χρήστης",
|
||||||
|
"Server error" : "Σφάλμα διακομιστή",
|
||||||
|
"unlimited" : "απεριόριστο",
|
||||||
"Name" : "Όνομα",
|
"Name" : "Όνομα",
|
||||||
"Access" : "Πρόσβαση",
|
"Access" : "Πρόσβαση",
|
||||||
"Max" : "Μέγιστο",
|
"Max" : "Μέγιστο",
|
||||||
|
|
@ -62,10 +81,15 @@ 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." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.",
|
||||||
|
"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> - Εσωτερικό: Μόνο οι χρήστες Nextcloud μπορούν να συμμετάσχουν.<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." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
||||||
"Only selected users and groups are allowed to access the room." : "Επιτρέπεται η πρόσβαση στο δωμάτιο μόνο σε επιλεγμένους χρήστες και ομάδες",
|
"Only selected users and groups are allowed to access the room." : "Επιτρέπεται η πρόσβαση στο δωμάτιο μόνο σε επιλεγμένους χρήστες και ομάδες",
|
||||||
|
"If disabled, a microphone is needed to join the conference." : "Εάν απενεργοποιηθεί, απαιτείται μικρόφωνο για συμμετοχή στη διάσκεψη.",
|
||||||
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Εάν ενεργοποιηθεί, ο χρήστης δεν χρειάζεται να εκτελέσει δοκιμή ηχού και προεπισκόπηση κάμερας στην πρώτη συμμετοχή (διαθέσιμο από τον διακομιστή BBB 2.3).",
|
||||||
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Εάν ενεργοποιηθεί, η λίστα χρηστών, η περιοχή συνομιλίας και η παρουσίαση είναι κρυμμένες από προεπιλογή.",
|
||||||
|
"If enabled, all users will join the meeting muted." : "Εάν ενεργοποιηθεί, όλοι οι χρήστες θα συμμετέχουν στη σύσκεψη σε σίγαση.",
|
||||||
"Edit \"{room}\"" : "Επεξεργασία «{room}»",
|
"Edit \"{room}\"" : "Επεξεργασία «{room}»",
|
||||||
"Room URL" : "URL αίθουσας",
|
"Room URL" : "URL αίθουσας",
|
||||||
"Welcome" : "Καλώς ήλθατε",
|
"Welcome" : "Καλώς ήλθατε",
|
||||||
|
|
@ -76,6 +100,10 @@ OC.L10N.register(
|
||||||
"Miscellaneous" : "Διάφορα",
|
"Miscellaneous" : "Διάφορα",
|
||||||
"Recording" : "Καταγραφή",
|
"Recording" : "Καταγραφή",
|
||||||
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
||||||
|
"Listen only option" : "Επιλογή ακρόασης μόνο",
|
||||||
|
"Skip media check before usage" : "Παράλειψη ελέγχου πολυμέσων πριν τη χρήση",
|
||||||
|
"Clean layout" : "Καθαρή διάταξη",
|
||||||
|
"Join meeting muted" : "Συμμετοχή στη σύσκεψη σε σίγαση",
|
||||||
"Room name" : "Όνομα δωματίου",
|
"Room name" : "Όνομα δωματίου",
|
||||||
"Create" : "Δημιουργία",
|
"Create" : "Δημιουργία",
|
||||||
"Published" : "Δημοσιεύτηκε",
|
"Published" : "Δημοσιεύτηκε",
|
||||||
|
|
@ -84,6 +112,7 @@ OC.L10N.register(
|
||||||
"Save as file" : "Αποθήκευση ως αρχείο",
|
"Save as file" : "Αποθήκευση ως αρχείο",
|
||||||
"_%n participant_::_%n participants_" : ["%n συμμετέχων","%n συμμετέχοντες"],
|
"_%n participant_::_%n participants_" : ["%n συμμετέχων","%n συμμετέχοντες"],
|
||||||
"Delete" : "Διαγραφή",
|
"Delete" : "Διαγραφή",
|
||||||
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Είστε σίγουρος/η ότι θέλετε να διαγράψετε το \"{name}\"; Αυτή η λειτουργία δεν μπορεί να αναιρεθεί.",
|
||||||
"Delete \"{name}\"?" : "Διαγραφή του «{name}»;",
|
"Delete \"{name}\"?" : "Διαγραφή του «{name}»;",
|
||||||
"Select target folder" : "Επιλογή φακέλου προορισμού",
|
"Select target folder" : "Επιλογή φακέλου προορισμού",
|
||||||
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση του δωματίου αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση του δωματίου αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
||||||
|
|
@ -92,17 +121,25 @@ OC.L10N.register(
|
||||||
"Error" : "Σφάλμα",
|
"Error" : "Σφάλμα",
|
||||||
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση της παρουσίασης αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση της παρουσίασης αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
||||||
"URL to presentation could not be stored." : "Η διεύθυνση της παρουσίασης δεν μπορεί να αποθηκευθεί.",
|
"URL to presentation could not be stored." : "Η διεύθυνση της παρουσίασης δεν μπορεί να αποθηκευθεί.",
|
||||||
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Είστε σίγουρος/η ότι θέλετε να διαγράψετε την καταγραφή από \"{startDate}\"; Αυτή η λειτουργία δεν μπορεί να αναιρεθεί.",
|
||||||
"Delete?" : "Διαγραφή;",
|
"Delete?" : "Διαγραφή;",
|
||||||
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
||||||
"Server error" : "Σφάλμα διακομιστή",
|
"Could not modify publishing state" : "Δεν ήταν δυνατή η τροποποίηση της κατάστασης δημοσίευσης",
|
||||||
|
"Open room" : "Άνοιγμα δωματίου",
|
||||||
"Start" : "Έναρξη",
|
"Start" : "Έναρξη",
|
||||||
|
"Clone room" : "Κλωνοποίηση δωματίου",
|
||||||
"Loading" : "Γίνεται φόρτωση",
|
"Loading" : "Γίνεται φόρτωση",
|
||||||
"You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.",
|
"You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.",
|
||||||
|
"Group name" : "Όνομα ομάδας",
|
||||||
"Max. rooms" : "Μέγιστα δωμάτια",
|
"Max. rooms" : "Μέγιστα δωμάτια",
|
||||||
|
"Access options" : "Επιλογές πρόσβασης",
|
||||||
"Max. participants" : "Μέγιστος αριθμός συμμετεχόντων",
|
"Max. participants" : "Μέγιστος αριθμός συμμετεχόντων",
|
||||||
"Group …" : "Ομάδα...",
|
"Group …" : "Ομάδα...",
|
||||||
"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." : "Οι περιορισμοί δεν επηρεάζουν τα υπάρχοντα δωμάτια. Μείον ένα σημαίνει ότι η τιμή είναι απεριόριστη. Η λιγότερο περιοριστική ρύθμιση επιλέγεται για κάθε χρήστη εάν ισχύουν πολλοί περιορισμοί.",
|
"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." : "Οι περιορισμοί δεν επηρεάζουν τα υπάρχοντα δωμάτια. Μείον ένα σημαίνει ότι η τιμή είναι απεριόριστη. Η λιγότερο περιοριστική ρύθμιση επιλέγεται για κάθε χρήστη εάν ισχύουν πολλοί περιορισμοί.",
|
||||||
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Είστε σίγουρος/η ότι θέλετε να διαγράψετε τους περιορισμούς για την ομάδα \"{name}\"; Αυτή η λειτουργία δεν μπορεί να αναιρεθεί.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Διαγραφή περιορισμών για τον «{name}»;",
|
"Delete restrictions for \"{name}\"?" : "Διαγραφή περιορισμών για τον «{name}»;",
|
||||||
|
"All users" : "Όλοι οι χρήστες",
|
||||||
|
"All" : "Όλα",
|
||||||
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
|
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
|
||||||
"Unexpected error occurred" : "Παρουσιάστηκε μη αναμενόμενο σφάλμα",
|
"Unexpected error occurred" : "Παρουσιάστηκε μη αναμενόμενο σφάλμα",
|
||||||
"API URL is invalid" : "Η διεύθυνση URL του API δεν είναι σωστή",
|
"API URL is invalid" : "Η διεύθυνση URL του API δεν είναι σωστή",
|
||||||
|
|
@ -110,8 +147,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "Το URL πρέπει να ξεκινάει με HTTPS",
|
"URL has to start with HTTPS" : "Το URL πρέπει να ξεκινάει με HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "Η διεύθυνση URL πρέπει να περιέχει το σύμβολο κράτησης θέσης {token}",
|
"URL has to contain the {token} placeholder" : "Η διεύθυνση URL πρέπει να περιέχει το σύμβολο κράτησης θέσης {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Το URL πρέπει να ξεκινά με https:// και να περιέχει {token}. Επιπλέον, το σύμβολο κράτησης θέσης {user} μπορεί να χρησιμοποιηθεί.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Το URL πρέπει να ξεκινά με https:// και να περιέχει {token}. Επιπλέον, το σύμβολο κράτησης θέσης {user} μπορεί να χρησιμοποιηθεί.",
|
||||||
"Send to" : "Αποστολή σε",
|
"Example configuration for Apache and Nginx" : "Παράδειγμα διαμόρφωσης για Apache και Nginx",
|
||||||
"No rooms available!" : "Δεν υπάρχουν διαθέσιμα δωμάτια!",
|
"The file \"{filename}\" was uploaded to your room." : "Το αρχείο \"{filename}\" μεταφορτώθηκε στο δωμάτιό σας.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "Το αρχείο \"{filename}\" δεν μπορούσε να μεταφορτωθεί στο δωμάτιό σας.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Το αρχείο \"{filename}\" δεν μπορούσε να μεταφορτωθεί στο δωμάτιό σας. Ίσως ο διακομιστής BigBlueButton σας δεν υποστηρίζει αυτήν την ενέργεια.",
|
||||||
"_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 δευτερόλεπτο. Παρακαλούμε περιμένετε.","Αυτό το δωμάτιο δεν είναι ακόμη ανοιχτό. Θα το δοκιμάσουμε ξανά σε %n δευτερόλεπτα. Παρακαλούμε περιμένετε."]
|
"_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 δευτερόλεπτο. Παρακαλούμε περιμένετε.","Αυτό το δωμάτιο δεν είναι ακόμη ανοιχτό. Θα το δοκιμάσουμε ξανά σε %n δευτερόλεπτα. Παρακαλούμε περιμένετε."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
53
l10n/el.json
53
l10n/el.json
|
|
@ -5,20 +5,29 @@
|
||||||
"You shared the room %s with {shareWith}." : "Διαμοιραστήκατε το δωμάτιο %s με τον {shareWith}.",
|
"You shared the room %s with {shareWith}." : "Διαμοιραστήκατε το δωμάτιο %s με τον {shareWith}.",
|
||||||
"{user} shared the room %s with you." : "Ο/η {user} διαμοιράστηκε το δωμάτιο %s με εσάς.",
|
"{user} shared the room %s with you." : "Ο/η {user} διαμοιράστηκε το δωμάτιο %s με εσάς.",
|
||||||
"You unshared the room %s with {shareWith}." : "Αναιρέσατε τον διαμοιρασμό του δωματίου %s με τον {shareWith}.",
|
"You unshared the room %s with {shareWith}." : "Αναιρέσατε τον διαμοιρασμό του δωματίου %s με τον {shareWith}.",
|
||||||
"{user} unshared the room %s with you." : "Ο {user} αναίρεσε τον διαμοιρασμό του δωματίου %s με εσάς.",
|
"{user} unshared the room %s with you." : "Ο/η {user} αναίρεσε τον διαμοιρασμό του δωματίου %s με εσάς.",
|
||||||
"You started a meeting in the \"%s\" room." : "Ξεκινήσατε μια συνάντηση στο δωμάτιο «%s».",
|
"You started a meeting in the \"%s\" room." : "Ξεκινήσατε μια συνάντηση στο δωμάτιο «%s».",
|
||||||
"{user} started a meeting in the \"%s\" room." : "Ο {user} ξεκίνησε μια συνάντηση στο δωμάτιο «%s».",
|
"{user} started a meeting in the \"%s\" room." : "Ο/η {user} ξεκίνησε μια συνάντηση στο δωμάτιο «%s».",
|
||||||
"The meeting in room \"%s\" has ended." : "Τελείωσε η συνάντηση στο δωμάτιο «%s».",
|
"The meeting in room \"%s\" has ended." : "Τελείωσε η συνάντηση στο δωμάτιο «%s».",
|
||||||
"Recording for room \"%s\" is ready." : "Η καταγραφή για το δωμάτιο «%s» είναι έτοιμη.",
|
"Recording for room \"%s\" is ready." : "Η καταγραφή για το δωμάτιο «%s» είναι έτοιμη.",
|
||||||
"To invite someone to the meeting, send them this link: %s" : "Για να προσκαλέσετε κάποιον στη συνάντηση, στείλτε αυτόν τον σύνδεσμο: %s",
|
"To invite someone to the meeting, send them this link: %s" : "Για να προσκαλέσετε κάποιον στη συνάντηση, στείλτε αυτόν τον σύνδεσμο: %s",
|
||||||
"Public" : "Δημόσιο",
|
"Public" : "Δημόσιο",
|
||||||
"Internal + Password protection for guests" : "Προστασία Εσωτερική + με Κωδικό για επισκέπτες",
|
"Internal + Password protection for guests" : "Προστασία Εσωτερική + με Κωδικό για επισκέπτες",
|
||||||
"Internal + Waiting room for guests" : "Εσωτερική + Δωμάτιο αναμονής για επισκέπτες",
|
"Internal + Waiting room for guests" : "Εσωτερική + Δωμάτιο αναμονής για επισκέπτες",
|
||||||
|
"Waiting room for all users" : "Αίθουσα αναμονής για όλους τους χρήστες",
|
||||||
"Internal" : "Εσωτερικό",
|
"Internal" : "Εσωτερικό",
|
||||||
"Internal restricted" : "Περιορισμός εσωτερικού",
|
"Internal restricted" : "Περιορισμός εσωτερικού",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Η διεύθυνση URL ή το μυστικό API δεν έχει ρυθμιστεί. Επικοινωνήστε με τον διαχειριστή σας.",
|
"API URL or secret not configured. Please contact your administrator." : "Η διεύθυνση URL ή το μυστικό API δεν έχει ρυθμιστεί. Επικοινωνήστε με τον διαχειριστή σας.",
|
||||||
"BigBlueButton Integration" : "Ενσωμάτωση του BigBlueButton",
|
"BigBlueButton Integration" : "Ενσωμάτωση του BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Ενσωμάτωση του BigBlueButton για το Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Ενσωμάτωση του BigBlueButton για το 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Αυτή η εφαρμογή επιτρέπει τη δημιουργία συναντήσεων με εξωτερική εγκατάσταση του [BigBlueButton](https://bigbluebutton.org).\n\n* **Ρύθμιση δωματίου** Δημιουργήστε πολλαπλές διαμορφώσεις δωματίων με όνομα, μήνυμα υποδοχής …\n* **Κοινή χρήση συνδέσμου επισκεπτών** Μοιραστείτε το σύνδεσμο του δωματίου με όλους τους επισκέπτες σας\n* **Κοινή χρήση συνδέσμου συντονιστή** Προσκαλέστε συντονιστές στο δωμάτιο\n* **Κοινή χρήση δωματίων** Μοιραστείτε δωμάτια με μέλη, ομάδες ή κύκλους\n* **Προσαρμοσμένη παρουσίαση** Ξεκινήστε ένα δωμάτιο με επιλεγμένη παρουσίαση από τον περιηγητή αρχείων σας\n* **Διαχείριση εγγραφών** Προβολή, κοινή χρήση και διαγραφή εγγραφών για τα δωμάτιά σας\n* **Περιορισμοί** Περιορίστε τη δημιουργία δωματίων σε συγκεκριμένες ομάδες\n* **Δραστηριότητες** Λάβετε μια επισκόπηση των δραστηριοτήτων των δωματίων σας\n\nΟδηγός γρήγορης εκκίνησης και περαιτέρω πληροφορίες στο [readme](https://github.com/littleredbutton/cloud_bbb).\nΣας αρέσει αυτή η εφαρμογή; Δώστε κάτι πίσω στην κοινότητα ανοιχτού κώδικα και δείτε τους\n[τρόπους συνεισφοράς](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nΟι συνεισφέροντες είναι ευπρόσδεκτοι! Εάν έχετε χρόνο, θα ήταν υπέροχο αν μπορούσατε να βοηθήσετε στη βελτίωση αυτής της εφαρμογής.\n\n*Αυτή η εφαρμογή ενσωματώνει το BigBlueButton και δεν εγκρίνεται ή πιστοποιείται από την BigBlueButton Inc. Το BigBlueButton και το Λογότυπο BigBlueButton είναι εμπορικά σήματα της BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Αποστολή στο BBB",
|
||||||
|
"Loading…" : "Γίνεται φόρτωση…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Παρακαλώ επιλέξτε το δωμάτιο στο οποίο θέλετε να χρησιμοποιήσετε το αρχείο \"{filename}\".",
|
||||||
|
"Send to" : "Αποστολή σε",
|
||||||
|
"Start with" : "Έναρξη με",
|
||||||
|
"No rooms available!" : "Δεν υπάρχουν διαθέσιμα δωμάτια!",
|
||||||
|
"Close" : "Κλείσιμο",
|
||||||
"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" : "Πίσω στο %s",
|
"Back to %s" : "Πίσω στο %s",
|
||||||
|
|
@ -27,7 +36,14 @@
|
||||||
"API secret" : "Το μυστικό του API",
|
"API secret" : "Το μυστικό του API",
|
||||||
"Save" : "Αποθήκευση",
|
"Save" : "Αποθήκευση",
|
||||||
"Show room manager in app navigation instead of settings page." : "Εμφάνιση διαχειριστή δωματίου στην πλοήγηση εφαρμογών αντί στη σελίδα ρυθμίσεων.",
|
"Show room manager in app navigation instead of settings page." : "Εμφάνιση διαχειριστή δωματίου στην πλοήγηση εφαρμογών αντί στη σελίδα ρυθμίσεων.",
|
||||||
|
"Use Nextcloud theme in BigBlueButton." : "Χρήση του θέματος Nextcloud στο BigBlueButton.",
|
||||||
|
"Default Room Settings" : "Προεπιλεγμένες Ρυθμίσεις Δωματίου",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Παρακάτω μπορείτε να αλλάξετε ορισμένες προεπιλεγμένες τιμές, που χρησιμοποιούνται για τη δημιουργία ενός νέου δωματίου.",
|
||||||
|
"Perform media check before usage" : "Έλεγχος πολυμέσων πριν τη χρήση",
|
||||||
"Community" : "Κοινότητα",
|
"Community" : "Κοινότητα",
|
||||||
|
"Are you enjoying this app? Give something back to the open source community." : "Απολαμβάνετε αυτήν την εφαρμογή; Δώστε κάτι πίσω στην κοινότητα ανοιχτού κώδικα.",
|
||||||
|
"Checkout the contributor guide" : "Δείτε τον οδηγό συνεισφοράς",
|
||||||
|
"URL Shortener" : "Συντόμευση URL",
|
||||||
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Εάν θέλετε να χρησιμοποιήσετε μικρότερα URL, μπορείτε να εισαγάγετε έναν διακομιστή μεσολάβησης παρακάτω.",
|
"If you like to use shorter urls, you can enter a forwarding proxy below." : "Εάν θέλετε να χρησιμοποιήσετε μικρότερα URL, μπορείτε να εισαγάγετε έναν διακομιστή μεσολάβησης παρακάτω.",
|
||||||
"URL shortener" : "Συντόμευση διεύθυνσης URL",
|
"URL shortener" : "Συντόμευση διεύθυνσης URL",
|
||||||
"Restrictions" : "Περιορισμοί",
|
"Restrictions" : "Περιορισμοί",
|
||||||
|
|
@ -37,16 +53,19 @@
|
||||||
"The name must be at least 3 characters long." : "Το όνομα πρέπει να έχει τουλάχιστον 3 χαρακτήρες.",
|
"The name must be at least 3 characters long." : "Το όνομα πρέπει να έχει τουλάχιστον 3 χαρακτήρες.",
|
||||||
"You have to provide the correct password to join the meeting." : "Πρέπει να καταχωρήσετε τον σωστό κωδικό για να συμμετέχετε στην συνάντηση.",
|
"You have to provide the correct password to join the meeting." : "Πρέπει να καταχωρήσετε τον σωστό κωδικό για να συμμετέχετε στην συνάντηση.",
|
||||||
"Display name" : "Εμφανιζόμενο όνομα",
|
"Display name" : "Εμφανιζόμενο όνομα",
|
||||||
"Password" : "Συνθηατικό",
|
"Password" : "Συνθηματικό",
|
||||||
"Join" : "Συμμετοχή",
|
"Join" : "Συμμετοχή",
|
||||||
"Have an account? Log in." : "Έχετε λογαριασμό; Συνδεθείτε.",
|
"Have an account? Log in." : "Έχετε λογαριασμό; Συνδεθείτε.",
|
||||||
"Hello %s" : "Γεια σας %s",
|
"Hello %s" : "Γεια σας %s",
|
||||||
"Name, group …" : "Όνομα, ομάδα...",
|
"Name, group …" : "Όνομα, ομάδα...",
|
||||||
"Group" : "Ομάδα",
|
"Group" : "Ομάδα",
|
||||||
"Searching" : "Αναζήτηση",
|
"Searching" : "Αναζήτηση",
|
||||||
"No matches" : "Καμιά αντιστοιχία",
|
"No matches" : "Καμία αντιστοιχία",
|
||||||
"admin" : "διαχειριστής",
|
"admin" : "διαχειριστής",
|
||||||
"moderator" : "συντονιστής",
|
"moderator" : "συντονιστής",
|
||||||
|
"user" : "χρήστης",
|
||||||
|
"Server error" : "Σφάλμα διακομιστή",
|
||||||
|
"unlimited" : "απεριόριστο",
|
||||||
"Name" : "Όνομα",
|
"Name" : "Όνομα",
|
||||||
"Access" : "Πρόσβαση",
|
"Access" : "Πρόσβαση",
|
||||||
"Max" : "Μέγιστο",
|
"Max" : "Μέγιστο",
|
||||||
|
|
@ -60,10 +79,15 @@
|
||||||
"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." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.",
|
||||||
|
"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> - Εσωτερικό: Μόνο οι χρήστες Nextcloud μπορούν να συμμετάσχουν.<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." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
"If enabled, a moderator URL is generated which allows access with moderator permission." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.",
|
||||||
"Only selected users and groups are allowed to access the room." : "Επιτρέπεται η πρόσβαση στο δωμάτιο μόνο σε επιλεγμένους χρήστες και ομάδες",
|
"Only selected users and groups are allowed to access the room." : "Επιτρέπεται η πρόσβαση στο δωμάτιο μόνο σε επιλεγμένους χρήστες και ομάδες",
|
||||||
|
"If disabled, a microphone is needed to join the conference." : "Εάν απενεργοποιηθεί, απαιτείται μικρόφωνο για συμμετοχή στη διάσκεψη.",
|
||||||
|
"If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Εάν ενεργοποιηθεί, ο χρήστης δεν χρειάζεται να εκτελέσει δοκιμή ηχού και προεπισκόπηση κάμερας στην πρώτη συμμετοχή (διαθέσιμο από τον διακομιστή BBB 2.3).",
|
||||||
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Εάν ενεργοποιηθεί, η λίστα χρηστών, η περιοχή συνομιλίας και η παρουσίαση είναι κρυμμένες από προεπιλογή.",
|
||||||
|
"If enabled, all users will join the meeting muted." : "Εάν ενεργοποιηθεί, όλοι οι χρήστες θα συμμετέχουν στη σύσκεψη σε σίγαση.",
|
||||||
"Edit \"{room}\"" : "Επεξεργασία «{room}»",
|
"Edit \"{room}\"" : "Επεξεργασία «{room}»",
|
||||||
"Room URL" : "URL αίθουσας",
|
"Room URL" : "URL αίθουσας",
|
||||||
"Welcome" : "Καλώς ήλθατε",
|
"Welcome" : "Καλώς ήλθατε",
|
||||||
|
|
@ -74,6 +98,10 @@
|
||||||
"Miscellaneous" : "Διάφορα",
|
"Miscellaneous" : "Διάφορα",
|
||||||
"Recording" : "Καταγραφή",
|
"Recording" : "Καταγραφή",
|
||||||
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
"Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου",
|
||||||
|
"Listen only option" : "Επιλογή ακρόασης μόνο",
|
||||||
|
"Skip media check before usage" : "Παράλειψη ελέγχου πολυμέσων πριν τη χρήση",
|
||||||
|
"Clean layout" : "Καθαρή διάταξη",
|
||||||
|
"Join meeting muted" : "Συμμετοχή στη σύσκεψη σε σίγαση",
|
||||||
"Room name" : "Όνομα δωματίου",
|
"Room name" : "Όνομα δωματίου",
|
||||||
"Create" : "Δημιουργία",
|
"Create" : "Δημιουργία",
|
||||||
"Published" : "Δημοσιεύτηκε",
|
"Published" : "Δημοσιεύτηκε",
|
||||||
|
|
@ -82,6 +110,7 @@
|
||||||
"Save as file" : "Αποθήκευση ως αρχείο",
|
"Save as file" : "Αποθήκευση ως αρχείο",
|
||||||
"_%n participant_::_%n participants_" : ["%n συμμετέχων","%n συμμετέχοντες"],
|
"_%n participant_::_%n participants_" : ["%n συμμετέχων","%n συμμετέχοντες"],
|
||||||
"Delete" : "Διαγραφή",
|
"Delete" : "Διαγραφή",
|
||||||
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Είστε σίγουρος/η ότι θέλετε να διαγράψετε το \"{name}\"; Αυτή η λειτουργία δεν μπορεί να αναιρεθεί.",
|
||||||
"Delete \"{name}\"?" : "Διαγραφή του «{name}»;",
|
"Delete \"{name}\"?" : "Διαγραφή του «{name}»;",
|
||||||
"Select target folder" : "Επιλογή φακέλου προορισμού",
|
"Select target folder" : "Επιλογή φακέλου προορισμού",
|
||||||
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση του δωματίου αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση του δωματίου αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
||||||
|
|
@ -90,17 +119,25 @@
|
||||||
"Error" : "Σφάλμα",
|
"Error" : "Σφάλμα",
|
||||||
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση της παρουσίασης αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Η διεύθυνση της παρουσίασης αποθηκεύτηκε στο «{path}» ως «{filename}».",
|
||||||
"URL to presentation could not be stored." : "Η διεύθυνση της παρουσίασης δεν μπορεί να αποθηκευθεί.",
|
"URL to presentation could not be stored." : "Η διεύθυνση της παρουσίασης δεν μπορεί να αποθηκευθεί.",
|
||||||
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Είστε σίγουρος/η ότι θέλετε να διαγράψετε την καταγραφή από \"{startDate}\"; Αυτή η λειτουργία δεν μπορεί να αναιρεθεί.",
|
||||||
"Delete?" : "Διαγραφή;",
|
"Delete?" : "Διαγραφή;",
|
||||||
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
"Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή",
|
||||||
"Server error" : "Σφάλμα διακομιστή",
|
"Could not modify publishing state" : "Δεν ήταν δυνατή η τροποποίηση της κατάστασης δημοσίευσης",
|
||||||
|
"Open room" : "Άνοιγμα δωματίου",
|
||||||
"Start" : "Έναρξη",
|
"Start" : "Έναρξη",
|
||||||
|
"Clone room" : "Κλωνοποίηση δωματίου",
|
||||||
"Loading" : "Γίνεται φόρτωση",
|
"Loading" : "Γίνεται φόρτωση",
|
||||||
"You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.",
|
"You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.",
|
||||||
|
"Group name" : "Όνομα ομάδας",
|
||||||
"Max. rooms" : "Μέγιστα δωμάτια",
|
"Max. rooms" : "Μέγιστα δωμάτια",
|
||||||
|
"Access options" : "Επιλογές πρόσβασης",
|
||||||
"Max. participants" : "Μέγιστος αριθμός συμμετεχόντων",
|
"Max. participants" : "Μέγιστος αριθμός συμμετεχόντων",
|
||||||
"Group …" : "Ομάδα...",
|
"Group …" : "Ομάδα...",
|
||||||
"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." : "Οι περιορισμοί δεν επηρεάζουν τα υπάρχοντα δωμάτια. Μείον ένα σημαίνει ότι η τιμή είναι απεριόριστη. Η λιγότερο περιοριστική ρύθμιση επιλέγεται για κάθε χρήστη εάν ισχύουν πολλοί περιορισμοί.",
|
"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." : "Οι περιορισμοί δεν επηρεάζουν τα υπάρχοντα δωμάτια. Μείον ένα σημαίνει ότι η τιμή είναι απεριόριστη. Η λιγότερο περιοριστική ρύθμιση επιλέγεται για κάθε χρήστη εάν ισχύουν πολλοί περιορισμοί.",
|
||||||
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Είστε σίγουρος/η ότι θέλετε να διαγράψετε τους περιορισμούς για την ομάδα \"{name}\"; Αυτή η λειτουργία δεν μπορεί να αναιρεθεί.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Διαγραφή περιορισμών για τον «{name}»;",
|
"Delete restrictions for \"{name}\"?" : "Διαγραφή περιορισμών για τον «{name}»;",
|
||||||
|
"All users" : "Όλοι οι χρήστες",
|
||||||
|
"All" : "Όλα",
|
||||||
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
|
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
|
||||||
"Unexpected error occurred" : "Παρουσιάστηκε μη αναμενόμενο σφάλμα",
|
"Unexpected error occurred" : "Παρουσιάστηκε μη αναμενόμενο σφάλμα",
|
||||||
"API URL is invalid" : "Η διεύθυνση URL του API δεν είναι σωστή",
|
"API URL is invalid" : "Η διεύθυνση URL του API δεν είναι σωστή",
|
||||||
|
|
@ -108,8 +145,10 @@
|
||||||
"URL has to start with HTTPS" : "Το URL πρέπει να ξεκινάει με HTTPS",
|
"URL has to start with HTTPS" : "Το URL πρέπει να ξεκινάει με HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "Η διεύθυνση URL πρέπει να περιέχει το σύμβολο κράτησης θέσης {token}",
|
"URL has to contain the {token} placeholder" : "Η διεύθυνση URL πρέπει να περιέχει το σύμβολο κράτησης θέσης {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Το URL πρέπει να ξεκινά με https:// και να περιέχει {token}. Επιπλέον, το σύμβολο κράτησης θέσης {user} μπορεί να χρησιμοποιηθεί.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Το URL πρέπει να ξεκινά με https:// και να περιέχει {token}. Επιπλέον, το σύμβολο κράτησης θέσης {user} μπορεί να χρησιμοποιηθεί.",
|
||||||
"Send to" : "Αποστολή σε",
|
"Example configuration for Apache and Nginx" : "Παράδειγμα διαμόρφωσης για Apache και Nginx",
|
||||||
"No rooms available!" : "Δεν υπάρχουν διαθέσιμα δωμάτια!",
|
"The file \"{filename}\" was uploaded to your room." : "Το αρχείο \"{filename}\" μεταφορτώθηκε στο δωμάτιό σας.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "Το αρχείο \"{filename}\" δεν μπορούσε να μεταφορτωθεί στο δωμάτιό σας.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Το αρχείο \"{filename}\" δεν μπορούσε να μεταφορτωθεί στο δωμάτιό σας. Ίσως ο διακομιστής BigBlueButton σας δεν υποστηρίζει αυτήν την ενέργεια.",
|
||||||
"_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 δευτερόλεπτο. Παρακαλούμε περιμένετε.","Αυτό το δωμάτιο δεν είναι ακόμη ανοιχτό. Θα το δοκιμάσουμε ξανά σε %n δευτερόλεπτα. Παρακαλούμε περιμένετε."]
|
"_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 δευτερόλεπτο. Παρακαλούμε περιμένετε.","Αυτό το δωμάτιο δεν είναι ακόμη ανοιχτό. Θα το δοκιμάσουμε ξανά σε %n δευτερόλεπτα. Παρακαλούμε περιμένετε."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
|
|
@ -23,6 +23,15 @@ OC.L10N.register(
|
||||||
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*",
|
||||||
|
"Send to BBB" : "Send to BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "An error occurred while sending the file to the room.",
|
||||||
|
"Loading…" : "Loading…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Only rooms for which you are one of the administrators will be displayed.",
|
||||||
|
"Send to" : "Send to",
|
||||||
|
"Start with" : "Start with",
|
||||||
|
"No rooms available!" : "No rooms available!",
|
||||||
|
"Close" : "Close",
|
||||||
"Room not found" : "Room not found",
|
"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?",
|
"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",
|
||||||
|
|
@ -59,6 +68,8 @@ OC.L10N.register(
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderator",
|
"moderator" : "moderator",
|
||||||
"user" : "user",
|
"user" : "user",
|
||||||
|
"Server error" : "Server error",
|
||||||
|
"unlimited" : "unlimited",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Access",
|
"Access" : "Access",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -115,19 +126,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "Server error",
|
|
||||||
"Could not modify publishing state" : "Could not modify publishing state",
|
"Could not modify publishing state" : "Could not modify publishing state",
|
||||||
"Open room" : "Open room",
|
"Open room" : "Open room",
|
||||||
"Start" : "Start",
|
"Start" : "Start",
|
||||||
"Clone room" : "Clone room",
|
"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.",
|
||||||
|
"Group name" : "Group name",
|
||||||
"Max. rooms" : "Max. rooms",
|
"Max. rooms" : "Max. rooms",
|
||||||
|
"Access options" : "Access options",
|
||||||
"Max. participants" : "Max. participants",
|
"Max. participants" : "Max. participants",
|
||||||
"Group …" : "Group …",
|
"Group …" : "Group …",
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Delete restrictions for \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "Delete restrictions for \"{name}\"?",
|
||||||
|
"All users" : "All users",
|
||||||
|
"All" : "All",
|
||||||
"Settings saved" : "Settings saved",
|
"Settings saved" : "Settings saved",
|
||||||
"Unexpected error occurred" : "Unexpected error occurred",
|
"Unexpected error occurred" : "Unexpected error occurred",
|
||||||
"API URL is invalid" : "API URL is invalid",
|
"API URL is invalid" : "API URL is invalid",
|
||||||
|
|
@ -135,15 +149,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "URL has to start with HTTPS",
|
"URL has to start with HTTPS" : "URL has to start with HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "URL has to contain the {token} placeholder",
|
"URL has to contain the {token} placeholder" : "URL has to contain the {token} placeholder",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Example configuration for Apache and Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
||||||
"Send file to BBB" : "Send file to BBB",
|
|
||||||
"Send to" : "Send to",
|
|
||||||
"Start with" : "Start with",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
|
||||||
"No rooms available!" : "No rooms available!",
|
|
||||||
"Send to BBB" : "Send to 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._" : ["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."]
|
"_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._" : ["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."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,15 @@
|
||||||
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*",
|
||||||
|
"Send to BBB" : "Send to BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "An error occurred while sending the file to the room.",
|
||||||
|
"Loading…" : "Loading…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Only rooms for which you are one of the administrators will be displayed.",
|
||||||
|
"Send to" : "Send to",
|
||||||
|
"Start with" : "Start with",
|
||||||
|
"No rooms available!" : "No rooms available!",
|
||||||
|
"Close" : "Close",
|
||||||
"Room not found" : "Room not found",
|
"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?",
|
"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",
|
||||||
|
|
@ -57,6 +66,8 @@
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderator",
|
"moderator" : "moderator",
|
||||||
"user" : "user",
|
"user" : "user",
|
||||||
|
"Server error" : "Server error",
|
||||||
|
"unlimited" : "unlimited",
|
||||||
"Name" : "Name",
|
"Name" : "Name",
|
||||||
"Access" : "Access",
|
"Access" : "Access",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -113,19 +124,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "Server error",
|
|
||||||
"Could not modify publishing state" : "Could not modify publishing state",
|
"Could not modify publishing state" : "Could not modify publishing state",
|
||||||
"Open room" : "Open room",
|
"Open room" : "Open room",
|
||||||
"Start" : "Start",
|
"Start" : "Start",
|
||||||
"Clone room" : "Clone room",
|
"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.",
|
||||||
|
"Group name" : "Group name",
|
||||||
"Max. rooms" : "Max. rooms",
|
"Max. rooms" : "Max. rooms",
|
||||||
|
"Access options" : "Access options",
|
||||||
"Max. participants" : "Max. participants",
|
"Max. participants" : "Max. participants",
|
||||||
"Group …" : "Group …",
|
"Group …" : "Group …",
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Delete restrictions for \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "Delete restrictions for \"{name}\"?",
|
||||||
|
"All users" : "All users",
|
||||||
|
"All" : "All",
|
||||||
"Settings saved" : "Settings saved",
|
"Settings saved" : "Settings saved",
|
||||||
"Unexpected error occurred" : "Unexpected error occurred",
|
"Unexpected error occurred" : "Unexpected error occurred",
|
||||||
"API URL is invalid" : "API URL is invalid",
|
"API URL is invalid" : "API URL is invalid",
|
||||||
|
|
@ -133,15 +147,10 @@
|
||||||
"URL has to start with HTTPS" : "URL has to start with HTTPS",
|
"URL has to start with HTTPS" : "URL has to start with HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "URL has to contain the {token} placeholder",
|
"URL has to contain the {token} placeholder" : "URL has to contain the {token} placeholder",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Example configuration for Apache and Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
||||||
"Send file to BBB" : "Send file to BBB",
|
|
||||||
"Send to" : "Send to",
|
|
||||||
"Start with" : "Start with",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
|
||||||
"No rooms available!" : "No rooms available!",
|
|
||||||
"Send to BBB" : "Send to 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._" : ["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."]
|
"_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._" : ["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."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
|
|
@ -2,6 +2,8 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Publika",
|
"Public" : "Publika",
|
||||||
|
"Loading…" : "Ŝargado...",
|
||||||
|
"Close" : "Malfermi",
|
||||||
"Back to %s" : "Antaŭen al %s",
|
"Back to %s" : "Antaŭen al %s",
|
||||||
"Save" : "Konservi",
|
"Save" : "Konservi",
|
||||||
"Display name" : "Vidiga nomo",
|
"Display name" : "Vidiga nomo",
|
||||||
|
|
@ -9,6 +11,7 @@ OC.L10N.register(
|
||||||
"Join" : "Aliĝi",
|
"Join" : "Aliĝi",
|
||||||
"Hello %s" : "Saluton %s",
|
"Hello %s" : "Saluton %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"Server error" : "Eraro pri servilo",
|
||||||
"Name" : "Nomo",
|
"Name" : "Nomo",
|
||||||
"Access" : "Aliro",
|
"Access" : "Aliro",
|
||||||
"Edit" : "Modifi",
|
"Edit" : "Modifi",
|
||||||
|
|
@ -17,9 +20,10 @@ OC.L10N.register(
|
||||||
"Copy to clipboard" : "Kopii tondejen",
|
"Copy to clipboard" : "Kopii tondejen",
|
||||||
"Delete" : "Forigi",
|
"Delete" : "Forigi",
|
||||||
"Error" : "Eraro",
|
"Error" : "Eraro",
|
||||||
"Server error" : "Eraro pri servilo",
|
|
||||||
"Start" : "Komenco",
|
"Start" : "Komenco",
|
||||||
"Loading" : "Ŝargado",
|
"Loading" : "Ŝargado",
|
||||||
|
"Group name" : "Gruponomo",
|
||||||
|
"All" : "Ĉiuj",
|
||||||
"Settings saved" : "Agordoj konservitaj"
|
"Settings saved" : "Agordoj konservitaj"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Publika",
|
"Public" : "Publika",
|
||||||
|
"Loading…" : "Ŝargado...",
|
||||||
|
"Close" : "Malfermi",
|
||||||
"Back to %s" : "Antaŭen al %s",
|
"Back to %s" : "Antaŭen al %s",
|
||||||
"Save" : "Konservi",
|
"Save" : "Konservi",
|
||||||
"Display name" : "Vidiga nomo",
|
"Display name" : "Vidiga nomo",
|
||||||
|
|
@ -7,6 +9,7 @@
|
||||||
"Join" : "Aliĝi",
|
"Join" : "Aliĝi",
|
||||||
"Hello %s" : "Saluton %s",
|
"Hello %s" : "Saluton %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"Server error" : "Eraro pri servilo",
|
||||||
"Name" : "Nomo",
|
"Name" : "Nomo",
|
||||||
"Access" : "Aliro",
|
"Access" : "Aliro",
|
||||||
"Edit" : "Modifi",
|
"Edit" : "Modifi",
|
||||||
|
|
@ -15,9 +18,10 @@
|
||||||
"Copy to clipboard" : "Kopii tondejen",
|
"Copy to clipboard" : "Kopii tondejen",
|
||||||
"Delete" : "Forigi",
|
"Delete" : "Forigi",
|
||||||
"Error" : "Eraro",
|
"Error" : "Eraro",
|
||||||
"Server error" : "Eraro pri servilo",
|
|
||||||
"Start" : "Komenco",
|
"Start" : "Komenco",
|
||||||
"Loading" : "Ŝargado",
|
"Loading" : "Ŝargado",
|
||||||
|
"Group name" : "Gruponomo",
|
||||||
|
"All" : "Ĉiuj",
|
||||||
"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
|
|
@ -23,6 +23,13 @@ OC.L10N.register(
|
||||||
"BigBlueButton Integration" : "Integración BigBlueButton",
|
"BigBlueButton Integration" : "Integración BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integración BigBlueButton para Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Integración BigBlueButton para 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 app permite crear reuniones con una instalación externa de [BigBlueButton](https://bigbluebutton.org).\n* **Configuración de salas** Crea múltiples configuraciones con nombre, mensaje de bienvenida…\n* **Comparte enlaces de invitaciones** Comparte el enlace de la sala con otras personas invitadas\n* **Comparte enlace de Moderación** Comparte el enlace de moderación de la sala.\n* **Comparte salas** Comparte salas con personas usuarias, grupos o círculos\n* **Presentación personalizada** inicia una sala con una presentación seleccionada desde tu navegador de archivos\n* **Maneja grabaciones** Ve, comparte y borra grabaciones de tus salas\n* **Restricciones** Restringe la creación de salas a ciertos grupos.\n* **Actividades** Obtén una vista general de las actividades de tus salas\n\nVea la guía rápida e información adicional en nuestro [readme](https://github.com/sualko/cloud_bbb).\n¿Le gusta esta aplicación? Devuelva algo a la comunidad de fuente abierta y revise nuestro\n[formas de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\n¡Buscamos desarrolladores!\" Si tienes tiempo, sería genial que pudieras ayudarnos a mejorar esta aplicación.\n\n*Esta app integra BigBlueButton y no está apoyada ni certificada por BigBlueButton Inc. BigBlueButton y el logo de BigBlueButton son marcas comerciales 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 app permite crear reuniones con una instalación externa de [BigBlueButton](https://bigbluebutton.org).\n* **Configuración de salas** Crea múltiples configuraciones con nombre, mensaje de bienvenida…\n* **Comparte enlaces de invitaciones** Comparte el enlace de la sala con otras personas invitadas\n* **Comparte enlace de Moderación** Comparte el enlace de moderación de la sala.\n* **Comparte salas** Comparte salas con personas usuarias, grupos o círculos\n* **Presentación personalizada** inicia una sala con una presentación seleccionada desde tu navegador de archivos\n* **Maneja grabaciones** Ve, comparte y borra grabaciones de tus salas\n* **Restricciones** Restringe la creación de salas a ciertos grupos.\n* **Actividades** Obtén una vista general de las actividades de tus salas\n\nVea la guía rápida e información adicional en nuestro [readme](https://github.com/sualko/cloud_bbb).\n¿Le gusta esta aplicación? Devuelva algo a la comunidad de fuente abierta y revise nuestro\n[formas de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\n¡Buscamos desarrolladores!\" Si tienes tiempo, sería genial que pudieras ayudarnos a mejorar esta aplicación.\n\n*Esta app integra BigBlueButton y no está apoyada ni certificada por BigBlueButton Inc. BigBlueButton y el logo de BigBlueButton son marcas comerciales de BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Enviar a BBB",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".",
|
||||||
|
"Send to" : "Enviar a",
|
||||||
|
"Start with" : "Iniciar con",
|
||||||
|
"No rooms available!" : "¡No hay salas disponibles!",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Room not found" : "Sala no encontrada",
|
"Room not found" : "Sala no encontrada",
|
||||||
"The room could not be found. Maybe it was deleted?" : "No se ha podido encontrar la sala. ¿Quizás ha sido eliminada?",
|
"The room could not be found. Maybe it was deleted?" : "No se ha podido encontrar la sala. ¿Quizás ha sido eliminada?",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
|
|
@ -59,6 +66,8 @@ OC.L10N.register(
|
||||||
"admin" : "administrador",
|
"admin" : "administrador",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
"user" : "usuaria",
|
"user" : "usuaria",
|
||||||
|
"Server error" : "Error en el servidor",
|
||||||
|
"unlimited" : "ilimitado",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx",
|
"Max" : "Máx",
|
||||||
|
|
@ -72,6 +81,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.",
|
||||||
|
"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,9 +92,9 @@ OC.L10N.register(
|
||||||
"If enabled, all users will join the meeting muted." : "Si está habilitado, todos los usuarios se unirán a la reunión en silencio.",
|
"If enabled, all users will join the meeting muted." : "Si está habilitado, todos los usuarios se unirán a la reunión en silencio.",
|
||||||
"Edit \"{room}\"" : "Editar \"{sala}\"",
|
"Edit \"{room}\"" : "Editar \"{sala}\"",
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido/a",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
"Sharing" : "Compartir",
|
"Sharing" : "Compartiendo",
|
||||||
"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",
|
||||||
|
|
@ -114,19 +124,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Estás seguro que quieres eliminar la grabación del \"{startDate}\"? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Estás seguro que quieres eliminar la grabación del \"{startDate}\"? Esta operación no se puede deshacer.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "No se pudo modificar el estado de la publicación",
|
"Could not modify publishing state" : "No se pudo modificar el estado de la publicación",
|
||||||
"Open room" : "Abrir la sala",
|
"Open room" : "Abrir la sala",
|
||||||
"Start" : "Iniciar",
|
"Start" : "Iniciar",
|
||||||
"Clone room" : "Clonar la sala",
|
"Clone room" : "Clonar la sala",
|
||||||
"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.",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
"Max. rooms" : "Máximo de salas",
|
"Max. rooms" : "Máximo de salas",
|
||||||
|
"Access options" : "Opciones de acceso",
|
||||||
"Max. participants" : "Máximo de participantes",
|
"Max. participants" : "Máximo de participantes",
|
||||||
"Group …" : "Grupo …",
|
"Group …" : "Grupo …",
|
||||||
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se escoge la opción menos restrictiva para cada usuario si se aplican varias restricciones.",
|
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se escoge la opción menos restrictiva para cada usuario si se aplican varias restricciones.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que quieres eliminar las restricciones para el grupo «{name}»? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que quieres eliminar las restricciones para el grupo «{name}»? Esta operación no se puede deshacer.",
|
||||||
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para «{name}»?",
|
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para «{name}»?",
|
||||||
|
"All users" : "Todos los usuarios",
|
||||||
|
"All" : "Todo",
|
||||||
"Settings saved" : "Ajustes guardados",
|
"Settings saved" : "Ajustes guardados",
|
||||||
"Unexpected error occurred" : "Ha ocurrido un error inesperado",
|
"Unexpected error occurred" : "Ha ocurrido un error inesperado",
|
||||||
"API URL is invalid" : "La URL de la API es inválida",
|
"API URL is invalid" : "La URL de la API es inválida",
|
||||||
|
|
@ -134,15 +147,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "La URL tiene que comenzar con https",
|
"URL has to start with HTTPS" : "La URL tiene que comenzar con https",
|
||||||
"URL has to contain the {token} placeholder" : "La URL debe contener el marcador de posición {token}",
|
"URL has to contain the {token} placeholder" : "La URL debe contener el marcador de posición {token}",
|
||||||
"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 marcador de posición {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 marcador de posición {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Configuración de ejemplo para Apache y Nginx",
|
||||||
"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 podido 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 archivo a BBB",
|
|
||||||
"Send to" : "Enviar a",
|
|
||||||
"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}\".",
|
|
||||||
"No rooms available!" : "¡No hay salas disponibles!",
|
|
||||||
"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."]
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
26
l10n/es.json
26
l10n/es.json
|
|
@ -21,6 +21,13 @@
|
||||||
"BigBlueButton Integration" : "Integración BigBlueButton",
|
"BigBlueButton Integration" : "Integración BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integración BigBlueButton para Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Integración BigBlueButton para 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 app permite crear reuniones con una instalación externa de [BigBlueButton](https://bigbluebutton.org).\n* **Configuración de salas** Crea múltiples configuraciones con nombre, mensaje de bienvenida…\n* **Comparte enlaces de invitaciones** Comparte el enlace de la sala con otras personas invitadas\n* **Comparte enlace de Moderación** Comparte el enlace de moderación de la sala.\n* **Comparte salas** Comparte salas con personas usuarias, grupos o círculos\n* **Presentación personalizada** inicia una sala con una presentación seleccionada desde tu navegador de archivos\n* **Maneja grabaciones** Ve, comparte y borra grabaciones de tus salas\n* **Restricciones** Restringe la creación de salas a ciertos grupos.\n* **Actividades** Obtén una vista general de las actividades de tus salas\n\nVea la guía rápida e información adicional en nuestro [readme](https://github.com/sualko/cloud_bbb).\n¿Le gusta esta aplicación? Devuelva algo a la comunidad de fuente abierta y revise nuestro\n[formas de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\n¡Buscamos desarrolladores!\" Si tienes tiempo, sería genial que pudieras ayudarnos a mejorar esta aplicación.\n\n*Esta app integra BigBlueButton y no está apoyada ni certificada por BigBlueButton Inc. BigBlueButton y el logo de BigBlueButton son marcas comerciales 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 app permite crear reuniones con una instalación externa de [BigBlueButton](https://bigbluebutton.org).\n* **Configuración de salas** Crea múltiples configuraciones con nombre, mensaje de bienvenida…\n* **Comparte enlaces de invitaciones** Comparte el enlace de la sala con otras personas invitadas\n* **Comparte enlace de Moderación** Comparte el enlace de moderación de la sala.\n* **Comparte salas** Comparte salas con personas usuarias, grupos o círculos\n* **Presentación personalizada** inicia una sala con una presentación seleccionada desde tu navegador de archivos\n* **Maneja grabaciones** Ve, comparte y borra grabaciones de tus salas\n* **Restricciones** Restringe la creación de salas a ciertos grupos.\n* **Actividades** Obtén una vista general de las actividades de tus salas\n\nVea la guía rápida e información adicional en nuestro [readme](https://github.com/sualko/cloud_bbb).\n¿Le gusta esta aplicación? Devuelva algo a la comunidad de fuente abierta y revise nuestro\n[formas de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\n¡Buscamos desarrolladores!\" Si tienes tiempo, sería genial que pudieras ayudarnos a mejorar esta aplicación.\n\n*Esta app integra BigBlueButton y no está apoyada ni certificada por BigBlueButton Inc. BigBlueButton y el logo de BigBlueButton son marcas comerciales de BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Enviar a BBB",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".",
|
||||||
|
"Send to" : "Enviar a",
|
||||||
|
"Start with" : "Iniciar con",
|
||||||
|
"No rooms available!" : "¡No hay salas disponibles!",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Room not found" : "Sala no encontrada",
|
"Room not found" : "Sala no encontrada",
|
||||||
"The room could not be found. Maybe it was deleted?" : "No se ha podido encontrar la sala. ¿Quizás ha sido eliminada?",
|
"The room could not be found. Maybe it was deleted?" : "No se ha podido encontrar la sala. ¿Quizás ha sido eliminada?",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
|
|
@ -57,6 +64,8 @@
|
||||||
"admin" : "administrador",
|
"admin" : "administrador",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
"user" : "usuaria",
|
"user" : "usuaria",
|
||||||
|
"Server error" : "Error en el servidor",
|
||||||
|
"unlimited" : "ilimitado",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx",
|
"Max" : "Máx",
|
||||||
|
|
@ -70,6 +79,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.",
|
||||||
|
"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,9 +90,9 @@
|
||||||
"If enabled, all users will join the meeting muted." : "Si está habilitado, todos los usuarios se unirán a la reunión en silencio.",
|
"If enabled, all users will join the meeting muted." : "Si está habilitado, todos los usuarios se unirán a la reunión en silencio.",
|
||||||
"Edit \"{room}\"" : "Editar \"{sala}\"",
|
"Edit \"{room}\"" : "Editar \"{sala}\"",
|
||||||
"Room URL" : "URL de la sala",
|
"Room URL" : "URL de la sala",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido/a",
|
||||||
"Participant limit" : "Límite de participantes",
|
"Participant limit" : "Límite de participantes",
|
||||||
"Sharing" : "Compartir",
|
"Sharing" : "Compartiendo",
|
||||||
"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",
|
||||||
|
|
@ -112,19 +122,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Estás seguro que quieres eliminar la grabación del \"{startDate}\"? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Estás seguro que quieres eliminar la grabación del \"{startDate}\"? Esta operación no se puede deshacer.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "No se pudo modificar el estado de la publicación",
|
"Could not modify publishing state" : "No se pudo modificar el estado de la publicación",
|
||||||
"Open room" : "Abrir la sala",
|
"Open room" : "Abrir la sala",
|
||||||
"Start" : "Iniciar",
|
"Start" : "Iniciar",
|
||||||
"Clone room" : "Clonar la sala",
|
"Clone room" : "Clonar la sala",
|
||||||
"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.",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
"Max. rooms" : "Máximo de salas",
|
"Max. rooms" : "Máximo de salas",
|
||||||
|
"Access options" : "Opciones de acceso",
|
||||||
"Max. participants" : "Máximo de participantes",
|
"Max. participants" : "Máximo de participantes",
|
||||||
"Group …" : "Grupo …",
|
"Group …" : "Grupo …",
|
||||||
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se escoge la opción menos restrictiva para cada usuario si se aplican varias restricciones.",
|
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se escoge la opción menos restrictiva para cada usuario si se aplican varias restricciones.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que quieres eliminar las restricciones para el grupo «{name}»? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que quieres eliminar las restricciones para el grupo «{name}»? Esta operación no se puede deshacer.",
|
||||||
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para «{name}»?",
|
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para «{name}»?",
|
||||||
|
"All users" : "Todos los usuarios",
|
||||||
|
"All" : "Todo",
|
||||||
"Settings saved" : "Ajustes guardados",
|
"Settings saved" : "Ajustes guardados",
|
||||||
"Unexpected error occurred" : "Ha ocurrido un error inesperado",
|
"Unexpected error occurred" : "Ha ocurrido un error inesperado",
|
||||||
"API URL is invalid" : "La URL de la API es inválida",
|
"API URL is invalid" : "La URL de la API es inválida",
|
||||||
|
|
@ -132,15 +145,10 @@
|
||||||
"URL has to start with HTTPS" : "La URL tiene que comenzar con https",
|
"URL has to start with HTTPS" : "La URL tiene que comenzar con https",
|
||||||
"URL has to contain the {token} placeholder" : "La URL debe contener el marcador de posición {token}",
|
"URL has to contain the {token} placeholder" : "La URL debe contener el marcador de posición {token}",
|
||||||
"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 marcador de posición {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 marcador de posición {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Configuración de ejemplo para Apache y Nginx",
|
||||||
"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 podido 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 archivo a BBB",
|
|
||||||
"Send to" : "Enviar a",
|
|
||||||
"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}\".",
|
|
||||||
"No rooms available!" : "¡No hay salas disponibles!",
|
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,14 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,9 +19,9 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,9 +17,9 @@
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,6 +2,8 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Community" : "Comunidad",
|
"Community" : "Comunidad",
|
||||||
|
|
@ -9,17 +11,19 @@ OC.L10N.register(
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
"Sharing" : "Compartiendo",
|
"Sharing" : "Compartir",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Published" : "Publicado",
|
"Published" : "Publicado",
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Configuraciones guardadas"
|
"Settings saved" : "Configuraciones guardadas"
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Community" : "Comunidad",
|
"Community" : "Comunidad",
|
||||||
|
|
@ -7,17 +9,19 @@
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Welcome" : "Bienvenido",
|
"Welcome" : "Bienvenido",
|
||||||
"Sharing" : "Compartiendo",
|
"Sharing" : "Compartir",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Published" : "Publicado",
|
"Published" : "Publicado",
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,14 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +19,9 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +17,9 @@
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,16 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
|
"Community" : "Comunidad",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +21,8 @@ OC.L10N.register(
|
||||||
"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",
|
"Group name" : "Nombre del grupo",
|
||||||
"Loading" : "Cargando",
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,15 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
|
"Community" : "Comunidad",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +19,8 @@
|
||||||
"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",
|
"Group name" : "Nombre del grupo",
|
||||||
"Loading" : "Cargando",
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,14 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +19,9 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +17,9 @@
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,15 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +20,8 @@ OC.L10N.register(
|
||||||
"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",
|
"Group name" : "Nombre del grupo",
|
||||||
"Loading" : "Cargando",
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,14 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +18,8 @@
|
||||||
"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",
|
"Group name" : "Nombre del grupo",
|
||||||
"Loading" : "Cargando",
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -22,6 +22,13 @@ OC.L10N.register(
|
||||||
"API URL or secret not configured. Please contact your administrator." : "URL de API o clave no configuradas. Por favor, contacta a tu administrador.",
|
"API URL or secret not configured. Please contact your administrator." : "URL de API o clave no configuradas. Por favor, contacta a tu administrador.",
|
||||||
"BigBlueButton Integration" : "Integración con BigBlueButton",
|
"BigBlueButton Integration" : "Integración con BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton para Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton para Nextcloud",
|
||||||
|
"Send to BBB" : "Enviar a BBB",
|
||||||
|
"Loading…" : "Cargando",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Selecciona la sala en la que deseas usar el archivo \"{filename}\".",
|
||||||
|
"Send to" : "Enviar a",
|
||||||
|
"Start with" : "Iniciar con",
|
||||||
|
"No rooms available!" : "¡No hay salas disponibles!",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Room not found" : "No se encontró la sala",
|
"Room not found" : "No se encontró la sala",
|
||||||
"The room could not be found. Maybe it was deleted?" : "No se pudo encontrar la sala. ¿Quizás fue eliminada?",
|
"The room could not be found. Maybe it was deleted?" : "No se pudo encontrar la sala. ¿Quizás fue eliminada?",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
|
|
@ -57,6 +64,8 @@ OC.L10N.register(
|
||||||
"No matches" : "Sin coincidencias",
|
"No matches" : "Sin coincidencias",
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
|
"unlimited" : "ilimitado",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx.",
|
"Max" : "Máx.",
|
||||||
|
|
@ -112,15 +121,17 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar la grabación de \"{startDate}\"? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar la grabación de \"{startDate}\"? Esta operación no se puede deshacer.",
|
||||||
"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",
|
|
||||||
"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.",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
"Max. rooms" : "Máx. salas",
|
"Max. rooms" : "Máx. salas",
|
||||||
"Max. participants" : "Máx. participantes",
|
"Max. participants" : "Máx. participantes",
|
||||||
"Group …" : "Grupo...",
|
"Group …" : "Grupo...",
|
||||||
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se elige la opción menos restrictiva para cada usuario si se aplican múltiples restricciones.",
|
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se elige la opción menos restrictiva para cada usuario si se aplican múltiples restricciones.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar las restricciones para el grupo \"{name}\"? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar las restricciones para el grupo \"{name}\"? Esta operación no se puede deshacer.",
|
||||||
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para \"{name}\"?",
|
||||||
|
"All users" : "Todos los usuarios",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones ",
|
"Settings saved" : "Se han guardado las configuraciones ",
|
||||||
"Unexpected error occurred" : "Ocurrió un error inesperado",
|
"Unexpected error occurred" : "Ocurrió un error inesperado",
|
||||||
"API URL is invalid" : "La URL de la API no es válida",
|
"API URL is invalid" : "La URL de la API no es válida",
|
||||||
|
|
@ -131,12 +142,6 @@ OC.L10N.register(
|
||||||
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se cargó en tu sala.",
|
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se cargó en tu sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "No se pudo cargar el archivo \"{filename}\" en tu sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "No se pudo cargar el archivo \"{filename}\" en tu sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "No se pudo cargar el archivo \"{filename}\" en tu sala. Es posible que tu servidor BigBlueButton no admita esta acción.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "No se pudo cargar el archivo \"{filename}\" en tu sala. Es posible que tu servidor BigBlueButton no admita esta acción.",
|
||||||
"Send file to BBB" : "Enviar archivo a BBB",
|
|
||||||
"Send to" : "Enviar a",
|
|
||||||
"Start with" : "Iniciar con",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Selecciona la sala en la que deseas usar el archivo \"{filename}\".",
|
|
||||||
"No rooms available!" : "¡No hay salas disponibles!",
|
|
||||||
"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 aún no está abierta. Lo intentaremos de nuevo en %n segundo. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo en %n segundos. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo 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 aún no está abierta. Lo intentaremos de nuevo en %n segundo. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo en %n segundos. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo en %n segundos. Por favor, espera."]
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,13 @@
|
||||||
"API URL or secret not configured. Please contact your administrator." : "URL de API o clave no configuradas. Por favor, contacta a tu administrador.",
|
"API URL or secret not configured. Please contact your administrator." : "URL de API o clave no configuradas. Por favor, contacta a tu administrador.",
|
||||||
"BigBlueButton Integration" : "Integración con BigBlueButton",
|
"BigBlueButton Integration" : "Integración con BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton para Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton para Nextcloud",
|
||||||
|
"Send to BBB" : "Enviar a BBB",
|
||||||
|
"Loading…" : "Cargando",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Selecciona la sala en la que deseas usar el archivo \"{filename}\".",
|
||||||
|
"Send to" : "Enviar a",
|
||||||
|
"Start with" : "Iniciar con",
|
||||||
|
"No rooms available!" : "¡No hay salas disponibles!",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Room not found" : "No se encontró la sala",
|
"Room not found" : "No se encontró la sala",
|
||||||
"The room could not be found. Maybe it was deleted?" : "No se pudo encontrar la sala. ¿Quizás fue eliminada?",
|
"The room could not be found. Maybe it was deleted?" : "No se pudo encontrar la sala. ¿Quizás fue eliminada?",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
|
|
@ -55,6 +62,8 @@
|
||||||
"No matches" : "Sin coincidencias",
|
"No matches" : "Sin coincidencias",
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
|
"unlimited" : "ilimitado",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Max" : "Máx.",
|
"Max" : "Máx.",
|
||||||
|
|
@ -110,15 +119,17 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar la grabación de \"{startDate}\"? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar la grabación de \"{startDate}\"? Esta operación no se puede deshacer.",
|
||||||
"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",
|
|
||||||
"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.",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
"Max. rooms" : "Máx. salas",
|
"Max. rooms" : "Máx. salas",
|
||||||
"Max. participants" : "Máx. participantes",
|
"Max. participants" : "Máx. participantes",
|
||||||
"Group …" : "Grupo...",
|
"Group …" : "Grupo...",
|
||||||
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se elige la opción menos restrictiva para cada usuario si se aplican múltiples restricciones.",
|
"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." : "Las restricciones no afectan a las salas existentes. Menos uno significa que el valor es ilimitado. Se elige la opción menos restrictiva para cada usuario si se aplican múltiples restricciones.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar las restricciones para el grupo \"{name}\"? Esta operación no se puede deshacer.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "¿Estás seguro de que deseas eliminar las restricciones para el grupo \"{name}\"? Esta operación no se puede deshacer.",
|
||||||
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para \"{name}\"?",
|
"Delete restrictions for \"{name}\"?" : "¿Eliminar restricciones para \"{name}\"?",
|
||||||
|
"All users" : "Todos los usuarios",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones ",
|
"Settings saved" : "Se han guardado las configuraciones ",
|
||||||
"Unexpected error occurred" : "Ocurrió un error inesperado",
|
"Unexpected error occurred" : "Ocurrió un error inesperado",
|
||||||
"API URL is invalid" : "La URL de la API no es válida",
|
"API URL is invalid" : "La URL de la API no es válida",
|
||||||
|
|
@ -129,12 +140,6 @@
|
||||||
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se cargó en tu sala.",
|
"The file \"{filename}\" was uploaded to your room." : "El archivo \"{filename}\" se cargó en tu sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "No se pudo cargar el archivo \"{filename}\" en tu sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "No se pudo cargar el archivo \"{filename}\" en tu sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "No se pudo cargar el archivo \"{filename}\" en tu sala. Es posible que tu servidor BigBlueButton no admita esta acción.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "No se pudo cargar el archivo \"{filename}\" en tu sala. Es posible que tu servidor BigBlueButton no admita esta acción.",
|
||||||
"Send file to BBB" : "Enviar archivo a BBB",
|
|
||||||
"Send to" : "Enviar a",
|
|
||||||
"Start with" : "Iniciar con",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Selecciona la sala en la que deseas usar el archivo \"{filename}\".",
|
|
||||||
"No rooms available!" : "¡No hay salas disponibles!",
|
|
||||||
"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 aún no está abierta. Lo intentaremos de nuevo en %n segundo. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo en %n segundos. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo 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 aún no está abierta. Lo intentaremos de nuevo en %n segundo. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo en %n segundos. Por favor, espera.","Esta sala aún no está abierta. Lo intentaremos de nuevo 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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,14 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,9 +19,10 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,9 +17,10 @@
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,15 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +20,9 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,14 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +18,9 @@
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,6 +2,8 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Community" : "Comunidad",
|
"Community" : "Comunidad",
|
||||||
|
|
@ -10,6 +12,7 @@ OC.L10N.register(
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -22,9 +25,11 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All users" : "Todos los usuarios",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Back to %s" : "Volver a %s",
|
"Back to %s" : "Volver a %s",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Community" : "Comunidad",
|
"Community" : "Comunidad",
|
||||||
|
|
@ -8,6 +10,7 @@
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -20,9 +23,11 @@
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All users" : "Todos los usuarios",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,15 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +20,9 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,14 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +18,9 @@
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,14 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,9 +19,10 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,9 +17,10 @@
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,15 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
|
"Community" : "Comunidad",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,9 +20,9 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,14 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
|
"Community" : "Comunidad",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,9 +18,9 @@
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,15 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,9 +20,10 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,14 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,9 +18,10 @@
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,15 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +20,9 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,14 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +18,9 @@
|
||||||
"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",
|
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,15 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,9 +20,10 @@ OC.L10N.register(
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,14 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
|
"Close" : "Cerrar",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,9 +18,10 @@
|
||||||
"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",
|
|
||||||
"Start" : "Inicio",
|
"Start" : "Inicio",
|
||||||
"Loading" : "Cargando",
|
"Loading" : "Cargando",
|
||||||
|
"Group name" : "Nombre del grupo",
|
||||||
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -2,12 +2,14 @@ OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -17,8 +19,8 @@ OC.L10N.register(
|
||||||
"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",
|
"Group name" : "Nombre del grupo",
|
||||||
"Loading" : "Cargando",
|
"All" : "Todos",
|
||||||
"Settings saved" : "Se han guardado las configuraciones "
|
"Settings saved" : "Se han guardado las configuraciones "
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Public" : "Público",
|
"Public" : "Público",
|
||||||
|
"Loading…" : "Cargando...",
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Display name" : "Nombre a desplegar",
|
"Display name" : "Nombre a desplegar",
|
||||||
"Password" : "Contraseña",
|
"Password" : "Contraseña",
|
||||||
"Hello %s" : "Hola %s",
|
"Hello %s" : "Hola %s",
|
||||||
"Group" : "Grupo",
|
"Group" : "Grupo",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
|
"Server error" : "Se presentó un error en el servidor",
|
||||||
"Name" : "Nombre",
|
"Name" : "Nombre",
|
||||||
"Access" : "Acceso",
|
"Access" : "Acceso",
|
||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
|
|
@ -15,8 +17,8 @@
|
||||||
"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",
|
"Group name" : "Nombre del grupo",
|
||||||
"Loading" : "Cargando",
|
"All" : "Todos",
|
||||||
"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;"
|
||||||
}
|
}
|
||||||
|
|
@ -16,14 +16,31 @@ OC.L10N.register(
|
||||||
"Public" : "Avalik",
|
"Public" : "Avalik",
|
||||||
"Waiting room for all users" : "Ooteruum kõikidele kasutajatele",
|
"Waiting room for all users" : "Ooteruum kõikidele kasutajatele",
|
||||||
"Internal" : "Sisene",
|
"Internal" : "Sisene",
|
||||||
|
"API URL or secret not configured. Please contact your administrator." : "API võrguaadress või saladus on seadistamata. Palun võta ühendust oma serveri haldajaga.",
|
||||||
|
"BigBlueButton Integration" : "BigBlueButtoni lõiming",
|
||||||
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton lõiming Nextcloudi jaoks",
|
||||||
|
"Send to BBB" : "Saada BBB-sse",
|
||||||
|
"An error occurred while sending the file to the room." : "Faili saatmisel jututuppa tekkis viga.",
|
||||||
|
"Loading…" : "Laadin...",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Palun vali jututuba, kus satahaksid „{filename}“ faili kasutada.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Näed vaid jututube, kus oled peakasutajate seas.",
|
||||||
|
"Send to" : "Saada...",
|
||||||
|
"Start with" : "Alustamisel kasuta:",
|
||||||
|
"No rooms available!" : "Ühtegi jututuba pole saadaval!",
|
||||||
|
"Close" : "Sulge",
|
||||||
"Room not found" : "Jututuba ei leidu",
|
"Room not found" : "Jututuba ei leidu",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Jututuba ei leidu. Kas ta võib olla kustutatud?",
|
"The room could not be found. Maybe it was deleted?" : "Jututuba ei leidu. Kas ta võib olla kustutatud?",
|
||||||
"Back to %s" : "Tagasi siia: %s",
|
"Back to %s" : "Tagasi siia: %s",
|
||||||
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Oma API võrguaadressi ja saladuse saad oma BigBlueButtoni serverist, kui käivitad käsurealt „sudo bbb-conf --secret“.",
|
||||||
"API URL" : "API võrguaadress",
|
"API URL" : "API võrguaadress",
|
||||||
"API secret" : "API saladus",
|
"API secret" : "API saladus",
|
||||||
"Save" : "Salvesta",
|
"Save" : "Salvesta",
|
||||||
|
"Default Room Settings" : "Jututoa vaikimisi seadistused",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Alljärgnevaga saad muuta mõningaid väärtusi, mis on kasutusel uue jututoa loomisel.",
|
||||||
|
"Perform media check before usage" : "Enne kasutamist kontrolli meediumi",
|
||||||
"Community" : "Kogukond",
|
"Community" : "Kogukond",
|
||||||
"Restrictions" : "Piirangud",
|
"Restrictions" : "Piirangud",
|
||||||
|
"You will be forwarded to the room in the next few seconds." : "Järgmise paari sekundi jooksul suunatakse sind jututuppa.",
|
||||||
"Let's go!" : "Alustame!",
|
"Let's go!" : "Alustame!",
|
||||||
"Please enter your name!" : "Palun sisesta oma nimi!",
|
"Please enter your name!" : "Palun sisesta oma nimi!",
|
||||||
"The name must be at least 3 characters long." : "Nimi peab olema vähemalt 3 tähemärki pikk.",
|
"The name must be at least 3 characters long." : "Nimi peab olema vähemalt 3 tähemärki pikk.",
|
||||||
|
|
@ -40,6 +57,8 @@ OC.L10N.register(
|
||||||
"admin" : "peakasutaja",
|
"admin" : "peakasutaja",
|
||||||
"moderator" : "moderaator",
|
"moderator" : "moderaator",
|
||||||
"user" : "kasutaja",
|
"user" : "kasutaja",
|
||||||
|
"Server error" : "Serveri tõrge",
|
||||||
|
"unlimited" : "piiramatu",
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Ligipääs",
|
"Access" : "Ligipääs",
|
||||||
"Max" : "Maks",
|
"Max" : "Maks",
|
||||||
|
|
@ -51,6 +70,12 @@ OC.L10N.register(
|
||||||
"Edit" : "Muuda",
|
"Edit" : "Muuda",
|
||||||
"Descriptive name of this room." : "Jututuba kirjeldav nimi.",
|
"Descriptive name of this room." : "Jututuba kirjeldav nimi.",
|
||||||
"This message is shown to all users in the chat area after they joined." : "Seda sõnumit näevad kõik kasutajad pärast liitumist.",
|
"This message is shown to all users in the chat area after they joined." : "Seda sõnumit näevad kõik kasutajad pärast liitumist.",
|
||||||
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Seadistab jututoas osalejate arvu ülempiiri. Number null tähendab piirangu puudumist.",
|
||||||
|
"If enabled, the moderator is able to start the recording." : "Kui see eelistus on kasutusel, siis saab moderaator alustada jututoa salvestamist.",
|
||||||
|
"If enabled, normal users have to wait until a moderator is in the room." : "Kui see eelistus on kasutusel, siis tavakasutajad peavad ootama seni, kuni moderaator on jututoaga liitunud.",
|
||||||
|
"If disabled, a microphone is needed to join the conference." : "Kui see eelistus pole kasutusel, siis kohtumisega liitumisel on vajalik mikrofoni olemasolu.",
|
||||||
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Kui see eelistus on kasutusel, siis vestlusala ja esitlus on vaikimisi peidetud olekus.",
|
||||||
|
"If enabled, all users will join the meeting muted." : "Kui see eelistus on kasutusel, siis kõik kasutajad liituvad kohtumiseks summutatuna.",
|
||||||
"Edit \"{room}\"" : "Muuda „{room}“ jututuba",
|
"Edit \"{room}\"" : "Muuda „{room}“ jututuba",
|
||||||
"Room URL" : "Jututoa võrguaadress",
|
"Room URL" : "Jututoa võrguaadress",
|
||||||
"Welcome" : "Tere tulemast",
|
"Welcome" : "Tere tulemast",
|
||||||
|
|
@ -60,12 +85,12 @@ OC.L10N.register(
|
||||||
"Moderator access via URL" : "Moderaatori ligipääs võrguaadressi alusel",
|
"Moderator access via URL" : "Moderaatori ligipääs võrguaadressi alusel",
|
||||||
"Miscellaneous" : "Varia",
|
"Miscellaneous" : "Varia",
|
||||||
"Recording" : "Salvestan",
|
"Recording" : "Salvestan",
|
||||||
"Require moderator to start room" : "Eelda, et esmalt moderaator alustad jututoa tööd",
|
"Require moderator to start room" : "Eelda, et esmalt moderaator alustab jututoa tööd",
|
||||||
"Listen only option" : "Võimalus ainult kuulamiseks",
|
"Listen only option" : "Võimalus ainult kuulamiseks",
|
||||||
"Skip media check before usage" : "Jäta kasutuseelne meediumikontroll vahele",
|
"Skip media check before usage" : "Jäta kasutuseelne meediumikontroll vahele",
|
||||||
"Clean layout" : "Kustuta paigutus",
|
"Clean layout" : "Kustuta paigutus",
|
||||||
"Join meeting muted" : "Liitu kohtumisega summutatuna",
|
"Join meeting muted" : "Liitu kohtumisega summutatuna",
|
||||||
"Room name" : "Koosolekuruumi nimi",
|
"Room name" : "Jututoa nimi",
|
||||||
"Create" : "Loo",
|
"Create" : "Loo",
|
||||||
"Published" : "Avaldatud",
|
"Published" : "Avaldatud",
|
||||||
"Open recording" : "Ava salvestis",
|
"Open recording" : "Ava salvestis",
|
||||||
|
|
@ -76,22 +101,38 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Kas sa oled kindel, et soovid „{name}“ kustutada? Seda tegevust ei saa tagasi pöörata.",
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Kas sa oled kindel, et soovid „{name}“ kustutada? Seda tegevust ei saa tagasi pöörata.",
|
||||||
"Delete \"{name}\"?" : "Kas kustutame „{name}“ kausta?",
|
"Delete \"{name}\"?" : "Kas kustutame „{name}“ kausta?",
|
||||||
"Select target folder" : "Vali sihtkaust",
|
"Select target folder" : "Vali sihtkaust",
|
||||||
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Jututoa võrguaadress on salvestatud „{path}“ asukohta „{filename}“ failina.",
|
||||||
"Link stored" : "Link on salvestatud",
|
"Link stored" : "Link on salvestatud",
|
||||||
"URL to room could not be stored." : "Jututoa võrguaadressi polnud võimalik salvestada.",
|
"URL to room could not be stored." : "Jututoa võrguaadressi polnud võimalik salvestada.",
|
||||||
"Error" : "Viga",
|
"Error" : "Viga",
|
||||||
"Server error" : "Serveri tõrge",
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Esitluse võrguaadress on salvestatud „{path}“ asukohta „{filename}“ failina.",
|
||||||
|
"URL to presentation could not be stored." : "Esitluse võrguaadressi polnud võimalik salvestada.",
|
||||||
|
"Delete?" : "Kas kustutame?",
|
||||||
|
"Could not delete record" : "Salvestise kustutamine pole võimalik",
|
||||||
"Could not modify publishing state" : "Avaldamise kuupäeva muutmine ei õnnestunud muuta",
|
"Could not modify publishing state" : "Avaldamise kuupäeva muutmine ei õnnestunud muuta",
|
||||||
"Open room" : "Ava jututuba",
|
"Open room" : "Ava jututuba",
|
||||||
"Start" : "Algus",
|
"Start" : "Algus",
|
||||||
"Clone room" : "Tee jututoast koopia",
|
"Clone room" : "Tee jututoast koopia",
|
||||||
"Loading" : "Laadimine",
|
"Loading" : "Laadin",
|
||||||
|
"You are not allowed to change this option, because this room is shared with you." : "Kuna see jututuba on sinuga jagatud, siis sul pole õigust selle eelistuse muutmiseks.",
|
||||||
|
"Group name" : "Grupi nimi",
|
||||||
|
"Max. rooms" : "Maksimaalselt jututube",
|
||||||
|
"Access options" : "Ligipääsuõigused",
|
||||||
|
"Max. participants" : "Maksimaalselt osalejaid",
|
||||||
"Group …" : "Grupp…",
|
"Group …" : "Grupp…",
|
||||||
"Settings saved" : "Seaded salvestatud",
|
"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." : "Piirangud ei kehti olemasolevatele jututubadele. Miinus üks tähendab piirangu tepuudumist. Kui peaks rakenduma korraga mitu piirangut, siis kehtib neist kõige vähem piiravam.",
|
||||||
|
"Delete restrictions for \"{name}\"?" : "Kas kustutame „{name}“ piirangud?",
|
||||||
|
"All users" : "Kõik kasutajad",
|
||||||
|
"All" : "Kõik",
|
||||||
|
"Settings saved" : "Seadistused on salvestatud",
|
||||||
"Unexpected error occurred" : "Tekkis ootamatu viga",
|
"Unexpected error occurred" : "Tekkis ootamatu viga",
|
||||||
"API URL is invalid" : "API võrguaadress on vale",
|
"API URL is invalid" : "API võrguaadress on vale",
|
||||||
"API secret is invalid" : "API saladus on vale",
|
"API secret is invalid" : "API saladus on vale",
|
||||||
"URL has to start with HTTPS" : "Võrguaadressi alguses peab olema HTTPS",
|
"URL has to start with HTTPS" : "Võrguaadressi alguses peab olema HTTPS",
|
||||||
"Send to" : "Saada...",
|
"Example configuration for Apache and Nginx" : "Apache'i ja Nginx'i näidisseadistus",
|
||||||
"No rooms available!" : "Ühtegi jututuba pole saadaval!"
|
"The file \"{filename}\" was uploaded to your room." : "„{filename}“ fail on sinu jututuppa laaditud.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "„{filename}“ faili sinu jututuppa laadimine ei õnnestunud.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "„{filename}“ faili sinu jututuppa laadimine ei õnnestunud. Võib-olla BigBlueButtoni server ei toeta sellist võimalust.",
|
||||||
|
"_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._" : ["See jututuba pole veel avatud. Proovime uuesti %n minuti pärast. Palun oota.","See jututuba pole veel avatud. Proovime uuesti %n minuti pärast. Palun oota."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
|
|
@ -14,14 +14,31 @@
|
||||||
"Public" : "Avalik",
|
"Public" : "Avalik",
|
||||||
"Waiting room for all users" : "Ooteruum kõikidele kasutajatele",
|
"Waiting room for all users" : "Ooteruum kõikidele kasutajatele",
|
||||||
"Internal" : "Sisene",
|
"Internal" : "Sisene",
|
||||||
|
"API URL or secret not configured. Please contact your administrator." : "API võrguaadress või saladus on seadistamata. Palun võta ühendust oma serveri haldajaga.",
|
||||||
|
"BigBlueButton Integration" : "BigBlueButtoni lõiming",
|
||||||
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton lõiming Nextcloudi jaoks",
|
||||||
|
"Send to BBB" : "Saada BBB-sse",
|
||||||
|
"An error occurred while sending the file to the room." : "Faili saatmisel jututuppa tekkis viga.",
|
||||||
|
"Loading…" : "Laadin...",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Palun vali jututuba, kus satahaksid „{filename}“ faili kasutada.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Näed vaid jututube, kus oled peakasutajate seas.",
|
||||||
|
"Send to" : "Saada...",
|
||||||
|
"Start with" : "Alustamisel kasuta:",
|
||||||
|
"No rooms available!" : "Ühtegi jututuba pole saadaval!",
|
||||||
|
"Close" : "Sulge",
|
||||||
"Room not found" : "Jututuba ei leidu",
|
"Room not found" : "Jututuba ei leidu",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Jututuba ei leidu. Kas ta võib olla kustutatud?",
|
"The room could not be found. Maybe it was deleted?" : "Jututuba ei leidu. Kas ta võib olla kustutatud?",
|
||||||
"Back to %s" : "Tagasi siia: %s",
|
"Back to %s" : "Tagasi siia: %s",
|
||||||
|
"Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Oma API võrguaadressi ja saladuse saad oma BigBlueButtoni serverist, kui käivitad käsurealt „sudo bbb-conf --secret“.",
|
||||||
"API URL" : "API võrguaadress",
|
"API URL" : "API võrguaadress",
|
||||||
"API secret" : "API saladus",
|
"API secret" : "API saladus",
|
||||||
"Save" : "Salvesta",
|
"Save" : "Salvesta",
|
||||||
|
"Default Room Settings" : "Jututoa vaikimisi seadistused",
|
||||||
|
"Below you can change some default values, which are used to create a new room." : "Alljärgnevaga saad muuta mõningaid väärtusi, mis on kasutusel uue jututoa loomisel.",
|
||||||
|
"Perform media check before usage" : "Enne kasutamist kontrolli meediumi",
|
||||||
"Community" : "Kogukond",
|
"Community" : "Kogukond",
|
||||||
"Restrictions" : "Piirangud",
|
"Restrictions" : "Piirangud",
|
||||||
|
"You will be forwarded to the room in the next few seconds." : "Järgmise paari sekundi jooksul suunatakse sind jututuppa.",
|
||||||
"Let's go!" : "Alustame!",
|
"Let's go!" : "Alustame!",
|
||||||
"Please enter your name!" : "Palun sisesta oma nimi!",
|
"Please enter your name!" : "Palun sisesta oma nimi!",
|
||||||
"The name must be at least 3 characters long." : "Nimi peab olema vähemalt 3 tähemärki pikk.",
|
"The name must be at least 3 characters long." : "Nimi peab olema vähemalt 3 tähemärki pikk.",
|
||||||
|
|
@ -38,6 +55,8 @@
|
||||||
"admin" : "peakasutaja",
|
"admin" : "peakasutaja",
|
||||||
"moderator" : "moderaator",
|
"moderator" : "moderaator",
|
||||||
"user" : "kasutaja",
|
"user" : "kasutaja",
|
||||||
|
"Server error" : "Serveri tõrge",
|
||||||
|
"unlimited" : "piiramatu",
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Ligipääs",
|
"Access" : "Ligipääs",
|
||||||
"Max" : "Maks",
|
"Max" : "Maks",
|
||||||
|
|
@ -49,6 +68,12 @@
|
||||||
"Edit" : "Muuda",
|
"Edit" : "Muuda",
|
||||||
"Descriptive name of this room." : "Jututuba kirjeldav nimi.",
|
"Descriptive name of this room." : "Jututuba kirjeldav nimi.",
|
||||||
"This message is shown to all users in the chat area after they joined." : "Seda sõnumit näevad kõik kasutajad pärast liitumist.",
|
"This message is shown to all users in the chat area after they joined." : "Seda sõnumit näevad kõik kasutajad pärast liitumist.",
|
||||||
|
"Sets a limit on the number of participants for this room. Zero means there is no limit." : "Seadistab jututoas osalejate arvu ülempiiri. Number null tähendab piirangu puudumist.",
|
||||||
|
"If enabled, the moderator is able to start the recording." : "Kui see eelistus on kasutusel, siis saab moderaator alustada jututoa salvestamist.",
|
||||||
|
"If enabled, normal users have to wait until a moderator is in the room." : "Kui see eelistus on kasutusel, siis tavakasutajad peavad ootama seni, kuni moderaator on jututoaga liitunud.",
|
||||||
|
"If disabled, a microphone is needed to join the conference." : "Kui see eelistus pole kasutusel, siis kohtumisega liitumisel on vajalik mikrofoni olemasolu.",
|
||||||
|
"If enabled, the user list, chat area and presentation are hidden by default." : "Kui see eelistus on kasutusel, siis vestlusala ja esitlus on vaikimisi peidetud olekus.",
|
||||||
|
"If enabled, all users will join the meeting muted." : "Kui see eelistus on kasutusel, siis kõik kasutajad liituvad kohtumiseks summutatuna.",
|
||||||
"Edit \"{room}\"" : "Muuda „{room}“ jututuba",
|
"Edit \"{room}\"" : "Muuda „{room}“ jututuba",
|
||||||
"Room URL" : "Jututoa võrguaadress",
|
"Room URL" : "Jututoa võrguaadress",
|
||||||
"Welcome" : "Tere tulemast",
|
"Welcome" : "Tere tulemast",
|
||||||
|
|
@ -58,12 +83,12 @@
|
||||||
"Moderator access via URL" : "Moderaatori ligipääs võrguaadressi alusel",
|
"Moderator access via URL" : "Moderaatori ligipääs võrguaadressi alusel",
|
||||||
"Miscellaneous" : "Varia",
|
"Miscellaneous" : "Varia",
|
||||||
"Recording" : "Salvestan",
|
"Recording" : "Salvestan",
|
||||||
"Require moderator to start room" : "Eelda, et esmalt moderaator alustad jututoa tööd",
|
"Require moderator to start room" : "Eelda, et esmalt moderaator alustab jututoa tööd",
|
||||||
"Listen only option" : "Võimalus ainult kuulamiseks",
|
"Listen only option" : "Võimalus ainult kuulamiseks",
|
||||||
"Skip media check before usage" : "Jäta kasutuseelne meediumikontroll vahele",
|
"Skip media check before usage" : "Jäta kasutuseelne meediumikontroll vahele",
|
||||||
"Clean layout" : "Kustuta paigutus",
|
"Clean layout" : "Kustuta paigutus",
|
||||||
"Join meeting muted" : "Liitu kohtumisega summutatuna",
|
"Join meeting muted" : "Liitu kohtumisega summutatuna",
|
||||||
"Room name" : "Koosolekuruumi nimi",
|
"Room name" : "Jututoa nimi",
|
||||||
"Create" : "Loo",
|
"Create" : "Loo",
|
||||||
"Published" : "Avaldatud",
|
"Published" : "Avaldatud",
|
||||||
"Open recording" : "Ava salvestis",
|
"Open recording" : "Ava salvestis",
|
||||||
|
|
@ -74,22 +99,38 @@
|
||||||
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Kas sa oled kindel, et soovid „{name}“ kustutada? Seda tegevust ei saa tagasi pöörata.",
|
"Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Kas sa oled kindel, et soovid „{name}“ kustutada? Seda tegevust ei saa tagasi pöörata.",
|
||||||
"Delete \"{name}\"?" : "Kas kustutame „{name}“ kausta?",
|
"Delete \"{name}\"?" : "Kas kustutame „{name}“ kausta?",
|
||||||
"Select target folder" : "Vali sihtkaust",
|
"Select target folder" : "Vali sihtkaust",
|
||||||
|
"Room URL was stored in \"{path}\" as \"{filename}\"." : "Jututoa võrguaadress on salvestatud „{path}“ asukohta „{filename}“ failina.",
|
||||||
"Link stored" : "Link on salvestatud",
|
"Link stored" : "Link on salvestatud",
|
||||||
"URL to room could not be stored." : "Jututoa võrguaadressi polnud võimalik salvestada.",
|
"URL to room could not be stored." : "Jututoa võrguaadressi polnud võimalik salvestada.",
|
||||||
"Error" : "Viga",
|
"Error" : "Viga",
|
||||||
"Server error" : "Serveri tõrge",
|
"URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Esitluse võrguaadress on salvestatud „{path}“ asukohta „{filename}“ failina.",
|
||||||
|
"URL to presentation could not be stored." : "Esitluse võrguaadressi polnud võimalik salvestada.",
|
||||||
|
"Delete?" : "Kas kustutame?",
|
||||||
|
"Could not delete record" : "Salvestise kustutamine pole võimalik",
|
||||||
"Could not modify publishing state" : "Avaldamise kuupäeva muutmine ei õnnestunud muuta",
|
"Could not modify publishing state" : "Avaldamise kuupäeva muutmine ei õnnestunud muuta",
|
||||||
"Open room" : "Ava jututuba",
|
"Open room" : "Ava jututuba",
|
||||||
"Start" : "Algus",
|
"Start" : "Algus",
|
||||||
"Clone room" : "Tee jututoast koopia",
|
"Clone room" : "Tee jututoast koopia",
|
||||||
"Loading" : "Laadimine",
|
"Loading" : "Laadin",
|
||||||
|
"You are not allowed to change this option, because this room is shared with you." : "Kuna see jututuba on sinuga jagatud, siis sul pole õigust selle eelistuse muutmiseks.",
|
||||||
|
"Group name" : "Grupi nimi",
|
||||||
|
"Max. rooms" : "Maksimaalselt jututube",
|
||||||
|
"Access options" : "Ligipääsuõigused",
|
||||||
|
"Max. participants" : "Maksimaalselt osalejaid",
|
||||||
"Group …" : "Grupp…",
|
"Group …" : "Grupp…",
|
||||||
"Settings saved" : "Seaded salvestatud",
|
"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." : "Piirangud ei kehti olemasolevatele jututubadele. Miinus üks tähendab piirangu tepuudumist. Kui peaks rakenduma korraga mitu piirangut, siis kehtib neist kõige vähem piiravam.",
|
||||||
|
"Delete restrictions for \"{name}\"?" : "Kas kustutame „{name}“ piirangud?",
|
||||||
|
"All users" : "Kõik kasutajad",
|
||||||
|
"All" : "Kõik",
|
||||||
|
"Settings saved" : "Seadistused on salvestatud",
|
||||||
"Unexpected error occurred" : "Tekkis ootamatu viga",
|
"Unexpected error occurred" : "Tekkis ootamatu viga",
|
||||||
"API URL is invalid" : "API võrguaadress on vale",
|
"API URL is invalid" : "API võrguaadress on vale",
|
||||||
"API secret is invalid" : "API saladus on vale",
|
"API secret is invalid" : "API saladus on vale",
|
||||||
"URL has to start with HTTPS" : "Võrguaadressi alguses peab olema HTTPS",
|
"URL has to start with HTTPS" : "Võrguaadressi alguses peab olema HTTPS",
|
||||||
"Send to" : "Saada...",
|
"Example configuration for Apache and Nginx" : "Apache'i ja Nginx'i näidisseadistus",
|
||||||
"No rooms available!" : "Ühtegi jututuba pole saadaval!"
|
"The file \"{filename}\" was uploaded to your room." : "„{filename}“ fail on sinu jututuppa laaditud.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room." : "„{filename}“ faili sinu jututuppa laadimine ei õnnestunud.",
|
||||||
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "„{filename}“ faili sinu jututuppa laadimine ei õnnestunud. Võib-olla BigBlueButtoni server ei toeta sellist võimalust.",
|
||||||
|
"_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._" : ["See jututuba pole veel avatud. Proovime uuesti %n minuti pärast. Palun oota.","See jututuba pole veel avatud. Proovime uuesti %n minuti pärast. Palun oota."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
30
l10n/eu.js
30
l10n/eu.js
|
|
@ -22,6 +22,16 @@ OC.L10N.register(
|
||||||
"API URL or secret not configured. Please contact your administrator." : "API URLa edo URL sekretua konfiguratu gabe. Jarri harremanetan zure administratzailearekin.",
|
"API URL or secret not configured. Please contact your administrator." : "API URLa edo URL sekretua konfiguratu gabe. Jarri harremanetan zure administratzailearekin.",
|
||||||
"BigBlueButton Integration" : "BigBlueButton integrazioa",
|
"BigBlueButton Integration" : "BigBlueButton integrazioa",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integrazioa Nextclouderako",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton integrazioa Nextclouderako",
|
||||||
|
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Aplikazio honek bilerak sortzeko aukera ematen du [BigBlueButton] (https://bigbluebutton.org) kanpoko instalazio batez.\n\n* **Gelaren konfigurazioa** Sortu hainbat gela konfigurazio izena, ongietorri mezuarekin...\n* **Partekatu gonbidatzeko esteka** Partekatu gelako esteka gonbidatu guztiekin\n* **Partekatu moderatzailearen esteka** Gonbidatu moderatzaileak gelara\n* **Partekatu gelak** Partekatu gelak kideekin, taldeekin edo zirkuluekin\n* **Aurkezpen pertsonalizatua** Hasi gela bat zure fitxategi-arakatzailetik hautatutako aurkezpen batekin\n* **Kudeatu grabaketak** Ikusi, partekatu eta ezabatu zure geletako grabazioak\n* **Murrizketak** Gelak sortzea talde jakin batzuetara mugatu\n* **Jarduerak** Lortu gelako jardueren ikuspegi orokorra\n\nHasteko gida azkarra eta informazio gehiago [hemen](https://github.com/littleredbutton/cloud_bbb).\nGustatzen al zaizu aplikazio hau? Eman zerbait kode irekiko komunitateari eta begiratu gure\n[sustatzeko moduak](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nLaguntzaileak ongi etorriak dira! Denbora baduzu, zoragarria izango litzateke aplikazio hau hobetzen laguntzea.\n\n*Aplikazio honek BigBlueButton integratzen du eta ez du BigBlueButton Inc.-ek bermatzen edo ziurtatzen. BigBlueButton eta BigBlueButton logotipoa BigBlueButton Inc-en marka erregistratuak dira.*",
|
||||||
|
"Send to BBB" : "Bidali BBB-ra",
|
||||||
|
"An error occurred while sending the file to the room." : "Errore bat gertatu da fitxategia gelara bidaltzean.",
|
||||||
|
"Loading…" : "Kargatzen…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Mesedez, hautatu gela non \"{filename}\" fitxategia erabili nahi duzun.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Administratzaileetako bat zaren gelak bakarrik bistaratuko dira.",
|
||||||
|
"Send to" : "Bidali honi:",
|
||||||
|
"Start with" : "Hasi honekin",
|
||||||
|
"No rooms available!" : "Ez dago gelarik eskuragarri!",
|
||||||
|
"Close" : "Itxi",
|
||||||
"Room not found" : "Ez da gela aurkitu",
|
"Room not found" : "Ez da gela aurkitu",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Ezin izan da gela aurkitu. Agian, ezabatua izan da?",
|
"The room could not be found. Maybe it was deleted?" : "Ezin izan da gela aurkitu. Agian, ezabatua izan da?",
|
||||||
"Back to %s" : "Itzuli %s(e)ra",
|
"Back to %s" : "Itzuli %s(e)ra",
|
||||||
|
|
@ -58,6 +68,8 @@ OC.L10N.register(
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderatzailea",
|
"moderator" : "moderatzailea",
|
||||||
"user" : "erabiltzailea",
|
"user" : "erabiltzailea",
|
||||||
|
"Server error" : "Zerbitzari akatsa",
|
||||||
|
"unlimited" : "mugagabea",
|
||||||
"Name" : "Izena",
|
"Name" : "Izena",
|
||||||
"Access" : "Sarbidea",
|
"Access" : "Sarbidea",
|
||||||
"Max" : "Maximoa",
|
"Max" : "Maximoa",
|
||||||
|
|
@ -71,6 +83,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.",
|
||||||
|
"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 sar daiteke.<br> - Barnekoa: Nextcloud-eko erabiltzaileak bakarrik sartu daitezke.<br> - Pasahitza: pasahitza duten gonbidatuak bakarrik sartu daitezke.<br> - Gelaren zain: Moderatzaile batek gonbidatu bakoitza onartu behar du sartu aurretik.<br> - Mugatuta: hautatutako erabiltzaileak eta taldeak 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.",
|
||||||
|
|
@ -113,16 +126,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Ziur zaude \"{startDate}\"-(e)ko grabazioa ezabatu nahi duzula? Eragiketa hau ezin da desegin.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Ziur zaude \"{startDate}\"-(e)ko grabazioa ezabatu nahi duzula? Eragiketa hau ezin da desegin.",
|
||||||
"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",
|
"Could not modify publishing state" : "Ezin izan da argitalpen-egoera aldatu",
|
||||||
"Start" : "Hasiera",
|
"Open room" : "Ireki gela",
|
||||||
|
"Start" : "Hasi",
|
||||||
|
"Clone room" : "Klonatu gela",
|
||||||
"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.",
|
||||||
|
"Group name" : "Taldearen izena",
|
||||||
"Max. rooms" : "Gela max.",
|
"Max. rooms" : "Gela max.",
|
||||||
|
"Access options" : "Sartzeko aukerak",
|
||||||
"Max. participants" : "Parte-hartzaile max.",
|
"Max. participants" : "Parte-hartzaile max.",
|
||||||
"Group …" : "Taldea ...",
|
"Group …" : "Taldea ...",
|
||||||
"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." : "Murrizketek ez diete eragiten dagoeneko badauden gelei. -1 jartzeak mugarik gabe esan nahi du. Murrizketa ugari egitean, murrizketa arinena erabiltzaile guztientzat hautatzen da.",
|
"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." : "Murrizketek ez diete eragiten dagoeneko badauden gelei. -1 jartzeak mugarik gabe esan nahi du. Murrizketa ugari egitean, murrizketa arinena erabiltzaile guztientzat hautatzen da.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Ziur zaude \"{name}\" taldearentzako murrizketak ezabatu nahi dituzula? Eragiketa hau ezin da desegin.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Ziur zaude \"{name}\" taldearentzako murrizketak ezabatu nahi dituzula? Eragiketa hau ezin da desegin.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Ezabatu murrizketak \"{name}\"-entzat?",
|
"Delete restrictions for \"{name}\"?" : "Ezabatu murrizketak \"{name}\"-entzat?",
|
||||||
|
"All users" : "Erabiltzaile guztiak",
|
||||||
|
"All" : "Denak",
|
||||||
"Settings saved" : "Ezarpenak gordeta",
|
"Settings saved" : "Ezarpenak gordeta",
|
||||||
"Unexpected error occurred" : "Ustekabeko errore bat gertatu da",
|
"Unexpected error occurred" : "Ustekabeko errore bat gertatu da",
|
||||||
"API URL is invalid" : "API URLa baliogabea da",
|
"API URL is invalid" : "API URLa baliogabea da",
|
||||||
|
|
@ -130,15 +149,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "URLak HTTPSrekin hasi behar du",
|
"URL has to start with HTTPS" : "URLak HTTPSrekin hasi behar du",
|
||||||
"URL has to contain the {token} placeholder" : "URLak {token}-aren leku-marka barnean behar du",
|
"URL has to contain the {token} placeholder" : "URLak {token}-aren leku-marka barnean behar du",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URLak https:// eduki behar du hasieran eta {token}-a barnean behar du. {user} erabiltzailearen leku-marka ere izan dezake.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URLak https:// eduki behar du hasieran eta {token}-a barnean behar du. {user} erabiltzailearen leku-marka ere izan dezake.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Apache eta Nginx-en konfigurazio adibidea",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "\"{filename}\" fitxategia zure gelara igo da.",
|
"The file \"{filename}\" was uploaded to your room." : "\"{filename}\" fitxategia zure gelara igo da.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Ezin da \"{filename}\" fitxategia zure gelara igo.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Ezin da \"{filename}\" fitxategia zure gelara igo.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "\"{filename}\" fitxategia ezin da zure gelara igo. Baliteke BigBlueButton zerbitzariak ez onartzea ekintza hori.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "\"{filename}\" fitxategia ezin da zure gelara igo. Baliteke BigBlueButton zerbitzariak ez onartzea ekintza hori.",
|
||||||
"Send file to BBB" : "Bidali fitxategia BBBra",
|
|
||||||
"Send to" : "Bidali honi:",
|
|
||||||
"Start with" : "Hasi honekin",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Mesedez, hautatu gela non \"{filename}\" fitxategia erabili nahi duzun.",
|
|
||||||
"No rooms available!" : "Ez dago gelarik eskuragarri!",
|
|
||||||
"Send to BBB" : "Bidali BBB-ra",
|
|
||||||
"_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._" : ["Gela hau ez dago irekita oraindik. Berriro saiatuko gara {sec} segundotan. Itxaron mesedez.","Gela hau ez dago irekita oraindik. Berriro saiatuko gara segundotan %n seconds. Please wait."]
|
"_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._" : ["Gela hau ez dago irekita oraindik. Berriro saiatuko gara {sec} segundotan. Itxaron mesedez.","Gela hau ez dago irekita oraindik. Berriro saiatuko gara segundotan %n seconds. Please wait."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
30
l10n/eu.json
30
l10n/eu.json
|
|
@ -20,6 +20,16 @@
|
||||||
"API URL or secret not configured. Please contact your administrator." : "API URLa edo URL sekretua konfiguratu gabe. Jarri harremanetan zure administratzailearekin.",
|
"API URL or secret not configured. Please contact your administrator." : "API URLa edo URL sekretua konfiguratu gabe. Jarri harremanetan zure administratzailearekin.",
|
||||||
"BigBlueButton Integration" : "BigBlueButton integrazioa",
|
"BigBlueButton Integration" : "BigBlueButton integrazioa",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton integrazioa Nextclouderako",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton integrazioa Nextclouderako",
|
||||||
|
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Aplikazio honek bilerak sortzeko aukera ematen du [BigBlueButton] (https://bigbluebutton.org) kanpoko instalazio batez.\n\n* **Gelaren konfigurazioa** Sortu hainbat gela konfigurazio izena, ongietorri mezuarekin...\n* **Partekatu gonbidatzeko esteka** Partekatu gelako esteka gonbidatu guztiekin\n* **Partekatu moderatzailearen esteka** Gonbidatu moderatzaileak gelara\n* **Partekatu gelak** Partekatu gelak kideekin, taldeekin edo zirkuluekin\n* **Aurkezpen pertsonalizatua** Hasi gela bat zure fitxategi-arakatzailetik hautatutako aurkezpen batekin\n* **Kudeatu grabaketak** Ikusi, partekatu eta ezabatu zure geletako grabazioak\n* **Murrizketak** Gelak sortzea talde jakin batzuetara mugatu\n* **Jarduerak** Lortu gelako jardueren ikuspegi orokorra\n\nHasteko gida azkarra eta informazio gehiago [hemen](https://github.com/littleredbutton/cloud_bbb).\nGustatzen al zaizu aplikazio hau? Eman zerbait kode irekiko komunitateari eta begiratu gure\n[sustatzeko moduak](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nLaguntzaileak ongi etorriak dira! Denbora baduzu, zoragarria izango litzateke aplikazio hau hobetzen laguntzea.\n\n*Aplikazio honek BigBlueButton integratzen du eta ez du BigBlueButton Inc.-ek bermatzen edo ziurtatzen. BigBlueButton eta BigBlueButton logotipoa BigBlueButton Inc-en marka erregistratuak dira.*",
|
||||||
|
"Send to BBB" : "Bidali BBB-ra",
|
||||||
|
"An error occurred while sending the file to the room." : "Errore bat gertatu da fitxategia gelara bidaltzean.",
|
||||||
|
"Loading…" : "Kargatzen…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Mesedez, hautatu gela non \"{filename}\" fitxategia erabili nahi duzun.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Administratzaileetako bat zaren gelak bakarrik bistaratuko dira.",
|
||||||
|
"Send to" : "Bidali honi:",
|
||||||
|
"Start with" : "Hasi honekin",
|
||||||
|
"No rooms available!" : "Ez dago gelarik eskuragarri!",
|
||||||
|
"Close" : "Itxi",
|
||||||
"Room not found" : "Ez da gela aurkitu",
|
"Room not found" : "Ez da gela aurkitu",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Ezin izan da gela aurkitu. Agian, ezabatua izan da?",
|
"The room could not be found. Maybe it was deleted?" : "Ezin izan da gela aurkitu. Agian, ezabatua izan da?",
|
||||||
"Back to %s" : "Itzuli %s(e)ra",
|
"Back to %s" : "Itzuli %s(e)ra",
|
||||||
|
|
@ -56,6 +66,8 @@
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderatzailea",
|
"moderator" : "moderatzailea",
|
||||||
"user" : "erabiltzailea",
|
"user" : "erabiltzailea",
|
||||||
|
"Server error" : "Zerbitzari akatsa",
|
||||||
|
"unlimited" : "mugagabea",
|
||||||
"Name" : "Izena",
|
"Name" : "Izena",
|
||||||
"Access" : "Sarbidea",
|
"Access" : "Sarbidea",
|
||||||
"Max" : "Maximoa",
|
"Max" : "Maximoa",
|
||||||
|
|
@ -69,6 +81,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.",
|
||||||
|
"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 sar daiteke.<br> - Barnekoa: Nextcloud-eko erabiltzaileak bakarrik sartu daitezke.<br> - Pasahitza: pasahitza duten gonbidatuak bakarrik sartu daitezke.<br> - Gelaren zain: Moderatzaile batek gonbidatu bakoitza onartu behar du sartu aurretik.<br> - Mugatuta: hautatutako erabiltzaileak eta taldeak 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.",
|
||||||
|
|
@ -111,16 +124,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Ziur zaude \"{startDate}\"-(e)ko grabazioa ezabatu nahi duzula? Eragiketa hau ezin da desegin.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Ziur zaude \"{startDate}\"-(e)ko grabazioa ezabatu nahi duzula? Eragiketa hau ezin da desegin.",
|
||||||
"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",
|
"Could not modify publishing state" : "Ezin izan da argitalpen-egoera aldatu",
|
||||||
"Start" : "Hasiera",
|
"Open room" : "Ireki gela",
|
||||||
|
"Start" : "Hasi",
|
||||||
|
"Clone room" : "Klonatu gela",
|
||||||
"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.",
|
||||||
|
"Group name" : "Taldearen izena",
|
||||||
"Max. rooms" : "Gela max.",
|
"Max. rooms" : "Gela max.",
|
||||||
|
"Access options" : "Sartzeko aukerak",
|
||||||
"Max. participants" : "Parte-hartzaile max.",
|
"Max. participants" : "Parte-hartzaile max.",
|
||||||
"Group …" : "Taldea ...",
|
"Group …" : "Taldea ...",
|
||||||
"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." : "Murrizketek ez diete eragiten dagoeneko badauden gelei. -1 jartzeak mugarik gabe esan nahi du. Murrizketa ugari egitean, murrizketa arinena erabiltzaile guztientzat hautatzen da.",
|
"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." : "Murrizketek ez diete eragiten dagoeneko badauden gelei. -1 jartzeak mugarik gabe esan nahi du. Murrizketa ugari egitean, murrizketa arinena erabiltzaile guztientzat hautatzen da.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Ziur zaude \"{name}\" taldearentzako murrizketak ezabatu nahi dituzula? Eragiketa hau ezin da desegin.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Ziur zaude \"{name}\" taldearentzako murrizketak ezabatu nahi dituzula? Eragiketa hau ezin da desegin.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Ezabatu murrizketak \"{name}\"-entzat?",
|
"Delete restrictions for \"{name}\"?" : "Ezabatu murrizketak \"{name}\"-entzat?",
|
||||||
|
"All users" : "Erabiltzaile guztiak",
|
||||||
|
"All" : "Denak",
|
||||||
"Settings saved" : "Ezarpenak gordeta",
|
"Settings saved" : "Ezarpenak gordeta",
|
||||||
"Unexpected error occurred" : "Ustekabeko errore bat gertatu da",
|
"Unexpected error occurred" : "Ustekabeko errore bat gertatu da",
|
||||||
"API URL is invalid" : "API URLa baliogabea da",
|
"API URL is invalid" : "API URLa baliogabea da",
|
||||||
|
|
@ -128,15 +147,10 @@
|
||||||
"URL has to start with HTTPS" : "URLak HTTPSrekin hasi behar du",
|
"URL has to start with HTTPS" : "URLak HTTPSrekin hasi behar du",
|
||||||
"URL has to contain the {token} placeholder" : "URLak {token}-aren leku-marka barnean behar du",
|
"URL has to contain the {token} placeholder" : "URLak {token}-aren leku-marka barnean behar du",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URLak https:// eduki behar du hasieran eta {token}-a barnean behar du. {user} erabiltzailearen leku-marka ere izan dezake.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URLak https:// eduki behar du hasieran eta {token}-a barnean behar du. {user} erabiltzailearen leku-marka ere izan dezake.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Apache eta Nginx-en konfigurazio adibidea",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "\"{filename}\" fitxategia zure gelara igo da.",
|
"The file \"{filename}\" was uploaded to your room." : "\"{filename}\" fitxategia zure gelara igo da.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Ezin da \"{filename}\" fitxategia zure gelara igo.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Ezin da \"{filename}\" fitxategia zure gelara igo.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "\"{filename}\" fitxategia ezin da zure gelara igo. Baliteke BigBlueButton zerbitzariak ez onartzea ekintza hori.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "\"{filename}\" fitxategia ezin da zure gelara igo. Baliteke BigBlueButton zerbitzariak ez onartzea ekintza hori.",
|
||||||
"Send file to BBB" : "Bidali fitxategia BBBra",
|
|
||||||
"Send to" : "Bidali honi:",
|
|
||||||
"Start with" : "Hasi honekin",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Mesedez, hautatu gela non \"{filename}\" fitxategia erabili nahi duzun.",
|
|
||||||
"No rooms available!" : "Ez dago gelarik eskuragarri!",
|
|
||||||
"Send to BBB" : "Bidali BBB-ra",
|
|
||||||
"_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._" : ["Gela hau ez dago irekita oraindik. Berriro saiatuko gara {sec} segundotan. Itxaron mesedez.","Gela hau ez dago irekita oraindik. Berriro saiatuko gara segundotan %n seconds. Please wait."]
|
"_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._" : ["Gela hau ez dago irekita oraindik. Berriro saiatuko gara {sec} segundotan. Itxaron mesedez.","Gela hau ez dago irekita oraindik. Berriro saiatuko gara segundotan %n seconds. Please wait."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
21
l10n/fa.js
21
l10n/fa.js
|
|
@ -22,6 +22,13 @@ 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",
|
||||||
|
"Send to BBB" : "Send to BBB",
|
||||||
|
"Loading…" : "درحال بارگیری…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
||||||
|
"Send to" : "Send to",
|
||||||
|
"Start with" : "Start with",
|
||||||
|
"No rooms available!" : "No rooms available!",
|
||||||
|
"Close" : "بستن",
|
||||||
"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",
|
||||||
|
|
@ -57,6 +64,8 @@ OC.L10N.register(
|
||||||
"No matches" : "No matches",
|
"No matches" : "No matches",
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderator",
|
"moderator" : "moderator",
|
||||||
|
"Server error" : "خطای سرور",
|
||||||
|
"unlimited" : "نامحدود",
|
||||||
"Name" : "نام",
|
"Name" : "نام",
|
||||||
"Access" : "دسترسی",
|
"Access" : "دسترسی",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -112,16 +121,18 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "خطای سرور",
|
|
||||||
"Start" : "شروع",
|
"Start" : "شروع",
|
||||||
"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.",
|
||||||
|
"Group name" : "نام گروه",
|
||||||
"Max. rooms" : "Max. rooms",
|
"Max. rooms" : "Max. rooms",
|
||||||
"Max. participants" : "Max. participants",
|
"Max. participants" : "Max. participants",
|
||||||
"Group …" : "Group …",
|
"Group …" : "Group …",
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
||||||
"Delete restrictions for \"{name}\"?" : "محدودیتهای \"{name}\" حذف شود؟",
|
"Delete restrictions for \"{name}\"?" : "محدودیتهای \"{name}\" حذف شود؟",
|
||||||
|
"All users" : "All users",
|
||||||
|
"All" : "همه",
|
||||||
"Settings saved" : "تنظیمات ذخیره شد",
|
"Settings saved" : "تنظیمات ذخیره شد",
|
||||||
"Unexpected error occurred" : "Unexpected error occurred",
|
"Unexpected error occurred" : "Unexpected error occurred",
|
||||||
"API URL is invalid" : "API URL is invalid",
|
"API URL is invalid" : "API URL is invalid",
|
||||||
|
|
@ -132,12 +143,6 @@ OC.L10N.register(
|
||||||
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
||||||
"Send file to BBB" : "Send file to BBB",
|
|
||||||
"Send to" : "Send to",
|
|
||||||
"Start with" : "Start with",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
|
||||||
"No rooms available!" : "No rooms available!",
|
|
||||||
"Send to BBB" : "Send to 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._" : ["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."]
|
"_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._" : ["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."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n > 1);");
|
"nplurals=2; plural=(n > 1);");
|
||||||
|
|
|
||||||
21
l10n/fa.json
21
l10n/fa.json
|
|
@ -20,6 +20,13 @@
|
||||||
"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",
|
||||||
|
"Send to BBB" : "Send to BBB",
|
||||||
|
"Loading…" : "درحال بارگیری…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
||||||
|
"Send to" : "Send to",
|
||||||
|
"Start with" : "Start with",
|
||||||
|
"No rooms available!" : "No rooms available!",
|
||||||
|
"Close" : "بستن",
|
||||||
"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",
|
||||||
|
|
@ -55,6 +62,8 @@
|
||||||
"No matches" : "No matches",
|
"No matches" : "No matches",
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderator",
|
"moderator" : "moderator",
|
||||||
|
"Server error" : "خطای سرور",
|
||||||
|
"unlimited" : "نامحدود",
|
||||||
"Name" : "نام",
|
"Name" : "نام",
|
||||||
"Access" : "دسترسی",
|
"Access" : "دسترسی",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -110,16 +119,18 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone.",
|
||||||
"Delete?" : "Delete?",
|
"Delete?" : "Delete?",
|
||||||
"Could not delete record" : "Could not delete record",
|
"Could not delete record" : "Could not delete record",
|
||||||
"Server error" : "خطای سرور",
|
|
||||||
"Start" : "شروع",
|
"Start" : "شروع",
|
||||||
"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.",
|
||||||
|
"Group name" : "نام گروه",
|
||||||
"Max. rooms" : "Max. rooms",
|
"Max. rooms" : "Max. rooms",
|
||||||
"Max. participants" : "Max. participants",
|
"Max. participants" : "Max. participants",
|
||||||
"Group …" : "Group …",
|
"Group …" : "Group …",
|
||||||
"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." : "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.",
|
"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." : "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.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone.",
|
||||||
"Delete restrictions for \"{name}\"?" : "محدودیتهای \"{name}\" حذف شود؟",
|
"Delete restrictions for \"{name}\"?" : "محدودیتهای \"{name}\" حذف شود؟",
|
||||||
|
"All users" : "All users",
|
||||||
|
"All" : "همه",
|
||||||
"Settings saved" : "تنظیمات ذخیره شد",
|
"Settings saved" : "تنظیمات ذخیره شد",
|
||||||
"Unexpected error occurred" : "Unexpected error occurred",
|
"Unexpected error occurred" : "Unexpected error occurred",
|
||||||
"API URL is invalid" : "API URL is invalid",
|
"API URL is invalid" : "API URL is invalid",
|
||||||
|
|
@ -130,12 +141,6 @@
|
||||||
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
"The file \"{filename}\" was uploaded to your room." : "The file \"{filename}\" was uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
"The file \"{filename}\" could not be uploaded to your room." : "The file \"{filename}\" could not be uploaded to your room.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action.",
|
||||||
"Send file to BBB" : "Send file to BBB",
|
|
||||||
"Send to" : "Send to",
|
|
||||||
"Start with" : "Start with",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Please select the room in which you like to use the file \"{filename}\".",
|
|
||||||
"No rooms available!" : "No rooms available!",
|
|
||||||
"Send to BBB" : "Send to 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._" : ["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."]
|
"_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._" : ["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."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||||
}
|
}
|
||||||
11
l10n/fi.js
11
l10n/fi.js
|
|
@ -18,6 +18,9 @@ OC.L10N.register(
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Rajapinnan URL-osoitetta tai salaisuutta ei ole määritetty. Ota yhteys ylläpitäjään.",
|
"API URL or secret not configured. Please contact your administrator." : "Rajapinnan URL-osoitetta tai salaisuutta ei ole määritetty. Ota yhteys ylläpitäjään.",
|
||||||
"BigBlueButton Integration" : "BigBlueButton-integraatio",
|
"BigBlueButton Integration" : "BigBlueButton-integraatio",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton-integraatio Nextcloudiin",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton-integraatio Nextcloudiin",
|
||||||
|
"Loading…" : "Ladataan…",
|
||||||
|
"No rooms available!" : "Huoneita ei ole saatavilla!",
|
||||||
|
"Close" : "Sulje",
|
||||||
"Room not found" : "Huonetta ei löytynyt",
|
"Room not found" : "Huonetta ei löytynyt",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Huonetta ei löytynyt. Kenties se poistettiin.",
|
"The room could not be found. Maybe it was deleted?" : "Huonetta ei löytynyt. Kenties se poistettiin.",
|
||||||
"Back to %s" : "Takaisin kohtaan %s",
|
"Back to %s" : "Takaisin kohtaan %s",
|
||||||
|
|
@ -42,6 +45,7 @@ OC.L10N.register(
|
||||||
"Group" : "Ryhmä",
|
"Group" : "Ryhmä",
|
||||||
"No matches" : "Ei täsmääviä",
|
"No matches" : "Ei täsmääviä",
|
||||||
"moderator" : "moderaattori",
|
"moderator" : "moderaattori",
|
||||||
|
"Server error" : "Palvelinvirhe",
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Käyttöoikeudet",
|
"Access" : "Käyttöoikeudet",
|
||||||
"Max" : "Enintään",
|
"Max" : "Enintään",
|
||||||
|
|
@ -75,17 +79,18 @@ OC.L10N.register(
|
||||||
"Error" : "Virhe",
|
"Error" : "Virhe",
|
||||||
"Delete?" : "Poistetaanko?",
|
"Delete?" : "Poistetaanko?",
|
||||||
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
||||||
"Server error" : "Palvelinvirhe",
|
|
||||||
"Start" : "Alku",
|
"Start" : "Alku",
|
||||||
"Loading" : "Ladataan",
|
"Loading" : "Ladataan",
|
||||||
|
"Group name" : "Ryhmän nimi",
|
||||||
"Max. rooms" : "Huoneita enintään",
|
"Max. rooms" : "Huoneita enintään",
|
||||||
"Max. participants" : "Osallistujia enintään",
|
"Max. participants" : "Osallistujia enintään",
|
||||||
"Group …" : "Ryhmä…",
|
"Group …" : "Ryhmä…",
|
||||||
|
"All users" : "Kaikki käyttäjät",
|
||||||
|
"All" : "Kaikki",
|
||||||
"Settings saved" : "Asetukset tallennettu",
|
"Settings saved" : "Asetukset tallennettu",
|
||||||
"Unexpected error occurred" : "Tapahtui odottamaton virhe",
|
"Unexpected error occurred" : "Tapahtui odottamaton virhe",
|
||||||
"API URL is invalid" : "Rajapinnan URL on virheellinen",
|
"API URL is invalid" : "Rajapinnan URL on virheellinen",
|
||||||
"API secret is invalid" : "Rajapinnan salaisuus on virheellinen",
|
"API secret is invalid" : "Rajapinnan salaisuus on virheellinen",
|
||||||
"URL has to start with HTTPS" : "URL-osoitteen tulee alkaa HTTPS:llä",
|
"URL has to start with HTTPS" : "URL-osoitteen tulee alkaa HTTPS:llä"
|
||||||
"No rooms available!" : "Huoneita ei ole saatavilla!"
|
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
11
l10n/fi.json
11
l10n/fi.json
|
|
@ -16,6 +16,9 @@
|
||||||
"API URL or secret not configured. Please contact your administrator." : "Rajapinnan URL-osoitetta tai salaisuutta ei ole määritetty. Ota yhteys ylläpitäjään.",
|
"API URL or secret not configured. Please contact your administrator." : "Rajapinnan URL-osoitetta tai salaisuutta ei ole määritetty. Ota yhteys ylläpitäjään.",
|
||||||
"BigBlueButton Integration" : "BigBlueButton-integraatio",
|
"BigBlueButton Integration" : "BigBlueButton-integraatio",
|
||||||
"BigBlueButton integration for Nextcloud" : "BigBlueButton-integraatio Nextcloudiin",
|
"BigBlueButton integration for Nextcloud" : "BigBlueButton-integraatio Nextcloudiin",
|
||||||
|
"Loading…" : "Ladataan…",
|
||||||
|
"No rooms available!" : "Huoneita ei ole saatavilla!",
|
||||||
|
"Close" : "Sulje",
|
||||||
"Room not found" : "Huonetta ei löytynyt",
|
"Room not found" : "Huonetta ei löytynyt",
|
||||||
"The room could not be found. Maybe it was deleted?" : "Huonetta ei löytynyt. Kenties se poistettiin.",
|
"The room could not be found. Maybe it was deleted?" : "Huonetta ei löytynyt. Kenties se poistettiin.",
|
||||||
"Back to %s" : "Takaisin kohtaan %s",
|
"Back to %s" : "Takaisin kohtaan %s",
|
||||||
|
|
@ -40,6 +43,7 @@
|
||||||
"Group" : "Ryhmä",
|
"Group" : "Ryhmä",
|
||||||
"No matches" : "Ei täsmääviä",
|
"No matches" : "Ei täsmääviä",
|
||||||
"moderator" : "moderaattori",
|
"moderator" : "moderaattori",
|
||||||
|
"Server error" : "Palvelinvirhe",
|
||||||
"Name" : "Nimi",
|
"Name" : "Nimi",
|
||||||
"Access" : "Käyttöoikeudet",
|
"Access" : "Käyttöoikeudet",
|
||||||
"Max" : "Enintään",
|
"Max" : "Enintään",
|
||||||
|
|
@ -73,17 +77,18 @@
|
||||||
"Error" : "Virhe",
|
"Error" : "Virhe",
|
||||||
"Delete?" : "Poistetaanko?",
|
"Delete?" : "Poistetaanko?",
|
||||||
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
"Could not delete record" : "Tallennetta ei voitu poistaa",
|
||||||
"Server error" : "Palvelinvirhe",
|
|
||||||
"Start" : "Alku",
|
"Start" : "Alku",
|
||||||
"Loading" : "Ladataan",
|
"Loading" : "Ladataan",
|
||||||
|
"Group name" : "Ryhmän nimi",
|
||||||
"Max. rooms" : "Huoneita enintään",
|
"Max. rooms" : "Huoneita enintään",
|
||||||
"Max. participants" : "Osallistujia enintään",
|
"Max. participants" : "Osallistujia enintään",
|
||||||
"Group …" : "Ryhmä…",
|
"Group …" : "Ryhmä…",
|
||||||
|
"All users" : "Kaikki käyttäjät",
|
||||||
|
"All" : "Kaikki",
|
||||||
"Settings saved" : "Asetukset tallennettu",
|
"Settings saved" : "Asetukset tallennettu",
|
||||||
"Unexpected error occurred" : "Tapahtui odottamaton virhe",
|
"Unexpected error occurred" : "Tapahtui odottamaton virhe",
|
||||||
"API URL is invalid" : "Rajapinnan URL on virheellinen",
|
"API URL is invalid" : "Rajapinnan URL on virheellinen",
|
||||||
"API secret is invalid" : "Rajapinnan salaisuus on virheellinen",
|
"API secret is invalid" : "Rajapinnan salaisuus on virheellinen",
|
||||||
"URL has to start with HTTPS" : "URL-osoitteen tulee alkaa HTTPS:llä",
|
"URL has to start with HTTPS" : "URL-osoitteen tulee alkaa HTTPS:llä"
|
||||||
"No rooms available!" : "Huoneita ei ole saatavilla!"
|
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
23
l10n/fr.js
23
l10n/fr.js
|
|
@ -23,6 +23,15 @@ OC.L10N.register(
|
||||||
"BigBlueButton Integration" : "Intégration de BigBlueButton",
|
"BigBlueButton Integration" : "Intégration de BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Intégration de BigBlueButton pour Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Intégration de BigBlueButton pour 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Cette application permet de créer des réunions avec une installation externe de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuration de la salle** Créez plusieurs configurations de salle avec nom, message de bienvenue…\n* **Partager un lien invité** Partagez un lien de la salle avec tous vos invités\n* **Partager le lien du modérateur** Inviter des modérateurs dans la salle\n* **Partager des salles** Partagez des salles avec des membres, des groupes ou des cercles\n* **Présentation personnalisée** Démarrez une salle avec une présentation sélectionnée à partir de votre navigateur de fichiers\n* **Gérer les enregistrements** Affichez, partagez et supprimez les enregistrements de vos salles\n* **Restrictions** Restreindre la création de salles à certains groupes\n* **Activités** Obtenez un aperçu des activités de votre salle\n\nGuide de démarrage rapide et informations complémentaires dans notre [lisser moi](https://github.com/littleredbutton/cloud_bbb).\nAimez-vous cette application? Redonnez quelque chose à la communauté open source et consultez notre\n[façons de contribuer](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nLes contributeurs sont les bienvenus! Si vous avez le temps, ce serait génial si vous pouviez contribuer à améliorer cette application.\n\n*Cette application intègre BigBlueButton et n'est ni approuvée ni certifiée par BigBlueButton Inc. BigBlueButton et le logo BigBlueButton sont des marques commerciales 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Cette application permet de créer des réunions avec une installation externe de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuration de la salle** Créez plusieurs configurations de salle avec nom, message de bienvenue…\n* **Partager un lien invité** Partagez un lien de la salle avec tous vos invités\n* **Partager le lien du modérateur** Inviter des modérateurs dans la salle\n* **Partager des salles** Partagez des salles avec des membres, des groupes ou des cercles\n* **Présentation personnalisée** Démarrez une salle avec une présentation sélectionnée à partir de votre navigateur de fichiers\n* **Gérer les enregistrements** Affichez, partagez et supprimez les enregistrements de vos salles\n* **Restrictions** Restreindre la création de salles à certains groupes\n* **Activités** Obtenez un aperçu des activités de votre salle\n\nGuide de démarrage rapide et informations complémentaires dans notre [lisser moi](https://github.com/littleredbutton/cloud_bbb).\nAimez-vous cette application? Redonnez quelque chose à la communauté open source et consultez notre\n[façons de contribuer](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nLes contributeurs sont les bienvenus! Si vous avez le temps, ce serait génial si vous pouviez contribuer à améliorer cette application.\n\n*Cette application intègre BigBlueButton et n'est ni approuvée ni certifiée par BigBlueButton Inc. BigBlueButton et le logo BigBlueButton sont des marques commerciales de BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Envoyer vers BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Une erreur s'est produite lors de l'envoi du fichier à la salle.",
|
||||||
|
"Loading…" : "Chargement…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Veuillez sélectionner la salle dans laquelle vous voulez utiliser le fichier \"{filename}\".",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Seules les salles dont vous êtes l'un des administrateurs seront affichées.",
|
||||||
|
"Send to" : "Envoyer à",
|
||||||
|
"Start with" : "Démarrer avec",
|
||||||
|
"No rooms available!" : "Pas de salle disponible !",
|
||||||
|
"Close" : "Fermer",
|
||||||
"Room not found" : "Salle non trouvée",
|
"Room not found" : "Salle non trouvée",
|
||||||
"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",
|
||||||
|
|
@ -59,6 +68,8 @@ OC.L10N.register(
|
||||||
"admin" : "administrateur",
|
"admin" : "administrateur",
|
||||||
"moderator" : "modérateur",
|
"moderator" : "modérateur",
|
||||||
"user" : "utilisateur",
|
"user" : "utilisateur",
|
||||||
|
"Server error" : "Erreur serveur",
|
||||||
|
"unlimited" : "illimité",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accès",
|
"Access" : "Accès",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -115,19 +126,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer l'enregistrement du \"{startDate}\" ? Cette opération ne peut pas être annulée.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer l'enregistrement du \"{startDate}\" ? Cette opération ne peut pas être annulée.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
||||||
"Open room" : "Ouvrir la salle",
|
"Open room" : "Ouvrir la salle",
|
||||||
"Start" : "Démarrer",
|
"Start" : "Démarrer",
|
||||||
"Clone room" : "Cloner la salle",
|
"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.",
|
||||||
|
"Group name" : "Nom du groupe",
|
||||||
"Max. rooms" : "Nombre max. de salles",
|
"Max. rooms" : "Nombre max. de salles",
|
||||||
|
"Access options" : "Options d'accès",
|
||||||
"Max. participants" : "Nombre maximum de participants",
|
"Max. participants" : "Nombre maximum de participants",
|
||||||
"Group …" : "Groupe …",
|
"Group …" : "Groupe …",
|
||||||
"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." : "Les restrictions n'affectent pas les salles existantes. \"-1\" signifie que la valeur est illimitée. L'option la moins restrictive est choisie pour chaque utilisateur si plusieurs restrictions s'appliquent.",
|
"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." : "Les restrictions n'affectent pas les salles existantes. \"-1\" signifie que la valeur est illimitée. L'option la moins restrictive est choisie pour chaque utilisateur si plusieurs restrictions s'appliquent.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer les restrictions pour le groupe \"{name}\" ? Cette opération ne peut pas être annulée.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer les restrictions pour le groupe \"{name}\" ? Cette opération ne peut pas être annulée.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
||||||
|
"All users" : "Tous les utilisateurs",
|
||||||
|
"All" : "Tout",
|
||||||
"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",
|
||||||
|
|
@ -135,15 +149,10 @@ OC.L10N.register(
|
||||||
"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é.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Exemple de configuration pour Apache et Nginx",
|
||||||
"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 to" : "Envoyer à",
|
|
||||||
"Start with" : "Démarrer avec",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Veuillez sélectionner la salle dans laquelle vous voulez utiliser le fichier \"{filename}\".",
|
|
||||||
"No rooms available!" : "Pas de salle disponible !",
|
|
||||||
"Send to BBB" : "Envoyer vers 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._" : ["Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n seconde. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter."]
|
"_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._" : ["Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n seconde. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter."]
|
||||||
},
|
},
|
||||||
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||||
|
|
|
||||||
23
l10n/fr.json
23
l10n/fr.json
|
|
@ -21,6 +21,15 @@
|
||||||
"BigBlueButton Integration" : "Intégration de BigBlueButton",
|
"BigBlueButton Integration" : "Intégration de BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Intégration de BigBlueButton pour Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "Intégration de BigBlueButton pour 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Cette application permet de créer des réunions avec une installation externe de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuration de la salle** Créez plusieurs configurations de salle avec nom, message de bienvenue…\n* **Partager un lien invité** Partagez un lien de la salle avec tous vos invités\n* **Partager le lien du modérateur** Inviter des modérateurs dans la salle\n* **Partager des salles** Partagez des salles avec des membres, des groupes ou des cercles\n* **Présentation personnalisée** Démarrez une salle avec une présentation sélectionnée à partir de votre navigateur de fichiers\n* **Gérer les enregistrements** Affichez, partagez et supprimez les enregistrements de vos salles\n* **Restrictions** Restreindre la création de salles à certains groupes\n* **Activités** Obtenez un aperçu des activités de votre salle\n\nGuide de démarrage rapide et informations complémentaires dans notre [lisser moi](https://github.com/littleredbutton/cloud_bbb).\nAimez-vous cette application? Redonnez quelque chose à la communauté open source et consultez notre\n[façons de contribuer](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nLes contributeurs sont les bienvenus! Si vous avez le temps, ce serait génial si vous pouviez contribuer à améliorer cette application.\n\n*Cette application intègre BigBlueButton et n'est ni approuvée ni certifiée par BigBlueButton Inc. BigBlueButton et le logo BigBlueButton sont des marques commerciales 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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.*" : "Cette application permet de créer des réunions avec une installation externe de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuration de la salle** Créez plusieurs configurations de salle avec nom, message de bienvenue…\n* **Partager un lien invité** Partagez un lien de la salle avec tous vos invités\n* **Partager le lien du modérateur** Inviter des modérateurs dans la salle\n* **Partager des salles** Partagez des salles avec des membres, des groupes ou des cercles\n* **Présentation personnalisée** Démarrez une salle avec une présentation sélectionnée à partir de votre navigateur de fichiers\n* **Gérer les enregistrements** Affichez, partagez et supprimez les enregistrements de vos salles\n* **Restrictions** Restreindre la création de salles à certains groupes\n* **Activités** Obtenez un aperçu des activités de votre salle\n\nGuide de démarrage rapide et informations complémentaires dans notre [lisser moi](https://github.com/littleredbutton/cloud_bbb).\nAimez-vous cette application? Redonnez quelque chose à la communauté open source et consultez notre\n[façons de contribuer](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nLes contributeurs sont les bienvenus! Si vous avez le temps, ce serait génial si vous pouviez contribuer à améliorer cette application.\n\n*Cette application intègre BigBlueButton et n'est ni approuvée ni certifiée par BigBlueButton Inc. BigBlueButton et le logo BigBlueButton sont des marques commerciales de BigBlueButton Inc.*",
|
||||||
|
"Send to BBB" : "Envoyer vers BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Une erreur s'est produite lors de l'envoi du fichier à la salle.",
|
||||||
|
"Loading…" : "Chargement…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Veuillez sélectionner la salle dans laquelle vous voulez utiliser le fichier \"{filename}\".",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Seules les salles dont vous êtes l'un des administrateurs seront affichées.",
|
||||||
|
"Send to" : "Envoyer à",
|
||||||
|
"Start with" : "Démarrer avec",
|
||||||
|
"No rooms available!" : "Pas de salle disponible !",
|
||||||
|
"Close" : "Fermer",
|
||||||
"Room not found" : "Salle non trouvée",
|
"Room not found" : "Salle non trouvée",
|
||||||
"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",
|
||||||
|
|
@ -57,6 +66,8 @@
|
||||||
"admin" : "administrateur",
|
"admin" : "administrateur",
|
||||||
"moderator" : "modérateur",
|
"moderator" : "modérateur",
|
||||||
"user" : "utilisateur",
|
"user" : "utilisateur",
|
||||||
|
"Server error" : "Erreur serveur",
|
||||||
|
"unlimited" : "illimité",
|
||||||
"Name" : "Nom",
|
"Name" : "Nom",
|
||||||
"Access" : "Accès",
|
"Access" : "Accès",
|
||||||
"Max" : "Max",
|
"Max" : "Max",
|
||||||
|
|
@ -113,19 +124,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer l'enregistrement du \"{startDate}\" ? Cette opération ne peut pas être annulée.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer l'enregistrement du \"{startDate}\" ? Cette opération ne peut pas être annulée.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
"Could not modify publishing state" : "Impossible de modifier l'état de la publication",
|
||||||
"Open room" : "Ouvrir la salle",
|
"Open room" : "Ouvrir la salle",
|
||||||
"Start" : "Démarrer",
|
"Start" : "Démarrer",
|
||||||
"Clone room" : "Cloner la salle",
|
"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.",
|
||||||
|
"Group name" : "Nom du groupe",
|
||||||
"Max. rooms" : "Nombre max. de salles",
|
"Max. rooms" : "Nombre max. de salles",
|
||||||
|
"Access options" : "Options d'accès",
|
||||||
"Max. participants" : "Nombre maximum de participants",
|
"Max. participants" : "Nombre maximum de participants",
|
||||||
"Group …" : "Groupe …",
|
"Group …" : "Groupe …",
|
||||||
"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." : "Les restrictions n'affectent pas les salles existantes. \"-1\" signifie que la valeur est illimitée. L'option la moins restrictive est choisie pour chaque utilisateur si plusieurs restrictions s'appliquent.",
|
"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." : "Les restrictions n'affectent pas les salles existantes. \"-1\" signifie que la valeur est illimitée. L'option la moins restrictive est choisie pour chaque utilisateur si plusieurs restrictions s'appliquent.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer les restrictions pour le groupe \"{name}\" ? Cette opération ne peut pas être annulée.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Êtes-vous sûr de vouloir supprimer les restrictions pour le groupe \"{name}\" ? Cette opération ne peut pas être annulée.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
"Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?",
|
||||||
|
"All users" : "Tous les utilisateurs",
|
||||||
|
"All" : "Tout",
|
||||||
"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",
|
||||||
|
|
@ -133,15 +147,10 @@
|
||||||
"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é.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Exemple de configuration pour Apache et Nginx",
|
||||||
"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 to" : "Envoyer à",
|
|
||||||
"Start with" : "Démarrer avec",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Veuillez sélectionner la salle dans laquelle vous voulez utiliser le fichier \"{filename}\".",
|
|
||||||
"No rooms available!" : "Pas de salle disponible !",
|
|
||||||
"Send to BBB" : "Envoyer vers 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._" : ["Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n seconde. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter."]
|
"_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._" : ["Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n seconde. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter.","Cette salle n'est pas encore ouverte. Nous allons réessayer dans %n secondes. Veuillez patienter."]
|
||||||
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||||
}
|
}
|
||||||
23
l10n/ga.js
23
l10n/ga.js
|
|
@ -23,6 +23,15 @@ OC.L10N.register(
|
||||||
"BigBlueButton Integration" : "Comhtháthú BigBlueButton",
|
"BigBlueButton Integration" : "Comhtháthú BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Comhtháthú BigBlueButton do Nextcloud",
|
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md ).\n\nTá fáilte roimh rannpháirtithe! 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.*",
|
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md ).\n\nTá fáilte roimh rannpháirtithe! 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.*",
|
||||||
|
"Send to BBB" : "Seol chuig BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Tharla earráid agus an comhad á sheoladh chuig an seomra.",
|
||||||
|
"Loading…" : "Á lódáil…",
|
||||||
|
"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.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Ní thaispeánfar ach seomraí ina bhfuil tú i do riarthóir.",
|
||||||
|
"Send to" : "Sheoladh chuig",
|
||||||
|
"Start with" : "Tosaigh le",
|
||||||
|
"No rooms available!" : "Níl seomraí ar fáil!",
|
||||||
|
"Close" : "Dún",
|
||||||
"Room not found" : "Seomra gan aimsiú",
|
"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 é?",
|
"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",
|
"Back to %s" : "Ar ais go dtí %s",
|
||||||
|
|
@ -59,6 +68,8 @@ OC.L10N.register(
|
||||||
"admin" : "riar",
|
"admin" : "riar",
|
||||||
"moderator" : "modhnóir",
|
"moderator" : "modhnóir",
|
||||||
"user" : "úsáideoir",
|
"user" : "úsáideoir",
|
||||||
|
"Server error" : "Earráid freastalaí",
|
||||||
|
"unlimited" : "gan teorainn",
|
||||||
"Name" : "Ainm",
|
"Name" : "Ainm",
|
||||||
"Access" : "Rochtain",
|
"Access" : "Rochtain",
|
||||||
"Max" : "Uas",
|
"Max" : "Uas",
|
||||||
|
|
@ -115,19 +126,22 @@ OC.L10N.register(
|
||||||
"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ú.",
|
"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?",
|
"Delete?" : "Scrios?",
|
||||||
"Could not delete record" : "Níorbh fhéidir an taifead a scriosadh",
|
"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ú",
|
"Could not modify publishing state" : "Níorbh fhéidir an stát foilsitheoireachta a mhodhnú",
|
||||||
"Open room" : "Seomra oscailte",
|
"Open room" : "Seomra oscailte",
|
||||||
"Start" : "Tosaigh",
|
"Start" : "Tosaigh",
|
||||||
"Clone room" : "Seomra clón",
|
"Clone room" : "Seomra clón",
|
||||||
"Loading" : "Ag lódáil",
|
"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.",
|
"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.",
|
||||||
|
"Group name" : "Ainm an ghrúpa",
|
||||||
"Max. rooms" : "uas. seomraí",
|
"Max. rooms" : "uas. seomraí",
|
||||||
|
"Access options" : "Roghanna rochtana",
|
||||||
"Max. participants" : "Uas. rannpháirtithe",
|
"Max. participants" : "Uas. rannpháirtithe",
|
||||||
"Group …" : "Grúpa…",
|
"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.",
|
"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ú.",
|
"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}\"?",
|
"Delete restrictions for \"{name}\"?" : "Scrios srianta do \"{name}\"?",
|
||||||
|
"All users" : "Gach úsáideoir",
|
||||||
|
"All" : "Gach",
|
||||||
"Settings saved" : "Socruithe sábháilte",
|
"Settings saved" : "Socruithe sábháilte",
|
||||||
"Unexpected error occurred" : "Tharla earráid gan choinne",
|
"Unexpected error occurred" : "Tharla earráid gan choinne",
|
||||||
"API URL is invalid" : "Tá URL API neamhbhailí",
|
"API URL is invalid" : "Tá URL API neamhbhailí",
|
||||||
|
|
@ -135,15 +149,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "Caithfidh URL tosú le HTTPS",
|
"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 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.",
|
"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.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Cumraíocht shamplach le haghaidh Apache agus Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Uaslódáladh an comhad \"{filename}\" chuig do sheomra.",
|
"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." : "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.",
|
"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."]
|
"_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);");
|
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");
|
||||||
|
|
|
||||||
23
l10n/ga.json
23
l10n/ga.json
|
|
@ -21,6 +21,15 @@
|
||||||
"BigBlueButton Integration" : "Comhtháthú BigBlueButton",
|
"BigBlueButton Integration" : "Comhtháthú BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "Comhtháthú BigBlueButton do Nextcloud",
|
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md ).\n\nTá fáilte roimh rannpháirtithe! 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.*",
|
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md ).\n\nTá fáilte roimh rannpháirtithe! 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.*",
|
||||||
|
"Send to BBB" : "Seol chuig BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Tharla earráid agus an comhad á sheoladh chuig an seomra.",
|
||||||
|
"Loading…" : "Á lódáil…",
|
||||||
|
"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.",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Ní thaispeánfar ach seomraí ina bhfuil tú i do riarthóir.",
|
||||||
|
"Send to" : "Sheoladh chuig",
|
||||||
|
"Start with" : "Tosaigh le",
|
||||||
|
"No rooms available!" : "Níl seomraí ar fáil!",
|
||||||
|
"Close" : "Dún",
|
||||||
"Room not found" : "Seomra gan aimsiú",
|
"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 é?",
|
"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",
|
"Back to %s" : "Ar ais go dtí %s",
|
||||||
|
|
@ -57,6 +66,8 @@
|
||||||
"admin" : "riar",
|
"admin" : "riar",
|
||||||
"moderator" : "modhnóir",
|
"moderator" : "modhnóir",
|
||||||
"user" : "úsáideoir",
|
"user" : "úsáideoir",
|
||||||
|
"Server error" : "Earráid freastalaí",
|
||||||
|
"unlimited" : "gan teorainn",
|
||||||
"Name" : "Ainm",
|
"Name" : "Ainm",
|
||||||
"Access" : "Rochtain",
|
"Access" : "Rochtain",
|
||||||
"Max" : "Uas",
|
"Max" : "Uas",
|
||||||
|
|
@ -113,19 +124,22 @@
|
||||||
"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ú.",
|
"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?",
|
"Delete?" : "Scrios?",
|
||||||
"Could not delete record" : "Níorbh fhéidir an taifead a scriosadh",
|
"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ú",
|
"Could not modify publishing state" : "Níorbh fhéidir an stát foilsitheoireachta a mhodhnú",
|
||||||
"Open room" : "Seomra oscailte",
|
"Open room" : "Seomra oscailte",
|
||||||
"Start" : "Tosaigh",
|
"Start" : "Tosaigh",
|
||||||
"Clone room" : "Seomra clón",
|
"Clone room" : "Seomra clón",
|
||||||
"Loading" : "Ag lódáil",
|
"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.",
|
"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.",
|
||||||
|
"Group name" : "Ainm an ghrúpa",
|
||||||
"Max. rooms" : "uas. seomraí",
|
"Max. rooms" : "uas. seomraí",
|
||||||
|
"Access options" : "Roghanna rochtana",
|
||||||
"Max. participants" : "Uas. rannpháirtithe",
|
"Max. participants" : "Uas. rannpháirtithe",
|
||||||
"Group …" : "Grúpa…",
|
"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.",
|
"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ú.",
|
"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}\"?",
|
"Delete restrictions for \"{name}\"?" : "Scrios srianta do \"{name}\"?",
|
||||||
|
"All users" : "Gach úsáideoir",
|
||||||
|
"All" : "Gach",
|
||||||
"Settings saved" : "Socruithe sábháilte",
|
"Settings saved" : "Socruithe sábháilte",
|
||||||
"Unexpected error occurred" : "Tharla earráid gan choinne",
|
"Unexpected error occurred" : "Tharla earráid gan choinne",
|
||||||
"API URL is invalid" : "Tá URL API neamhbhailí",
|
"API URL is invalid" : "Tá URL API neamhbhailí",
|
||||||
|
|
@ -133,15 +147,10 @@
|
||||||
"URL has to start with HTTPS" : "Caithfidh URL tosú le HTTPS",
|
"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 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.",
|
"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.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Cumraíocht shamplach le haghaidh Apache agus Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "Uaslódáladh an comhad \"{filename}\" chuig do sheomra.",
|
"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." : "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.",
|
"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."]
|
"_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);"
|
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"bbb",
|
"bbb",
|
||||||
{
|
{
|
||||||
|
"Loading…" : "’Ga luchdadh…",
|
||||||
|
"Close" : "Dùin",
|
||||||
"Save" : "Sàbhail",
|
"Save" : "Sàbhail",
|
||||||
"Community" : "Coimhearsnachd",
|
"Community" : "Coimhearsnachd",
|
||||||
"Password" : "Facal-faire",
|
"Password" : "Facal-faire",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
{ "translations": {
|
{ "translations": {
|
||||||
|
"Loading…" : "’Ga luchdadh…",
|
||||||
|
"Close" : "Dùin",
|
||||||
"Save" : "Sàbhail",
|
"Save" : "Sàbhail",
|
||||||
"Community" : "Coimhearsnachd",
|
"Community" : "Coimhearsnachd",
|
||||||
"Password" : "Facal-faire",
|
"Password" : "Facal-faire",
|
||||||
|
|
|
||||||
30
l10n/gl.js
30
l10n/gl.js
|
|
@ -23,6 +23,15 @@ OC.L10N.register(
|
||||||
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 desde 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nAgradecemos a chegada de colaboradores! Se ten tempo, sería magnífico 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 desde 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nAgradecemos a chegada de colaboradores! Se ten tempo, sería magnífico 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.*",
|
||||||
|
"Send to BBB" : "Enviar a BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Produciuse un erro ao enviar o ficheiro á sala.",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione a sala na que quere usar o ficheiro «{filename}».",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Só se amosarán as salas nas que vostede é parte da administración.",
|
||||||
|
"Send to" : "Enviar a",
|
||||||
|
"Start with" : "Iniciar con",
|
||||||
|
"No rooms available!" : "Non hai salas dispoñíbeis!",
|
||||||
|
"Close" : "Pechar",
|
||||||
"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",
|
||||||
|
|
@ -59,12 +68,14 @@ OC.L10N.register(
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
"user" : "usuario",
|
"user" : "usuario",
|
||||||
|
"Server error" : "Produciuse un erro de servidor",
|
||||||
|
"unlimited" : "sen límites",
|
||||||
"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 permisos para crear unha sala",
|
"You are not permitted to create a room." : "Vde. 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",
|
||||||
|
|
@ -72,6 +83,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.",
|
||||||
|
"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ó poden unirse os usuarios 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.",
|
||||||
|
|
@ -93,7 +105,7 @@ 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 enmudecido",
|
"Join meeting muted" : "Unirse á xuntanza silenciado",
|
||||||
"Room name" : "Nome da sala",
|
"Room name" : "Nome da sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Published" : "Publicado",
|
"Published" : "Publicado",
|
||||||
|
|
@ -114,19 +126,22 @@ OC.L10N.register(
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Confirma que quere eliminar a gravación de «{startDate}»? Non é posíbel desfacer esta operación.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Confirma que quere eliminar a gravación de «{startDate}»? Non é posíbel desfacer esta operación.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
||||||
"Open room" : "Sala aberta",
|
"Open room" : "Sala aberta",
|
||||||
"Start" : "Iniciar",
|
"Start" : "Iniciar",
|
||||||
"Clone room" : "Clonar a sala",
|
"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." : "Vde. non ten permiso para cambiar esta opción, porque esta é unha sala compartida con Vde.",
|
||||||
|
"Group name" : "Nome do grupo",
|
||||||
"Max. rooms" : "Máx. de salas",
|
"Max. rooms" : "Máx. de salas",
|
||||||
|
"Access options" : "Opcións de acceso",
|
||||||
"Max. participants" : "Máx. de participantes",
|
"Max. participants" : "Máx. de participantes",
|
||||||
"Group …" : "Grupo…",
|
"Group …" : "Grupo…",
|
||||||
"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." : "As restricións non afectan ás salas existentes. Menos un significa que o valor é ilimitado. De aplicarse varias restricións, escollese a opción menos restritiva para cada usuario.",
|
"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." : "As restricións non afectan ás salas existentes. Menos un significa que o valor é ilimitado. De aplicarse varias restricións, escollese a opción menos restritiva para cada usuario.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Confirma que quere eliminar as restricións do grupo «{name}»? Non é posíbel desfacer esta operación.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Confirma que quere eliminar as restricións do grupo «{name}»? Non é posíbel desfacer esta operación.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Quere eliminar as restricións de «{name}»?",
|
"Delete restrictions for \"{name}\"?" : "Quere eliminar as restricións de «{name}»?",
|
||||||
|
"All users" : "Todos os usuarios",
|
||||||
|
"All" : "Todo",
|
||||||
"Settings saved" : "Axustes gardados",
|
"Settings saved" : "Axustes gardados",
|
||||||
"Unexpected error occurred" : "Produciuse un erro non agardado",
|
"Unexpected error occurred" : "Produciuse un erro non agardado",
|
||||||
"API URL is invalid" : "O URL da API é incorrecto",
|
"API URL is invalid" : "O URL da API é incorrecto",
|
||||||
|
|
@ -134,15 +149,10 @@ OC.L10N.register(
|
||||||
"URL has to start with HTTPS" : "O URL ten que comezar con HTTPS",
|
"URL has to start with HTTPS" : "O URL ten que comezar con HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "O URL ten que conter o marcador de substitución {token}",
|
"URL has to contain the {token} placeholder" : "O URL ten que conter o marcador de substitución {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "O URL ten que comezar con https:// e conter {token}. Ademais pódese usar o marcador de substitución de {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "O URL ten que comezar con https:// e conter {token}. Ademais pódese usar o marcador de substitución de {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Exemplo de configuración para Apache e Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "O ficheiro «{filename}» foi enviado á súa sala.",
|
"The file \"{filename}\" was uploaded to your room." : "O ficheiro «{filename}» foi enviado á súa sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala. Quizais o seu servidor BigBlueButton non admita esta acción.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala. Quizais o seu servidor BigBlueButton non admita esta acción.",
|
||||||
"Send file to BBB" : "Enviar o ficheiro a BBB",
|
|
||||||
"Send to" : "Enviar a",
|
|
||||||
"Start with" : "Iniciar con",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione a sala na que quere usar o ficheiro «{filename}».",
|
|
||||||
"No rooms available!" : "Non hai salas dispoñíbeis!",
|
|
||||||
"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 aínda non está aberta. Tentarémolo de novo en %n segundo. Agarde.","Esta sala aínda non está aberta. Tentarémolo de novo en %n segundos. Agarde."]
|
"_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 aínda non está aberta. Tentarémolo de novo en %n segundo. Agarde.","Esta sala aínda non está aberta. Tentarémolo de novo en %n segundos. Agarde."]
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|
|
||||||
30
l10n/gl.json
30
l10n/gl.json
|
|
@ -21,6 +21,15 @@
|
||||||
"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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 desde 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nAgradecemos a chegada de colaboradores! Se ten tempo, sería magnífico 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nContributors are welcome! 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 desde 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/littleredbutton/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/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nAgradecemos a chegada de colaboradores! Se ten tempo, sería magnífico 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.*",
|
||||||
|
"Send to BBB" : "Enviar a BBB",
|
||||||
|
"An error occurred while sending the file to the room." : "Produciuse un erro ao enviar o ficheiro á sala.",
|
||||||
|
"Loading…" : "Cargando…",
|
||||||
|
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione a sala na que quere usar o ficheiro «{filename}».",
|
||||||
|
"Only rooms for which you are one of the administrators will be displayed." : "Só se amosarán as salas nas que vostede é parte da administración.",
|
||||||
|
"Send to" : "Enviar a",
|
||||||
|
"Start with" : "Iniciar con",
|
||||||
|
"No rooms available!" : "Non hai salas dispoñíbeis!",
|
||||||
|
"Close" : "Pechar",
|
||||||
"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",
|
||||||
|
|
@ -57,12 +66,14 @@
|
||||||
"admin" : "admin",
|
"admin" : "admin",
|
||||||
"moderator" : "moderador",
|
"moderator" : "moderador",
|
||||||
"user" : "usuario",
|
"user" : "usuario",
|
||||||
|
"Server error" : "Produciuse un erro de servidor",
|
||||||
|
"unlimited" : "sen límites",
|
||||||
"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 permisos para crear unha sala",
|
"You are not permitted to create a room." : "Vde. 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",
|
||||||
|
|
@ -70,6 +81,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.",
|
||||||
|
"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ó poden unirse os usuarios 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.",
|
||||||
|
|
@ -91,7 +103,7 @@
|
||||||
"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 enmudecido",
|
"Join meeting muted" : "Unirse á xuntanza silenciado",
|
||||||
"Room name" : "Nome da sala",
|
"Room name" : "Nome da sala",
|
||||||
"Create" : "Crear",
|
"Create" : "Crear",
|
||||||
"Published" : "Publicado",
|
"Published" : "Publicado",
|
||||||
|
|
@ -112,19 +124,22 @@
|
||||||
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Confirma que quere eliminar a gravación de «{startDate}»? Non é posíbel desfacer esta operación.",
|
"Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Confirma que quere eliminar a gravación de «{startDate}»? Non é posíbel desfacer esta operación.",
|
||||||
"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",
|
|
||||||
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
"Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación",
|
||||||
"Open room" : "Sala aberta",
|
"Open room" : "Sala aberta",
|
||||||
"Start" : "Iniciar",
|
"Start" : "Iniciar",
|
||||||
"Clone room" : "Clonar a sala",
|
"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." : "Vde. non ten permiso para cambiar esta opción, porque esta é unha sala compartida con Vde.",
|
||||||
|
"Group name" : "Nome do grupo",
|
||||||
"Max. rooms" : "Máx. de salas",
|
"Max. rooms" : "Máx. de salas",
|
||||||
|
"Access options" : "Opcións de acceso",
|
||||||
"Max. participants" : "Máx. de participantes",
|
"Max. participants" : "Máx. de participantes",
|
||||||
"Group …" : "Grupo…",
|
"Group …" : "Grupo…",
|
||||||
"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." : "As restricións non afectan ás salas existentes. Menos un significa que o valor é ilimitado. De aplicarse varias restricións, escollese a opción menos restritiva para cada usuario.",
|
"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." : "As restricións non afectan ás salas existentes. Menos un significa que o valor é ilimitado. De aplicarse varias restricións, escollese a opción menos restritiva para cada usuario.",
|
||||||
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Confirma que quere eliminar as restricións do grupo «{name}»? Non é posíbel desfacer esta operación.",
|
"Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "Confirma que quere eliminar as restricións do grupo «{name}»? Non é posíbel desfacer esta operación.",
|
||||||
"Delete restrictions for \"{name}\"?" : "Quere eliminar as restricións de «{name}»?",
|
"Delete restrictions for \"{name}\"?" : "Quere eliminar as restricións de «{name}»?",
|
||||||
|
"All users" : "Todos os usuarios",
|
||||||
|
"All" : "Todo",
|
||||||
"Settings saved" : "Axustes gardados",
|
"Settings saved" : "Axustes gardados",
|
||||||
"Unexpected error occurred" : "Produciuse un erro non agardado",
|
"Unexpected error occurred" : "Produciuse un erro non agardado",
|
||||||
"API URL is invalid" : "O URL da API é incorrecto",
|
"API URL is invalid" : "O URL da API é incorrecto",
|
||||||
|
|
@ -132,15 +147,10 @@
|
||||||
"URL has to start with HTTPS" : "O URL ten que comezar con HTTPS",
|
"URL has to start with HTTPS" : "O URL ten que comezar con HTTPS",
|
||||||
"URL has to contain the {token} placeholder" : "O URL ten que conter o marcador de substitución {token}",
|
"URL has to contain the {token} placeholder" : "O URL ten que conter o marcador de substitución {token}",
|
||||||
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "O URL ten que comezar con https:// e conter {token}. Ademais pódese usar o marcador de substitución de {user}.",
|
"URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "O URL ten que comezar con https:// e conter {token}. Ademais pódese usar o marcador de substitución de {user}.",
|
||||||
|
"Example configuration for Apache and Nginx" : "Exemplo de configuración para Apache e Nginx",
|
||||||
"The file \"{filename}\" was uploaded to your room." : "O ficheiro «{filename}» foi enviado á súa sala.",
|
"The file \"{filename}\" was uploaded to your room." : "O ficheiro «{filename}» foi enviado á súa sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala.",
|
"The file \"{filename}\" could not be uploaded to your room." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala.",
|
||||||
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala. Quizais o seu servidor BigBlueButton non admita esta acción.",
|
"The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Non foi posíbel enviar o ficheiro «{filename}» á súa sala. Quizais o seu servidor BigBlueButton non admita esta acción.",
|
||||||
"Send file to BBB" : "Enviar o ficheiro a BBB",
|
|
||||||
"Send to" : "Enviar a",
|
|
||||||
"Start with" : "Iniciar con",
|
|
||||||
"Please select the room in which you like to use the file \"{filename}\"." : "Seleccione a sala na que quere usar o ficheiro «{filename}».",
|
|
||||||
"No rooms available!" : "Non hai salas dispoñíbeis!",
|
|
||||||
"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 aínda non está aberta. Tentarémolo de novo en %n segundo. Agarde.","Esta sala aínda non está aberta. Tentarémolo de novo en %n segundos. Agarde."]
|
"_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 aínda non está aberta. Tentarémolo de novo en %n segundo. Agarde.","Esta sala aínda non está aberta. Tentarémolo de novo en %n segundos. Agarde."]
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
|
|
@ -4,6 +4,8 @@ OC.L10N.register(
|
||||||
"Public" : "ציבורי",
|
"Public" : "ציבורי",
|
||||||
"BigBlueButton Integration" : "שילוב עם BigBlueButton",
|
"BigBlueButton Integration" : "שילוב עם BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "שילוב של BigBlueButton עם Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "שילוב של BigBlueButton עם Nextcloud",
|
||||||
|
"Loading…" : "בטעינה…",
|
||||||
|
"Close" : "סגירה",
|
||||||
"Back to %s" : "חזרה אל %s",
|
"Back to %s" : "חזרה אל %s",
|
||||||
"API secret" : "סוד API",
|
"API secret" : "סוד API",
|
||||||
"Save" : "שמור",
|
"Save" : "שמור",
|
||||||
|
|
@ -17,6 +19,8 @@ OC.L10N.register(
|
||||||
"Hello %s" : "שלום %s",
|
"Hello %s" : "שלום %s",
|
||||||
"Group" : "קבוצה",
|
"Group" : "קבוצה",
|
||||||
"moderator" : "מפקח/ת",
|
"moderator" : "מפקח/ת",
|
||||||
|
"Server error" : "שגיאת שרת",
|
||||||
|
"unlimited" : "ללא הגבלה",
|
||||||
"Name" : "שם",
|
"Name" : "שם",
|
||||||
"Access" : "גישה",
|
"Access" : "גישה",
|
||||||
"Max" : "מרבי",
|
"Max" : "מרבי",
|
||||||
|
|
@ -41,9 +45,10 @@ OC.L10N.register(
|
||||||
"URL to presentation could not be stored." : "לא ניתן לאחסן את הכתובת למצגת.",
|
"URL to presentation could not be stored." : "לא ניתן לאחסן את הכתובת למצגת.",
|
||||||
"Delete?" : "למחוק?",
|
"Delete?" : "למחוק?",
|
||||||
"Could not delete record" : "לא ניתן למחוק רשומה",
|
"Could not delete record" : "לא ניתן למחוק רשומה",
|
||||||
"Server error" : "שגיאת שרת",
|
|
||||||
"Start" : "התחלה",
|
"Start" : "התחלה",
|
||||||
"Loading" : "בטעינה",
|
"Loading" : "בטעינה",
|
||||||
|
"Group name" : "שם קבוצה",
|
||||||
|
"All" : "הכול",
|
||||||
"Settings saved" : "הגדרות נשמרו",
|
"Settings saved" : "הגדרות נשמרו",
|
||||||
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
||||||
"API secret is invalid" : "סוד ה־API שגוי"
|
"API secret is invalid" : "סוד ה־API שגוי"
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@
|
||||||
"Public" : "ציבורי",
|
"Public" : "ציבורי",
|
||||||
"BigBlueButton Integration" : "שילוב עם BigBlueButton",
|
"BigBlueButton Integration" : "שילוב עם BigBlueButton",
|
||||||
"BigBlueButton integration for Nextcloud" : "שילוב של BigBlueButton עם Nextcloud",
|
"BigBlueButton integration for Nextcloud" : "שילוב של BigBlueButton עם Nextcloud",
|
||||||
|
"Loading…" : "בטעינה…",
|
||||||
|
"Close" : "סגירה",
|
||||||
"Back to %s" : "חזרה אל %s",
|
"Back to %s" : "חזרה אל %s",
|
||||||
"API secret" : "סוד API",
|
"API secret" : "סוד API",
|
||||||
"Save" : "שמור",
|
"Save" : "שמור",
|
||||||
|
|
@ -15,6 +17,8 @@
|
||||||
"Hello %s" : "שלום %s",
|
"Hello %s" : "שלום %s",
|
||||||
"Group" : "קבוצה",
|
"Group" : "קבוצה",
|
||||||
"moderator" : "מפקח/ת",
|
"moderator" : "מפקח/ת",
|
||||||
|
"Server error" : "שגיאת שרת",
|
||||||
|
"unlimited" : "ללא הגבלה",
|
||||||
"Name" : "שם",
|
"Name" : "שם",
|
||||||
"Access" : "גישה",
|
"Access" : "גישה",
|
||||||
"Max" : "מרבי",
|
"Max" : "מרבי",
|
||||||
|
|
@ -39,9 +43,10 @@
|
||||||
"URL to presentation could not be stored." : "לא ניתן לאחסן את הכתובת למצגת.",
|
"URL to presentation could not be stored." : "לא ניתן לאחסן את הכתובת למצגת.",
|
||||||
"Delete?" : "למחוק?",
|
"Delete?" : "למחוק?",
|
||||||
"Could not delete record" : "לא ניתן למחוק רשומה",
|
"Could not delete record" : "לא ניתן למחוק רשומה",
|
||||||
"Server error" : "שגיאת שרת",
|
|
||||||
"Start" : "התחלה",
|
"Start" : "התחלה",
|
||||||
"Loading" : "בטעינה",
|
"Loading" : "בטעינה",
|
||||||
|
"Group name" : "שם קבוצה",
|
||||||
|
"All" : "הכול",
|
||||||
"Settings saved" : "הגדרות נשמרו",
|
"Settings saved" : "הגדרות נשמרו",
|
||||||
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
"Unexpected error occurred" : "אירעה שגיאה בלתי צפויה",
|
||||||
"API secret is invalid" : "סוד ה־API שגוי"
|
"API secret is invalid" : "סוד ה־API שגוי"
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue