diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 284ce66..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -ko_fi: sualko diff --git a/.github/contributing.md b/.github/contributing.md index ec922b4..0e718a7 100644 --- a/.github/contributing.md +++ b/.github/contributing.md @@ -28,12 +28,13 @@ feature request and follow the guidelines below: Every code contribution is considered valuable, independent from there size and small changes can also be contributed directly via Github: -1. Browse to the desired file via - [Github](https://github.com/sualko/cloud_bbb/). +1. Browse to the desired file via [Github]. 2. Click on the :pencil2: on the top right corner of the file. 3. Make your changes. 4. Add a meaning full commit message, prefixed with either `fix:` or `feat:` - (e.g. `fix: room recordings`). + (e.g. `fix: room recordings`).
+*type must be one of 'l10n', 'release', 'build', 'ci', 'chore', 'docs', 'feat' +, 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'example'* 5. Submit your changes. If you want to contribute larger changes, we recommend the following approach @@ -62,8 +63,7 @@ If you like to sponsor a specific feature, bug fix or the project in general you can also contact any maintainer of this application to support open source development. -[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/sualko) - -[open a new issue]: https://github.com/sualko/cloud_bbb/issues +[Github]: https://github.com/littleredbutton/cloud_bbb/ +[open a new issue]: https://github.com/littleredbutton/cloud_bbb/issues [Conventional Commits]: https://www.conventionalcommits.org -[Nextclouds Transifex]: https://www.transifex.com/nextcloud/nextcloud/ \ No newline at end of file +[Nextclouds Transifex]: https://app.transifex.com/nextcloud/nextcloud/bbb/ diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d6a1a42..1a700a2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: [7.4, 8.0, 8.1] + php-versions: [8.0, 8.1, 8.2] name: php${{ matrix.php-versions }} lint steps: - name: Checkout diff --git a/.github/workflows/php-test.yml b/.github/workflows/php-test.yml index 206c4e6..87d16a0 100644 --- a/.github/workflows/php-test.yml +++ b/.github/workflows/php-test.yml @@ -11,13 +11,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.4', '8'] - nextcloud-versions: ['stable25', 'stable26', 'stable27'] + php-versions: ['8.0', '8.1', '8.2'] + nextcloud-versions: ['stable26', 'stable27', 'stable28', 'stable29', 'stable30'] exclude: - - php-versions: '7.4' - nextcloud-versions: 'stable26' - - php-versions: '7.4' - nextcloud-versions: 'stable27' + - php-versions: '8.0' + nextcloud-versions: 'stable30' name: php${{ matrix.php-versions }} on ${{ matrix.nextcloud-versions }} unit tests env: CI: true @@ -47,4 +45,4 @@ jobs: run: php -f nextcloud/occ app:enable bbb - name: Run tests working-directory: nextcloud/apps/bbb - run: composer run test \ No newline at end of file + run: composer run test diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 96cd02e..84b6534 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -6,7 +6,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ocp-version: [ 'dev-stable27', 'dev-stable26', 'dev-stable25' ] + ocp-version: [ "^30", "^29", '^28', '^27', '^26'] + include: + - psrcontainer: "psr/container" + - psrcontainer: "psr/container:^1.1.2" + ocp-version: '^26' name: Nextcloud ${{ matrix.ocp-version }} steps: - name: Checkout @@ -21,7 +25,7 @@ jobs: - name: Install dependencies run: composer i - name: Install dependencies - run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} psr/container symfony/service-contracts + run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} ${{ matrix.psrcontainer }} symfony/service-contracts - name: Run coding standards check run: composer run psalm diff --git a/CHANGELOG.md b/CHANGELOG.md index d62a024..d558c32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,66 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## 2.7.3 (2024-12-03) +### Added + +- missing icon and adapt dialog style to NC30 by @smarinier in [#304](https://github.com/littleredbutton/cloud_bbb/pull/304) + +### Changed + +- readme, screenshots and project files. by @smarinier in [#300](https://github.com/littleredbutton/cloud_bbb/pull/300) +- remove NC25 support by @smarinier in [#302](https://github.com/littleredbutton/cloud_bbb/pull/302) + +### Fix + +- max number of rooms shloud take only owned rooms in account by @smarinier in [#296](https://github.com/littleredbutton/cloud_bbb/pull/296) +- admin interface displays groups gid instead of displayname by @smarinier in [#295](https://github.com/littleredbutton/cloud_bbb/pull/295) +- style lint warnings and typescript compiler need upgrade by @smarinier in [#294](https://github.com/littleredbutton/cloud_bbb/pull/294) + +### Misc + +- psalm github actions by @smarinier in [#298](https://github.com/littleredbutton/cloud_bbb/pull/298) +- update php versions for tests in github actions by @smarinier in [#297](https://github.com/littleredbutton/cloud_bbb/pull/297) +- expose app capabilities by @smarinier in [#293](https://github.com/littleredbutton/cloud_bbb/pull/293) +- make clean-dev and release:build by @smarinier in [#303](https://github.com/littleredbutton/cloud_bbb/pull/303) +- psalm bump 5.0 by @smarinier in [#301](https://github.com/littleredbutton/cloud_bbb/pull/301) +- Release/2.7.3 by @smarinier in [#307](https://github.com/littleredbutton/cloud_bbb/pull/307) + +## 2.7.2 (2024-10-08) +### Misc +- rebuild frontend client +- update dependencies +- update translations + +## 2.7.1 (2024-09-18) +### Misc +- fix composer install in build script +- remove deprecated simple-git import + +## 2.7.0 (2024-09-15) +### Added +- sharing rooms with moderators and users +- manage view of rooms for moderators and users +- videos for all users and moderators +- sharing rooms with moderators and users +- manage view of rooms for moderators and users +- videos for all users and moderators +- videos for all users and moderators +- sharing rooms with moderators and users +- manage view of rooms for moderators and users +- list all shared rooms for users and moderators + +### Fixed +- no clone action for non-admin +- bug with name of shared groups +- don't use backticks +- add missing translations +- use querybuilder for user comparison + +### Misc +- respect tabs +- disabled checkbox + ## 2.6.0 (2024-04-28) ### Added - add Search Provider diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 4de8d61..0913e2b 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at klaus@jsxc.org. All +reported by contacting the project team at cloud_bbb@arawa.fr or web form [contact]. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. @@ -71,6 +71,7 @@ This Code of Conduct is adapted from the [Contributor Covenant][homepage], versi available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org +[contact]: https://www.arawa.fr/contact/ For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq \ No newline at end of file +https://www.contributor-covenant.org/faq diff --git a/Makefile b/Makefile index 8eac52e..d831184 100644 --- a/Makefile +++ b/Makefile @@ -62,8 +62,11 @@ clean: clean-dev: rm -rf node_modules + git checkout composer.json + git checkout composer.lock + rm -rf vendor -pack: +pack: install-composer-deps mkdir -p archive tar --exclude='./Makefile' --exclude='./webpack*' --exclude='./.*' --exclude='./ts' --exclude='./tests' --exclude='./node_modules' --exclude='./archive' -zcvf ./archive/cloud_bbb.tar.gz . --transform s/^./bbb/ diff --git a/README.md b/README.md index ee22e50..493b2ff 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,18 @@ # BigBlueButton™ integration for Nextcloud -![Static analysis](https://github.com/sualko/cloud_bbb/workflows/Static%20analysis/badge.svg) -![PHP Tests](https://github.com/sualko/cloud_bbb/workflows/PHP%20Tests/badge.svg) -![Lint](https://github.com/sualko/cloud_bbb/workflows/Lint/badge.svg) -![Downloads](https://img.shields.io/github/downloads/sualko/cloud_bbb/total.svg) -![GitHub release](https://img.shields.io/github/release/sualko/cloud_bbb.svg) - -[![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/sualko) +![Static analysis](https://github.com/littleredbutton/cloud_bbb/workflows/Static%20analysis/badge.svg) +![PHP Tests](https://github.com/littleredbutton/cloud_bbb/workflows/PHP%20Tests/badge.svg) +![Lint](https://github.com/littleredbutton/cloud_bbb/workflows/Lint/badge.svg) +![Downloads](https://img.shields.io/github/downloads/littleredbutton/cloud_bbb/total.svg) +![GitHub release](https://img.shields.io/github/release/littleredbutton/cloud_bbb.svg) This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org). -:clap: Developer wanted! If you have time it would be awesome if you could help to enhance this application. +:clap: Contributors are welcome! If you have time it would be awesome if you could help to enhance this application. __This app uses BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.__ -![Screenshot configuration](https://github.com/sualko/cloud_bbb/raw/master/docs/screenshot-configuration.png) +![Screenshot configuration](https://github.com/littleredbutton/cloud_bbb/raw/master/docs/screenshot-configuration.png) ## :heart_eyes: Features This integration provides the following features: @@ -37,7 +35,7 @@ To install it change into your Nextcloud's apps directory: Then run: - git clone https://github.com/sualko/cloud_bbb.git bbb + git clone https://github.com/littleredbutton/cloud_bbb.git bbb Then install the dependencies using: @@ -61,7 +59,7 @@ $ sudo bbb-conf --secret Enter these values in the additional settings section on the admin configuration page of your Nextcloud instance. -![Screenshot admin section](https://github.com/sualko/cloud_bbb/raw/master/docs/screenshot-admin.png) +![Screenshot admin section](https://github.com/littleredbutton/cloud_bbb/raw/master/docs/screenshot-admin.png) ### Manual configuration (for experts) If you prefer not to use the web interface for configuration, you will find all @@ -123,14 +121,11 @@ command (example use: `./occ bbb:clear-avatar-cache`). Go to the BigBlueButton section inside your personal settings page and enter a room name. That's it. You can now distribute the room url. -### Enter a room from files -Use the ... menu and select the desired BBB configuration to enter the room. -Beware that if the room is already running the presentation will **not** be -updated. Entering a room with a defined presentation works only if link shares -are enabled and do not require authentication. See [#1](https://github.com/sualko/cloud_bbb/issues/1) -for details. +### Share a room +Edit your room configuration and select groups or users you wish to share your room with. You can define the access level for your shared room (admin, moderator or simple user). -![Screenshot file browser](https://github.com/sualko/cloud_bbb/raw/master/docs/screenshot-file-browser.png) + +![Screenshot sharing room](https://github.com/littleredbutton/cloud_bbb/raw/master/docs/screenshot-config-share.png) ## :notebook: Notes - By using the [Link Editor](https://apps.nextcloud.com/apps/files_linkeditor) @@ -140,7 +135,7 @@ for details. - Before installing, make sure your BBB is running correctly - If the room doesn't appear in the ... menu of files, a browser/cache reload might help -- To share an audio (mp3) or video (mp4) file with your audience follow these steps (more info in [#148](https://github.com/sualko/cloud_bbb/issues/148#issuecomment-827338650)): +- To share an audio (mp3) or video (mp4) file with your audience follow these steps (more info in [#148](https://github.com/littleredbutton/cloud_bbb/issues/148#issuecomment-827338650)): - create a public share of the exact file - copy the location of the share from the share information screen into your clipboard - open big blue button, press the plus icon in the lower left corner @@ -152,22 +147,23 @@ for details. Writing such an application is a lot of work and therefore we are specially thankful for people and organisations who are sponsoring features or bug fixes: +- [Arawa](https://arawa.fr/) Share moderators and users ([#281]), Bug fixes, UX audit - [Medienwerkstatt Minden-Lübbecke e.V.](https://www.medienwerkstatt.org) manage recordings ([#19]) - [Deutscher Bundesjugendring](https://www.dbjr.de) version [0.4.0], version [0.5.0] - [Graz University of Technology](https://www.tugraz.at) form action ([#47]), navigation entry ([#31]), restrictions ([#43], [#53]), circles ([#61]) -- [Arawa](https://www.arawa.fr) UX audit -- [Niedersächsisches Landesinstitut für schulische Qualitätsentwicklung – Netzwerk Medienberatung](https://nlq.niedersachsen.de/) moderator url, UX improvements +- [Niedersächsisches Landesinstitut für schulische Qualitätsentwicklung - Netzwerk Medienberatung](https://nlq.niedersachsen.de/) moderator url, UX improvements - [Integrierte Gesamtschule Lengede](http://www.igs-lengede.de/) theme, join options If you are looking for other ways to contribute to this project, you are welcome to look at our [contributor guidelines]. Every contribution is valuable :tada:. -[contributor guidelines]: https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md -[#19]: https://github.com/sualko/cloud_bbb/issues/19 -[#47]: https://github.com/sualko/cloud_bbb/issues/47 -[#31]: https://github.com/sualko/cloud_bbb/issues/31 -[#43]: https://github.com/sualko/cloud_bbb/issues/43 -[#53]: https://github.com/sualko/cloud_bbb/issues/53 -[#61]: https://github.com/sualko/cloud_bbb/issues/61 -[0.4.0]: https://github.com/sualko/cloud_bbb/releases/tag/v0.4.0 -[0.5.0]: https://github.com/sualko/cloud_bbb/releases/tag/v0.5.0 +[contributor guidelines]: https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md +[#19]: https://github.com/littleredbutton/cloud_bbb/issues/19 +[#47]: https://github.com/littleredbutton/cloud_bbb/issues/47 +[#31]: https://github.com/littleredbutton/cloud_bbb/issues/31 +[#43]: https://github.com/littleredbutton/cloud_bbb/issues/43 +[#53]: https://github.com/littleredbutton/cloud_bbb/issues/53 +[#61]: https://github.com/littleredbutton/cloud_bbb/issues/61 +[#281]: https://github.com/littleredbutton/cloud_bbb/pull/281 +[0.4.0]: https://github.com/littleredbutton/cloud_bbb/releases/tag/v0.4.0 +[0.5.0]: https://github.com/littleredbutton/cloud_bbb/releases/tag/v0.5.0 diff --git a/appinfo/info.xml b/appinfo/info.xml index d405b3c..3e5e6e2 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,17 +14,18 @@ * **Restrictions** Restrict room creation to certain groups * **Activities** Get an overview of your room activities -Quick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb). +Quick start guide and further information in our [readme](https://github.com/littleredbutton/cloud_bbb). Do you like this application? Give something back to the open source community and checkout our -[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md). +[ways to contribute](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md). -Developer wanted! If you have time it would be awesome if you could help to enhance this application. +Contributors are welcome! If you have time it would be awesome if you could help to enhance this application. *This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.* ]]> - 2.6.0 + 2.7.3 agpl - Klaus Herberth + Arawa + Klaus Herberth BigBlueButton @@ -32,18 +33,18 @@ Developer wanted! If you have time it would be awesome if you could help to enha social multimedia integration - https://github.com/sualko/cloud_bbb/ - https://github.com/sualko/cloud_bbb/issues - https://github.com/sualko/cloud_bbb/ - https://raw.githubusercontent.com/sualko/cloud_bbb/master/docs/screenshot-file-browser.png - https://raw.githubusercontent.com/sualko/cloud_bbb/master/docs/screenshot-configuration.png - https://raw.githubusercontent.com/sualko/cloud_bbb/master/docs/screenshot-configuration2.png - https://raw.githubusercontent.com/sualko/cloud_bbb/master/docs/screenshot-join.png + https://github.com/littleredbutton/cloud_bbb/ + https://github.com/littleredbutton/cloud_bbb/issues + https://github.com/littleredbutton/cloud_bbb/ + https://raw.githubusercontent.com/littleredbutton/cloud_bbb/master/docs/screenshot-configuration.png + https://raw.githubusercontent.com/littleredbutton/cloud_bbb/master/docs/screenshot-configuration2.png + https://raw.githubusercontent.com/littleredbutton/cloud_bbb/master/docs/screenshot-join.png + https://raw.githubusercontent.com/littleredbutton/cloud_bbb/master/docs/screenshot-config-share.png curl mbstring SimpleXML - + OCA\BigBlueButton\Command\ClearAvatarCache diff --git a/appinfo/routes.php b/appinfo/routes.php index 2b70b37..269123b 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -14,6 +14,7 @@ return [ ['name' => 'server#check', 'url' => '/server/check', 'verb' => 'POST'], ['name' => 'server#version', 'url' => '/server/version', 'verb' => 'GET'], ['name' => 'server#delete_record', 'url' => '/server/record/{recordId}', 'verb' => 'DELETE'], + ['name' => 'server#publish_record', 'url' => '/server/record/{recordId}/publish', 'verb' => 'POST'], ['name' => 'join#index', 'url' => '/b/{token}/{moderatorToken}', 'verb' => 'GET', 'defaults' => ['moderatorToken' => '']], ['name' => 'restriction#user', 'url' => '/restrictions/user', 'verb' => 'GET'], ['name' => 'hook#meetingEnded', 'url' => '/hook/ended/{token}/{mac}', 'verb' => 'GET'], diff --git a/composer.json b/composer.json index de225f0..5a04a63 100644 --- a/composer.json +++ b/composer.json @@ -1,12 +1,11 @@ { - "name": "sualko/bigbluebutton", + "name": "littleredbutton/bigbluebutton", "description": "Nextcloud Integration for BigBlueButton", "type": "project", "license": "AGPL", "authors": [ { - "name": "Klaus Herberth", - "email": "klaus@jsxc.org" + "name": "Klaus Herberth" } ], "require": { @@ -18,7 +17,8 @@ "nextcloud/coding-standard": "^1.0.0", "phpstan/phpstan": "^0.12.29", "nextcloud/ocp": "^25.0 || ^26.0 || ^27.0", - "vimeo/psalm": "^4.5" + "vimeo/psalm": "^5.0", + "psr/container": "^1.1.2 || ^2.0.2" }, "config": { "optimize-autoloader": true, diff --git a/composer.lock b/composer.lock index e75a7fd..101bb26 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "feb9af8a85a0a6dd2511e8dfb2546e38", + "content-hash": "03db1510cedc92e20b34bbd26ffdddbc", "packages": [ { "name": "littleredbutton/bigbluebutton-api-php", @@ -301,79 +301,6 @@ ], "time": "2021-03-30T17:13:30+00:00" }, - { - "name": "composer/package-versions-deprecated", - "version": "1.11.99.5", - "source": { - "type": "git", - "url": "https://github.com/composer/package-versions-deprecated.git", - "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d", - "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.1.0 || ^2.0", - "php": "^7 || ^8" - }, - "replace": { - "ocramius/package-versions": "1.11.99" - }, - "require-dev": { - "composer/composer": "^1.9.3 || ^2.0@dev", - "ext-zip": "^1.13", - "phpunit/phpunit": "^6.5 || ^7" - }, - "type": "composer-plugin", - "extra": { - "class": "PackageVersions\\Installer", - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "PackageVersions\\": "src/PackageVersions" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" - } - ], - "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", - "support": { - "issues": "https://github.com/composer/package-versions-deprecated/issues", - "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-01-17T14:14:24+00:00" - }, { "name": "composer/pcre", "version": "3.0.0", @@ -949,6 +876,67 @@ }, "time": "2022-03-02T22:36:06+00:00" }, + { + "name": "fidry/cpu-core-counter", + "version": "0.5.1", + "source": { + "type": "git", + "url": "https://github.com/theofidry/cpu-core-counter.git", + "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/b58e5a3933e541dc286cc91fc4f3898bbc6f1623", + "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "fidry/makefile": "^0.2.0", + "phpstan/extension-installer": "^1.2.0", + "phpstan/phpstan": "^1.9.2", + "phpstan/phpstan-deprecation-rules": "^1.0.0", + "phpstan/phpstan-phpunit": "^1.2.2", + "phpstan/phpstan-strict-rules": "^1.4.4", + "phpunit/phpunit": "^9.5.26 || ^8.5.31", + "theofidry/php-cs-fixer-config": "^1.0", + "webmozarts/strict-phpunit": "^7.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Fidry\\CpuCoreCounter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Théo FIDRY", + "email": "theo.fidry@gmail.com" + } + ], + "description": "Tiny utility to get the number of CPU cores.", + "keywords": [ + "CPU", + "core" + ], + "support": { + "issues": "https://github.com/theofidry/cpu-core-counter/issues", + "source": "https://github.com/theofidry/cpu-core-counter/tree/0.5.1" + }, + "funding": [ + { + "url": "https://github.com/theofidry", + "type": "github" + } + ], + "time": "2022-12-24T12:35:10+00:00" + }, { "name": "friendsofphp/php-cs-fixer", "version": "v3.12.0", @@ -1191,16 +1179,16 @@ }, { "name": "nextcloud/ocp", - "version": "v26.0.4", + "version": "v26.0.9", "source": { "type": "git", "url": "https://github.com/nextcloud-deps/ocp.git", - "reference": "6f0ffec5ace13e71f50d0735c0258fc37f4ca562" + "reference": "43bc0a0267d97b02966e0270e00e9d51192564af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/6f0ffec5ace13e71f50d0735c0258fc37f4ca562", - "reference": "6f0ffec5ace13e71f50d0735c0258fc37f4ca562", + "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/43bc0a0267d97b02966e0270e00e9d51192564af", + "reference": "43bc0a0267d97b02966e0270e00e9d51192564af", "shasum": "" }, "require": { @@ -1228,9 +1216,9 @@ "description": "Composer package containing Nextcloud's public API (classes, interfaces)", "support": { "issues": "https://github.com/nextcloud-deps/ocp/issues", - "source": "https://github.com/nextcloud-deps/ocp/tree/v26.0.4" + "source": "https://github.com/nextcloud-deps/ocp/tree/v26.0.9" }, - "time": "2023-07-17T09:26:46+00:00" + "time": "2023-11-10T00:31:54+00:00" }, { "name": "nikic/php-parser", @@ -1288,59 +1276,6 @@ }, "time": "2022-09-04T07:30:47+00:00" }, - { - "name": "openlss/lib-array2xml", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/nullivex/lib-array2xml.git", - "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90", - "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90", - "shasum": "" - }, - "require": { - "php": ">=5.3.2" - }, - "type": "library", - "autoload": { - "psr-0": { - "LSS": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Bryan Tong", - "email": "bryan@nullivex.com", - "homepage": "https://www.nullivex.com" - }, - { - "name": "Tony Butler", - "email": "spudz76@gmail.com", - "homepage": "https://www.nullivex.com" - } - ], - "description": "Array2XML conversion library credit to lalit.org", - "homepage": "https://www.nullivex.com", - "keywords": [ - "array", - "array conversion", - "xml", - "xml conversion" - ], - "support": { - "issues": "https://github.com/nullivex/lib-array2xml/issues", - "source": "https://github.com/nullivex/lib-array2xml/tree/master" - }, - "time": "2019-03-29T20:06:56+00:00" - }, { "name": "phar-io/manifest", "version": "2.0.3", @@ -3262,6 +3197,74 @@ ], "time": "2020-09-28T06:39:44+00:00" }, + { + "name": "spatie/array-to-xml", + "version": "3.3.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/array-to-xml.git", + "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/f56b220fe2db1ade4c88098d83413ebdfc3bf876", + "reference": "f56b220fe2db1ade4c88098d83413ebdfc3bf876", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "php": "^8.0" + }, + "require-dev": { + "mockery/mockery": "^1.2", + "pestphp/pest": "^1.21", + "spatie/pest-plugin-snapshots": "^1.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\ArrayToXml\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://freek.dev", + "role": "Developer" + } + ], + "description": "Convert an array to xml", + "homepage": "https://github.com/spatie/array-to-xml", + "keywords": [ + "array", + "convert", + "xml" + ], + "support": { + "source": "https://github.com/spatie/array-to-xml/tree/3.3.0" + }, + "funding": [ + { + "url": "https://spatie.be/open-source/support-us", + "type": "custom" + }, + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-05-01T10:20:27+00:00" + }, { "name": "symfony/console", "version": "v6.0.14", @@ -4332,33 +4335,30 @@ }, { "name": "symfony/service-contracts", - "version": "v2.5.2", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/container": "^1.1", - "symfony/deprecation-contracts": "^2.1|^3" + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { "ext-psr": "<1.1|>=2" }, - "suggest": { - "symfony/service-implementation": "" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.5-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -4368,7 +4368,10 @@ "autoload": { "psr-4": { "Symfony\\Contracts\\Service\\": "" - } + }, + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -4395,7 +4398,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" }, "funding": [ { @@ -4411,7 +4414,7 @@ "type": "tidelift" } ], - "time": "2022-05-30T19:17:29+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/stopwatch", @@ -4612,24 +4615,24 @@ }, { "name": "vimeo/psalm", - "version": "4.29.0", + "version": "5.13.1", "source": { "type": "git", "url": "https://github.com/vimeo/psalm.git", - "reference": "7ec5ffbd5f68ae03782d7fd33fff0c45a69f95b3" + "reference": "086b94371304750d1c673315321a55d15fc59015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vimeo/psalm/zipball/7ec5ffbd5f68ae03782d7fd33fff0c45a69f95b3", - "reference": "7ec5ffbd5f68ae03782d7fd33fff0c45a69f95b3", + "url": "https://api.github.com/repos/vimeo/psalm/zipball/086b94371304750d1c673315321a55d15fc59015", + "reference": "086b94371304750d1c673315321a55d15fc59015", "shasum": "" }, "require": { "amphp/amp": "^2.4.2", "amphp/byte-stream": "^1.5", - "composer/package-versions-deprecated": "^1.8.0", + "composer-runtime-api": "^2", "composer/semver": "^1.4 || ^2.0 || ^3.0", - "composer/xdebug-handler": "^1.1 || ^2.0 || ^3.0", + "composer/xdebug-handler": "^2.0 || ^3.0", "dnoegel/php-xdg-base-dir": "^0.1.1", "ext-ctype": "*", "ext-dom": "*", @@ -4638,35 +4641,35 @@ "ext-mbstring": "*", "ext-simplexml": "*", "ext-tokenizer": "*", - "felixfbecker/advanced-json-rpc": "^3.0.3", - "felixfbecker/language-server-protocol": "^1.5", + "felixfbecker/advanced-json-rpc": "^3.1", + "felixfbecker/language-server-protocol": "^1.5.2", + "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1", "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", - "nikic/php-parser": "^4.13", - "openlss/lib-array2xml": "^1.0", - "php": "^7.1|^8", - "sebastian/diff": "^3.0 || ^4.0", - "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0", - "symfony/polyfill-php80": "^1.25", - "webmozart/path-util": "^2.3" + "nikic/php-parser": "^4.14", + "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0", + "sebastian/diff": "^4.0 || ^5.0", + "spatie/array-to-xml": "^2.17.0 || ^3.0", + "symfony/console": "^4.1.6 || ^5.0 || ^6.0", + "symfony/filesystem": "^5.4 || ^6.0" }, "provide": { "psalm/psalm": "self.version" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2", - "brianium/paratest": "^4.0||^6.0", + "amphp/phpunit-util": "^2.0", + "bamarni/composer-bin-plugin": "^1.4", + "brianium/paratest": "^6.9", "ext-curl": "*", + "mockery/mockery": "^1.5", + "nunomaduro/mock-final-classes": "^1.1", "php-parallel-lint/php-parallel-lint": "^1.2", - "phpdocumentor/reflection-docblock": "^5", - "phpmyadmin/sql-parser": "5.1.0||dev-master", - "phpspec/prophecy": ">=1.9.0", - "phpstan/phpdoc-parser": "1.2.* || 1.6.4", - "phpunit/phpunit": "^9.0", - "psalm/plugin-phpunit": "^0.16", - "slevomat/coding-standard": "^7.0", - "squizlabs/php_codesniffer": "^3.5", - "symfony/process": "^4.3 || ^5.0 || ^6.0", - "weirdan/prophecy-shim": "^1.0 || ^2.0" + "phpstan/phpdoc-parser": "^1.6", + "phpunit/phpunit": "^9.6", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.6", + "symfony/process": "^4.4 || ^5.0 || ^6.0" }, "suggest": { "ext-curl": "In order to send data to shepherd", @@ -4682,17 +4685,14 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev", + "dev-master": "5.x-dev", + "dev-4.x": "4.x-dev", "dev-3.x": "3.x-dev", "dev-2.x": "2.x-dev", "dev-1.x": "1.x-dev" } }, "autoload": { - "files": [ - "src/functions.php", - "src/spl_object_id.php" - ], "psr-4": { "Psalm\\": "src/Psalm/" } @@ -4710,13 +4710,14 @@ "keywords": [ "code", "inspection", - "php" + "php", + "static analysis" ], "support": { "issues": "https://github.com/vimeo/psalm/issues", - "source": "https://github.com/vimeo/psalm/tree/4.29.0" + "source": "https://github.com/vimeo/psalm/tree/5.13.1" }, - "time": "2022-10-11T17:09:17+00:00" + "time": "2023-06-27T16:39:49+00:00" }, { "name": "webmozart/assert", @@ -4775,57 +4776,6 @@ "source": "https://github.com/webmozarts/assert/tree/1.11.0" }, "time": "2022-06-03T18:03:27+00:00" - }, - { - "name": "webmozart/path-util", - "version": "2.3.0", - "source": { - "type": "git", - "url": "https://github.com/webmozart/path-util.git", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "webmozart/assert": "~1.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.3-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\PathUtil\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", - "support": { - "issues": "https://github.com/webmozart/path-util/issues", - "source": "https://github.com/webmozart/path-util/tree/2.3.0" - }, - "abandoned": "symfony/filesystem", - "time": "2015-12-17T08:42:14+00:00" } ], "aliases": [], @@ -4835,5 +4785,5 @@ "prefer-lowest": false, "platform": [], "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.2.0" } diff --git a/docs/screenshot-config-share.png b/docs/screenshot-config-share.png new file mode 100644 index 0000000..5a2e047 Binary files /dev/null and b/docs/screenshot-config-share.png differ diff --git a/docs/screenshot-configuration.png b/docs/screenshot-configuration.png index e8aa533..28a0706 100644 Binary files a/docs/screenshot-configuration.png and b/docs/screenshot-configuration.png differ diff --git a/l10n/af.js b/l10n/af.js index 6e7c831..f60d0b5 100644 --- a/l10n/af.js +++ b/l10n/af.js @@ -15,7 +15,7 @@ OC.L10N.register( "Delete" : "Skrap", "Error" : "Fout", "Server error" : "Bedienerfout", - "Share" : "Deel", + "Start" : "Begin", "Loading" : "Laai tans..", "Settings saved" : "Instellings gestoor" }, diff --git a/l10n/af.json b/l10n/af.json index 33ab39d..e05bad9 100644 --- a/l10n/af.json +++ b/l10n/af.json @@ -13,7 +13,7 @@ "Delete" : "Skrap", "Error" : "Fout", "Server error" : "Bedienerfout", - "Share" : "Deel", + "Start" : "Begin", "Loading" : "Laai tans..", "Settings saved" : "Instellings gestoor" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/an.js b/l10n/an.js deleted file mode 100644 index f469c7a..0000000 --- a/l10n/an.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "bbb", - { - "Password" : "Clau", - "Hello %s" : "Hola %s", - "Group" : "Grupo", - "Name" : "Nombre", - "Create" : "Crear", - "Delete" : "Borrar", - "Error" : "Error", - "Share" : "Compartir" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/an.json b/l10n/an.json deleted file mode 100644 index f99affc..0000000 --- a/l10n/an.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "Password" : "Clau", - "Hello %s" : "Hola %s", - "Group" : "Grupo", - "Name" : "Nombre", - "Create" : "Crear", - "Delete" : "Borrar", - "Error" : "Error", - "Share" : "Compartir" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/ar.js b/l10n/ar.js index 0a9bb39..9a61fd5 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -19,19 +19,19 @@ OC.L10N.register( "Waiting room for all users" : "غرفة انتظار لجميع المستخدمين", "Internal" : "داخلي", "Internal restricted" : "داخلي محظور", - "API URL or secret not configured. Please contact your administrator." : "API URL أو الكلمة السرية لم تتم تهيئتها. رجاءً، اتصل بمشرف النظام عندك.", + "API URL or secret not configured. Please contact your administrator." : "API URL أو الكلمة السرية لم تتم تهيئتها. رجاءً، اتصل بمسؤول النظام عندك.", "BigBlueButton Integration" : "مُكاملة \"بيغ بلو بوتون\" 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "يسمح هذا التطبيق بإنشاء اجتماعات من خلال تنصيب خارجي لـ\"بيغ بلو بوتون\" [BigBlueButton] (https://bigbluebutton.org) . \n\n* ** إعداد الغرفة ** إنشاء تكوينات متعددة للغرف بالاسم ورسالة الترحيب ... \n* ** مشاركة رابط الضيف ** مشاركة رابط الغرفة مع جميع ضيوفك \n* ** مشاركة رابط الوسيط ** دعوة المشرفين إلى الغرفة \n* ** مشاركة الغرف ** مشاركة الغرف مع الأعضاء أو المجموعات أو الدوائر \n* ** عرض تقديمي مخصص ** ابدأ غرفة بعرض تقديمي محدد من متصفح الملفات الخاص بك \n* ** إدارة التسجيلات ** عرض ومشاركة وحذف التسجيلات الخاصة بغرفك \n* ** القيود ** قصر إنشاء الغرفة على مجموعات معينة \n* ** الأنشطة ** احصل على نظرة عامة حول أنشطة غرفتك. \n\nدليل البدء السريع والمزيد من المعلومات في [الملف التمهيدي] (https://github.com/sualko/cloud_bbb) . \n\nهل يعجبك هذا التطبيق؟ قدم شيئًا لمجتمع المصادر المفتوحة واطلع على [طرق المساهمة] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md). \n\nإذا كان لديك الوقت، فسيكون من الرائع إذا كان بإمكانك المساعدة في تحسين هذا التطبيق. \n\n* هذا التطبيق يدمج 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.*", "Room not found" : "الغرفة غير موجودة", "The room could not be found. Maybe it was deleted?" : "الغرفة غير موجودة. هل يمكن أن تكون محذوفة؟", "Back to %s" : "العودة إلى %s", - "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "تحصّل على API URL و كلمة السر بإعطاء الأمر \"sudo bbb-conf --secret\" على خادوم BBB.", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "تحصّل على API URL و كلمة المرور بإعطاء الأمر \"sudo bbb-conf --secret\" على خادوم BBB.", "API URL" : "عنوان واجهة برمجة التطبيقات API URL", - "API secret" : "كلمة السر لواجهة برمجة التطبيقات API secret", + "API secret" : "كلمة المرور لواجهة برمجة التطبيقات API secret", "Save" : "حفظ", "Show room manager in app navigation instead of settings page." : "عرض مدير الغرفة في صفحةتصفح التطبيق بدلأً عن صفحة الإعدادات.", - "Use Nextcloud theme in BigBlueButton." : "ثيمة نكست كلاود في \"بيغ بلو بوتون\" BBB", + "Use Nextcloud theme in BigBlueButton." : "سمة نكست كلاود في \"بيغ بلو بوتون\" BBB", "Default Room Settings" : "الإعدادات التلقائية للغرفة", "Below you can change some default values, which are used to create a new room." : "يُمكنك أدناه تعديل بعض القيم التلقائية التي تستخدم عند إنشاء غرفة جديدة.", "Perform media check before usage" : "قم باختيار الوسائط media قبل الاستعمال", @@ -47,8 +47,8 @@ OC.L10N.register( "Please enter your name!" : "أدخِل اسمك من فضلك!", "The name must be at least 3 characters long." : "الاسم يجب ألّا يقل عن 3 حروف.", "You have to provide the correct password to join the meeting." : "يجب أن تُدخَل كلمة المرور الصحيحة ليمكنك المشاركة في الاجتماع.", - "Display name" : "الاسم المعروض", - "Password" : "كلمة السر", + "Display name" : "اسم العرض", + "Password" : "كلمة المرور", "Join" : "إنضم", "Have an account? Log in." : "عندك حساب؟ أُدخُل.", "Hello %s" : "أهلاً %s", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "المجموعة", "Searching" : "بحث", "No matches" : "لا يوجد تطابق", + "admin" : "مدير", + "moderator" : "مشرف", + "user" : "مستخدِم", "Name" : "الاسم", "Access" : "النفاذ", "Max" : "أقصى", @@ -68,11 +71,11 @@ OC.L10N.register( "Descriptive name of this room." : "اسم يصف هذه الغرفة.", "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." : "عيّن حدّاً أقصى لعدد المشاركين في الغرفة. صفر تعني أنه لا يوجد حد.", - "If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المنسق moderator يستطيع تشغيل التسجيل.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "عام: كل شخص يعرف الرابط يمكنه الانضمام. \nكلمة المرور: يجب على الضيوف تقديم كلمة مرور. \nغرفة الانتظار: يجب على الوسيط قبول كل ضيف قبل أن يتمكنوا من الانضمام. \nداخلي: يمكن فقط لمستخدمي نكست كلاود الانضمام.", - "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, a moderator URL is generated which allows access with moderator permission." : "إذا تمّ التمكين، سيتم توليد رابط URL منسّق يُمكّن من الدخول بصلاحيات منسّق.", + "If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المشرف يستطيع تشغيل التسجيل.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "شرح المفاهيم الأساسية التي تشكل خيارات الوصول :
- عمومي: أي شخص لديه الرابط يمكنه الانضمام.-
داخلي: مستخدمو نكست كلاود فقط يمكنهم الانضمام.-
كلمة مرور: فقط الأشخاص الذين يعرفون كلمة المرور يمكنهم الانضمام.-
غرفة انتظار: يجب أن يقوم المشرف بقبول كل ضيف قبل أن يستطيع الانضمام.-
مُقيّد: فقط الأشخاص و المجموعات المحددة يمكنهم الوصول إلى هذه الغرفة.", + "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "يمكن للمشرف إدارة جميع المشاركين في الاجتماع بما في ذلك الطرد أو كتم الصوت أو اختيار مقدم العرض. يمكن للمستخدمين الذين يلعبون دور المشرف أيضًا إغلاق اجتماع أو تغيير الإعدادات الافتراضية.", + "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 منسّق يُمكّن من الدخول بصلاحيات المشرف.", "Only selected users and groups are allowed to access the room." : "فقط المستخدمون و المجموعات المختارة مسموح لهم بالدخول إلى الغرفة.", "If disabled, a microphone is needed to join the conference." : "إذا لم يتم التمكين، لا بد من لاقط صوت microphone للانضمام للاجتماع.", "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "إذا تمّ التمكين، لا يحتاج المستخدم لاختبار الصوت echo call أو الكاميرا webcam preview عند أول دخول (مُتاحٌ بداية من الإصدار BBB server 2.3).", @@ -82,18 +85,20 @@ OC.L10N.register( "Room URL" : "عنوان URL الغرفة", "Welcome" : "مرحباً", "Participant limit" : "الحد الأقصى للمشاركين", - "Every participant is moderator" : "كل مشارك هو منسق", - "Moderator access via URL" : "وصول المنسق عن طريق العنوان URL", + "Sharing" : "المشاركة", + "Every participant is moderator" : "كل مشارك هو مشرف", + "Moderator access via URL" : "وصول المشرف عن طريق العنوان URL", "Miscellaneous" : "متنوع", "Recording" : "تسجيل", - "Require moderator to start room" : "لا بد من وجود منسق لفتح الغرفة", + "Require moderator to start room" : "لا بد من وجود المشرف لفتح الغرفة", "Listen only option" : "خيار الاستماع فقط", "Skip media check before usage" : "تجاوز اختبار لاقط الصوت و الكاميرا قبل الاستعمال", "Clean layout" : "تخطيط واضح و مريح clean layout", "Join meeting muted" : "أدخُل الاجتماع بدون صوت", "Room name" : "اسم الغرفة", "Create" : "إنشاء", - "Open recording" : "إفتح التسجيل", + "Published" : "منشورةٌ", + "Open recording" : "فتح التسجيل", "Copy to clipboard" : "نسخ الرابط", "Save as file" : "حفظ كملف", "_%n participant_::_%n participants_" : ["%n مشاركين","%n مشارك","%n مشاركين","%n مشاركين","%n مشاركين","%n مشاركين"], @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "حذف؟", "Could not delete record" : "تعذّر حذف التسجيل", "Server error" : "خطا في الخادم", - "moderator" : "مشرف", - "admin" : "مشرف", - "Share" : "شارك", + "Could not modify publishing state" : "تعذّر تعديل حالة النشر", + "Open room" : "فتح غرفة", + "Start" : "ابدأ", + "Clone room" : "استنساخ غرفة", "Loading" : "Loading", "You are not allowed to change this option, because this room is shared with you." : "لا يمكنك تعديل هذا الخيار؛ بسبب أن الغرفة مشاركة معك.", "Max. rooms" : "أقصى عدد من الغرف", diff --git a/l10n/ar.json b/l10n/ar.json index 48053c7..dde96ed 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -17,19 +17,19 @@ "Waiting room for all users" : "غرفة انتظار لجميع المستخدمين", "Internal" : "داخلي", "Internal restricted" : "داخلي محظور", - "API URL or secret not configured. Please contact your administrator." : "API URL أو الكلمة السرية لم تتم تهيئتها. رجاءً، اتصل بمشرف النظام عندك.", + "API URL or secret not configured. Please contact your administrator." : "API URL أو الكلمة السرية لم تتم تهيئتها. رجاءً، اتصل بمسؤول النظام عندك.", "BigBlueButton Integration" : "مُكاملة \"بيغ بلو بوتون\" 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "يسمح هذا التطبيق بإنشاء اجتماعات من خلال تنصيب خارجي لـ\"بيغ بلو بوتون\" [BigBlueButton] (https://bigbluebutton.org) . \n\n* ** إعداد الغرفة ** إنشاء تكوينات متعددة للغرف بالاسم ورسالة الترحيب ... \n* ** مشاركة رابط الضيف ** مشاركة رابط الغرفة مع جميع ضيوفك \n* ** مشاركة رابط الوسيط ** دعوة المشرفين إلى الغرفة \n* ** مشاركة الغرف ** مشاركة الغرف مع الأعضاء أو المجموعات أو الدوائر \n* ** عرض تقديمي مخصص ** ابدأ غرفة بعرض تقديمي محدد من متصفح الملفات الخاص بك \n* ** إدارة التسجيلات ** عرض ومشاركة وحذف التسجيلات الخاصة بغرفك \n* ** القيود ** قصر إنشاء الغرفة على مجموعات معينة \n* ** الأنشطة ** احصل على نظرة عامة حول أنشطة غرفتك. \n\nدليل البدء السريع والمزيد من المعلومات في [الملف التمهيدي] (https://github.com/sualko/cloud_bbb) . \n\nهل يعجبك هذا التطبيق؟ قدم شيئًا لمجتمع المصادر المفتوحة واطلع على [طرق المساهمة] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md). \n\nإذا كان لديك الوقت، فسيكون من الرائع إذا كان بإمكانك المساعدة في تحسين هذا التطبيق. \n\n* هذا التطبيق يدمج 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.*", "Room not found" : "الغرفة غير موجودة", "The room could not be found. Maybe it was deleted?" : "الغرفة غير موجودة. هل يمكن أن تكون محذوفة؟", "Back to %s" : "العودة إلى %s", - "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "تحصّل على API URL و كلمة السر بإعطاء الأمر \"sudo bbb-conf --secret\" على خادوم BBB.", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "تحصّل على API URL و كلمة المرور بإعطاء الأمر \"sudo bbb-conf --secret\" على خادوم BBB.", "API URL" : "عنوان واجهة برمجة التطبيقات API URL", - "API secret" : "كلمة السر لواجهة برمجة التطبيقات API secret", + "API secret" : "كلمة المرور لواجهة برمجة التطبيقات API secret", "Save" : "حفظ", "Show room manager in app navigation instead of settings page." : "عرض مدير الغرفة في صفحةتصفح التطبيق بدلأً عن صفحة الإعدادات.", - "Use Nextcloud theme in BigBlueButton." : "ثيمة نكست كلاود في \"بيغ بلو بوتون\" BBB", + "Use Nextcloud theme in BigBlueButton." : "سمة نكست كلاود في \"بيغ بلو بوتون\" BBB", "Default Room Settings" : "الإعدادات التلقائية للغرفة", "Below you can change some default values, which are used to create a new room." : "يُمكنك أدناه تعديل بعض القيم التلقائية التي تستخدم عند إنشاء غرفة جديدة.", "Perform media check before usage" : "قم باختيار الوسائط media قبل الاستعمال", @@ -45,8 +45,8 @@ "Please enter your name!" : "أدخِل اسمك من فضلك!", "The name must be at least 3 characters long." : "الاسم يجب ألّا يقل عن 3 حروف.", "You have to provide the correct password to join the meeting." : "يجب أن تُدخَل كلمة المرور الصحيحة ليمكنك المشاركة في الاجتماع.", - "Display name" : "الاسم المعروض", - "Password" : "كلمة السر", + "Display name" : "اسم العرض", + "Password" : "كلمة المرور", "Join" : "إنضم", "Have an account? Log in." : "عندك حساب؟ أُدخُل.", "Hello %s" : "أهلاً %s", @@ -54,6 +54,9 @@ "Group" : "المجموعة", "Searching" : "بحث", "No matches" : "لا يوجد تطابق", + "admin" : "مدير", + "moderator" : "مشرف", + "user" : "مستخدِم", "Name" : "الاسم", "Access" : "النفاذ", "Max" : "أقصى", @@ -66,11 +69,11 @@ "Descriptive name of this room." : "اسم يصف هذه الغرفة.", "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." : "عيّن حدّاً أقصى لعدد المشاركين في الغرفة. صفر تعني أنه لا يوجد حد.", - "If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المنسق moderator يستطيع تشغيل التسجيل.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "عام: كل شخص يعرف الرابط يمكنه الانضمام. \nكلمة المرور: يجب على الضيوف تقديم كلمة مرور. \nغرفة الانتظار: يجب على الوسيط قبول كل ضيف قبل أن يتمكنوا من الانضمام. \nداخلي: يمكن فقط لمستخدمي نكست كلاود الانضمام.", - "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, a moderator URL is generated which allows access with moderator permission." : "إذا تمّ التمكين، سيتم توليد رابط URL منسّق يُمكّن من الدخول بصلاحيات منسّق.", + "If enabled, the moderator is able to start the recording." : "إذا تمّ التمكين فهذا يعني أن المشرف يستطيع تشغيل التسجيل.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "شرح المفاهيم الأساسية التي تشكل خيارات الوصول :
- عمومي: أي شخص لديه الرابط يمكنه الانضمام.-
داخلي: مستخدمو نكست كلاود فقط يمكنهم الانضمام.-
كلمة مرور: فقط الأشخاص الذين يعرفون كلمة المرور يمكنهم الانضمام.-
غرفة انتظار: يجب أن يقوم المشرف بقبول كل ضيف قبل أن يستطيع الانضمام.-
مُقيّد: فقط الأشخاص و المجموعات المحددة يمكنهم الوصول إلى هذه الغرفة.", + "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "يمكن للمشرف إدارة جميع المشاركين في الاجتماع بما في ذلك الطرد أو كتم الصوت أو اختيار مقدم العرض. يمكن للمستخدمين الذين يلعبون دور المشرف أيضًا إغلاق اجتماع أو تغيير الإعدادات الافتراضية.", + "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 منسّق يُمكّن من الدخول بصلاحيات المشرف.", "Only selected users and groups are allowed to access the room." : "فقط المستخدمون و المجموعات المختارة مسموح لهم بالدخول إلى الغرفة.", "If disabled, a microphone is needed to join the conference." : "إذا لم يتم التمكين، لا بد من لاقط صوت microphone للانضمام للاجتماع.", "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "إذا تمّ التمكين، لا يحتاج المستخدم لاختبار الصوت echo call أو الكاميرا webcam preview عند أول دخول (مُتاحٌ بداية من الإصدار BBB server 2.3).", @@ -80,18 +83,20 @@ "Room URL" : "عنوان URL الغرفة", "Welcome" : "مرحباً", "Participant limit" : "الحد الأقصى للمشاركين", - "Every participant is moderator" : "كل مشارك هو منسق", - "Moderator access via URL" : "وصول المنسق عن طريق العنوان URL", + "Sharing" : "المشاركة", + "Every participant is moderator" : "كل مشارك هو مشرف", + "Moderator access via URL" : "وصول المشرف عن طريق العنوان URL", "Miscellaneous" : "متنوع", "Recording" : "تسجيل", - "Require moderator to start room" : "لا بد من وجود منسق لفتح الغرفة", + "Require moderator to start room" : "لا بد من وجود المشرف لفتح الغرفة", "Listen only option" : "خيار الاستماع فقط", "Skip media check before usage" : "تجاوز اختبار لاقط الصوت و الكاميرا قبل الاستعمال", "Clean layout" : "تخطيط واضح و مريح clean layout", "Join meeting muted" : "أدخُل الاجتماع بدون صوت", "Room name" : "اسم الغرفة", "Create" : "إنشاء", - "Open recording" : "إفتح التسجيل", + "Published" : "منشورةٌ", + "Open recording" : "فتح التسجيل", "Copy to clipboard" : "نسخ الرابط", "Save as file" : "حفظ كملف", "_%n participant_::_%n participants_" : ["%n مشاركين","%n مشارك","%n مشاركين","%n مشاركين","%n مشاركين","%n مشاركين"], @@ -109,9 +114,10 @@ "Delete?" : "حذف؟", "Could not delete record" : "تعذّر حذف التسجيل", "Server error" : "خطا في الخادم", - "moderator" : "مشرف", - "admin" : "مشرف", - "Share" : "شارك", + "Could not modify publishing state" : "تعذّر تعديل حالة النشر", + "Open room" : "فتح غرفة", + "Start" : "ابدأ", + "Clone room" : "استنساخ غرفة", "Loading" : "Loading", "You are not allowed to change this option, because this room is shared with you." : "لا يمكنك تعديل هذا الخيار؛ بسبب أن الغرفة مشاركة معك.", "Max. rooms" : "أقصى عدد من الغرف", diff --git a/l10n/ast.js b/l10n/ast.js index ffb168b..279db90 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -1,21 +1,79 @@ OC.L10N.register( "bbb", { + "You created the room %s." : "Creesti la sala «%s».", + "You deleted the room %s." : "Desaniciesti la sala «%s».", + "{user} deleted the room %s." : "{user} desanició la sala «%s».", + "You shared the room %s with {shareWith}." : "Compartiesti la sala «%s» con {shareWith}.", + "{user} shared the room %s with you." : "{user} compartió la sala «%s» contigo.", + "You unshared the room %s with {shareWith}." : "Dexesti de compartir la sala «%s» con {shareWith}.", + "{user} unshared the room %s with you." : "{user} dexó de compartir la sala «%s» contigo.", + "Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.", + "Public" : "Pública", + "API URL or secret not configured. Please contact your administrator." : "Nun se configuró nin la URL nin el secretu de l'API. Ponte en contautu cola alministración.", + "Room not found" : "Nun s'atopó la sala", + "The room could not be found. Maybe it was deleted?" : "Nun se pudo atopar la sala. Quiciabes la desaniciaren", + "Back to %s" : "Volver a «%s»", + "API URL" : "URL de l'API", + "API secret" : "Secretu de l'API", "Save" : "Guardar", + "Below you can change some default values, which are used to create a new room." : "Abaxo pues camudar dalgún valor predetermináu que s'usa pa crear sales nueves.", + "Community" : "Comunidá", + "URL Shortener" : "Acurtiador d'URLs", + "URL shortener" : "Acurtiador d'URLs", "Let's go!" : "¡Vamos!", + "Please enter your name!" : "Introduz el to nome", + "The name must be at least 3 characters long." : "El nome ha ser polo menos de 3 caráuteres", "Display name" : "Nome visible", "Password" : "Contraseña", + "Join" : "Xunise", + "Have an account? Log in." : "¿Tienes una cuenta? Anicia la sesión", "Hello %s" : "Hola, %s", + "Name, group …" : "Nome, grupu…", + "Group" : "Grupu", + "Searching" : "Buscando", + "No matches" : "Nun hai nenguna coincidencia", + "moderator" : "moderador", "Name" : "Nome", + "Access" : "Accesu", + "Recordings" : "Grabaciones", + "You are not permitted to create a room." : "Nun tienes permisu pa crear sales.", "You exceeded the maximum number of rooms." : "Superesti'l númberu máximu de sales.", "Edit" : "Editar", + "Descriptive name of this room." : "Un nome descriptivu d'esta sala.", + "Edit \"{room}\"" : "Editar «{room}»", + "Room URL" : "URL de la sala", + "Welcome" : "Afáyate", + "Participant limit" : "Llende de participantes", + "Sharing" : "Compartición", + "Every participant is moderator" : "Tolos participantes son llendadores", + "Miscellaneous" : "Miscelanea", + "Clean layout" : "Distribución llimpia", + "Room name" : "Nome de la sala", "Create" : "Crear", + "Published" : "Espublizóse", + "Open recording" : "Abrir la grabación", "Copy to clipboard" : "Copiar nel cartafueyu", "_%n participant_::_%n participants_" : ["%n participante","%n participantes"], "Delete" : "Desaniciar", + "Delete \"{name}\"?" : "¿Quies desaniciar «{name}»?", + "Select target folder" : "Seleicionar la carpeta de destín", + "Link stored" : "Atroxóse la URL", + "URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.", "Error" : "Error", - "Share" : "Compartir", + "Could not delete record" : "Nun se pudo desaniciar la grabación", + "Server error" : "Error del sirividor", + "Loading" : "Cargando", + "You are not allowed to change this option, because this room is shared with you." : "Nun tienes permisu pa camudar esta opción porque la sala ta compartida contigo.", + "Group …" : "Grupu…", "Settings saved" : "Guardóse la configuración", - "API secret is invalid" : "El secretu de l'API ye inválidu" + "Unexpected error occurred" : "Prodúxose un error inesperáu", + "API URL is invalid" : "La URL de l'API ye inválida", + "API secret is invalid" : "El secretu de l'API ye inválidu", + "URL has to start with HTTPS" : "La URL tien de comenzar per HTTPS", + "The file \"{filename}\" was uploaded to your room." : "Xubióse'l ficheru «{filename}» a la sala.", + "The file \"{filename}\" could not be uploaded to your room." : "Nun se pudo xubir el ficheru «{filename}» a la sala.", + "Send file to BBB" : "Unviar el ficheru a BBB", + "No rooms available!" : "¡Nun hai nenguna sala disponible!" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ast.json b/l10n/ast.json index a885496..1c9c8f4 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -1,19 +1,77 @@ { "translations": { + "You created the room %s." : "Creesti la sala «%s».", + "You deleted the room %s." : "Desaniciesti la sala «%s».", + "{user} deleted the room %s." : "{user} desanició la sala «%s».", + "You shared the room %s with {shareWith}." : "Compartiesti la sala «%s» con {shareWith}.", + "{user} shared the room %s with you." : "{user} compartió la sala «%s» contigo.", + "You unshared the room %s with {shareWith}." : "Dexesti de compartir la sala «%s» con {shareWith}.", + "{user} unshared the room %s with you." : "{user} dexó de compartir la sala «%s» contigo.", + "Recording for room \"%s\" is ready." : "La grabación de la sala «%s» ta preparada.", + "Public" : "Pública", + "API URL or secret not configured. Please contact your administrator." : "Nun se configuró nin la URL nin el secretu de l'API. Ponte en contautu cola alministración.", + "Room not found" : "Nun s'atopó la sala", + "The room could not be found. Maybe it was deleted?" : "Nun se pudo atopar la sala. Quiciabes la desaniciaren", + "Back to %s" : "Volver a «%s»", + "API URL" : "URL de l'API", + "API secret" : "Secretu de l'API", "Save" : "Guardar", + "Below you can change some default values, which are used to create a new room." : "Abaxo pues camudar dalgún valor predetermináu que s'usa pa crear sales nueves.", + "Community" : "Comunidá", + "URL Shortener" : "Acurtiador d'URLs", + "URL shortener" : "Acurtiador d'URLs", "Let's go!" : "¡Vamos!", + "Please enter your name!" : "Introduz el to nome", + "The name must be at least 3 characters long." : "El nome ha ser polo menos de 3 caráuteres", "Display name" : "Nome visible", "Password" : "Contraseña", + "Join" : "Xunise", + "Have an account? Log in." : "¿Tienes una cuenta? Anicia la sesión", "Hello %s" : "Hola, %s", + "Name, group …" : "Nome, grupu…", + "Group" : "Grupu", + "Searching" : "Buscando", + "No matches" : "Nun hai nenguna coincidencia", + "moderator" : "moderador", "Name" : "Nome", + "Access" : "Accesu", + "Recordings" : "Grabaciones", + "You are not permitted to create a room." : "Nun tienes permisu pa crear sales.", "You exceeded the maximum number of rooms." : "Superesti'l númberu máximu de sales.", "Edit" : "Editar", + "Descriptive name of this room." : "Un nome descriptivu d'esta sala.", + "Edit \"{room}\"" : "Editar «{room}»", + "Room URL" : "URL de la sala", + "Welcome" : "Afáyate", + "Participant limit" : "Llende de participantes", + "Sharing" : "Compartición", + "Every participant is moderator" : "Tolos participantes son llendadores", + "Miscellaneous" : "Miscelanea", + "Clean layout" : "Distribución llimpia", + "Room name" : "Nome de la sala", "Create" : "Crear", + "Published" : "Espublizóse", + "Open recording" : "Abrir la grabación", "Copy to clipboard" : "Copiar nel cartafueyu", "_%n participant_::_%n participants_" : ["%n participante","%n participantes"], "Delete" : "Desaniciar", + "Delete \"{name}\"?" : "¿Quies desaniciar «{name}»?", + "Select target folder" : "Seleicionar la carpeta de destín", + "Link stored" : "Atroxóse la URL", + "URL to room could not be stored." : "Nun se pudo atroxar la URL de la sala.", "Error" : "Error", - "Share" : "Compartir", + "Could not delete record" : "Nun se pudo desaniciar la grabación", + "Server error" : "Error del sirividor", + "Loading" : "Cargando", + "You are not allowed to change this option, because this room is shared with you." : "Nun tienes permisu pa camudar esta opción porque la sala ta compartida contigo.", + "Group …" : "Grupu…", "Settings saved" : "Guardóse la configuración", - "API secret is invalid" : "El secretu de l'API ye inválidu" + "Unexpected error occurred" : "Prodúxose un error inesperáu", + "API URL is invalid" : "La URL de l'API ye inválida", + "API secret is invalid" : "El secretu de l'API ye inválidu", + "URL has to start with HTTPS" : "La URL tien de comenzar per HTTPS", + "The file \"{filename}\" was uploaded to your room." : "Xubióse'l ficheru «{filename}» a la sala.", + "The file \"{filename}\" could not be uploaded to your room." : "Nun se pudo xubir el ficheru «{filename}» a la sala.", + "Send file to BBB" : "Unviar el ficheru a BBB", + "No rooms available!" : "¡Nun hai nenguna sala disponible!" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/az.js b/l10n/az.js index fb0b9e7..76a19a6 100644 --- a/l10n/az.js +++ b/l10n/az.js @@ -8,10 +8,11 @@ OC.L10N.register( "Group" : "Qrup", "Name" : "Ad", "Edit" : "Dəyişiklik et", + "Sharing" : "Paylaşılır", "Create" : "Yarat", + "Published" : "Nəşr edilmiş", "Delete" : "Sil", "Error" : "Səhv", - "Share" : "Paylaş", "Loading" : "Loading", "Settings saved" : "Parametrlər yaddaşa verildi" }, diff --git a/l10n/az.json b/l10n/az.json index 3ecd9e8..7fc85c6 100644 --- a/l10n/az.json +++ b/l10n/az.json @@ -6,10 +6,11 @@ "Group" : "Qrup", "Name" : "Ad", "Edit" : "Dəyişiklik et", + "Sharing" : "Paylaşılır", "Create" : "Yarat", + "Published" : "Nəşr edilmiş", "Delete" : "Sil", "Error" : "Səhv", - "Share" : "Paylaş", "Loading" : "Loading", "Settings saved" : "Parametrlər yaddaşa verildi" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/be.js b/l10n/be.js index 1e0e2dc..0054277 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -8,7 +8,6 @@ OC.L10N.register( "Copy to clipboard" : "Капіяваць у буфер абмену", "Delete" : "Delete", "Error" : "Памылка", - "Share" : "Падзяліцца", "Loading" : "Loading" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/l10n/be.json b/l10n/be.json index 7eda82c..baf6373 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -6,7 +6,6 @@ "Copy to clipboard" : "Капіяваць у буфер абмену", "Delete" : "Delete", "Error" : "Памылка", - "Share" : "Падзяліцца", "Loading" : "Loading" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/l10n/bg.js b/l10n/bg.js index 91adc0e..46f086a 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "URL адресът или API тайна не са конфигурирани. Моля, свържете се с вашия администратор.", "BigBlueButton Integration" : " Интеграция с BigBlueButton", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Това приложение позволява да се създават срещи с външно инсталиране на [BigBlueButton](https://bigbluebutton.org).\n\n* **Настройка на стаята** Създайте множество конфигурации на стаите с име, приветствено съобщение ...\n* ** Споделяне на връзка за гости** Споделяне на връзка към стаята с всички ваши гости\n* **Споделяне на модераторска връзка** Поканете модератори в стаята\n* **Споделете стаи** Споделете стаи с членове, групи или кръгове\n* **Персонализирана презентация** Започнете стая с избрана презентация от вашия файлов браузър\n* **Управление на записи** Преглед, споделяне и изтриване на записи за вашите стаи\n* **Ограничения** Ограничаване на създаването на стаи за определени групи\n* **Активности** Преглед на вашите стаи и активности\n\nБързо ръководство за начало и допълнителна информация в нашето [readme](https://github.com/sualko/cloud_bbb).\nХаресва ли ви това приложение? Направете нещо за общността с отворен код и разгледайте нашите\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nТърси се разработчик! Ако имате време, би било страхотно, ако можете да помогнете за подобряването на това приложение.\n\n*Това приложение интегрира BigBlueButton и не е одобрено или сертифицирано от BigBlueButton Inc. Логото на BigBlueButton и на BigBlueButtonса търговски марки на BigBlueButton Inc.*", "Room not found" : "Стаята не е намерена ", "The room could not be found. Maybe it was deleted?" : "Стаята не можа да бъде намерена. Може би е изтрита?", "Back to %s" : "Обратно към %s", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "Група", "Searching" : "Търсене", "No matches" : "Няма съвпадения.", + "admin" : "администратор", + "moderator" : "модератор", "Name" : "Име", "Access" : "Достъп", "Max" : "Макс", @@ -69,7 +70,6 @@ OC.L10N.register( "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." : "Задава ограничение за броя на участниците в тази стая. Нула означава, че няма ограничение.", "If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Публично: Всеки, който знае за връзката, може да се присъедини. Парола: Гостите трябва да предоставят парола. Чакалня: Модераторът трябва да приеме всеки гост, преди той да може да се присъедини. Вътрешно: Само потребители на Nextcloud могат да се присъединят.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Модераторът може да управлява всички участници в среща, включително изгонване, заглушаване или избор на водещ. Потребителите с ролята на модератор също могат да затворят среща или да променят настройките по подразбиране.", "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 на модератор, който позволява достъп с разрешение на модератора.", @@ -82,6 +82,7 @@ OC.L10N.register( "Room URL" : "URL адрес на стая", "Welcome" : "Добре дошли", "Participant limit" : "Лимит на участниците", + "Sharing" : "Споделяне", "Every participant is moderator" : "Всеки участник е модератор", "Moderator access via URL" : "Достъп на модератор чрез URL", "Miscellaneous" : "Разни", @@ -93,6 +94,7 @@ OC.L10N.register( "Join meeting muted" : "Присъединяване към срещата, заглушено", "Room name" : "Име на стаята", "Create" : "Създай", + "Published" : "Публикувано", "Open recording" : "Отворено записване", "Copy to clipboard" : "Копиране в клипборда", "Save as file" : "Запиши като файл", @@ -111,9 +113,7 @@ OC.L10N.register( "Delete?" : "Изтриване?", "Could not delete record" : "Записът не можа да се изтрие", "Server error" : "Сървърна грешка", - "moderator" : "модератор", - "admin" : "администратор", - "Share" : "Сподели", + "Start" : "Начало", "Loading" : "Зареждане", "You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.", "Max. rooms" : "Макс. стаи", diff --git a/l10n/bg.json b/l10n/bg.json index 40d14c4..a1bea7b 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "URL адресът или API тайна не са конфигурирани. Моля, свържете се с вашия администратор.", "BigBlueButton Integration" : " Интеграция с BigBlueButton", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Това приложение позволява да се създават срещи с външно инсталиране на [BigBlueButton](https://bigbluebutton.org).\n\n* **Настройка на стаята** Създайте множество конфигурации на стаите с име, приветствено съобщение ...\n* ** Споделяне на връзка за гости** Споделяне на връзка към стаята с всички ваши гости\n* **Споделяне на модераторска връзка** Поканете модератори в стаята\n* **Споделете стаи** Споделете стаи с членове, групи или кръгове\n* **Персонализирана презентация** Започнете стая с избрана презентация от вашия файлов браузър\n* **Управление на записи** Преглед, споделяне и изтриване на записи за вашите стаи\n* **Ограничения** Ограничаване на създаването на стаи за определени групи\n* **Активности** Преглед на вашите стаи и активности\n\nБързо ръководство за начало и допълнителна информация в нашето [readme](https://github.com/sualko/cloud_bbb).\nХаресва ли ви това приложение? Направете нещо за общността с отворен код и разгледайте нашите\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nТърси се разработчик! Ако имате време, би било страхотно, ако можете да помогнете за подобряването на това приложение.\n\n*Това приложение интегрира BigBlueButton и не е одобрено или сертифицирано от BigBlueButton Inc. Логото на BigBlueButton и на BigBlueButtonса търговски марки на BigBlueButton Inc.*", "Room not found" : "Стаята не е намерена ", "The room could not be found. Maybe it was deleted?" : "Стаята не можа да бъде намерена. Може би е изтрита?", "Back to %s" : "Обратно към %s", @@ -54,6 +53,8 @@ "Group" : "Група", "Searching" : "Търсене", "No matches" : "Няма съвпадения.", + "admin" : "администратор", + "moderator" : "модератор", "Name" : "Име", "Access" : "Достъп", "Max" : "Макс", @@ -67,7 +68,6 @@ "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." : "Задава ограничение за броя на участниците в тази стая. Нула означава, че няма ограничение.", "If enabled, the moderator is able to start the recording." : "Ако е активирано, модераторът може да започне записа.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Публично: Всеки, който знае за връзката, може да се присъедини. Парола: Гостите трябва да предоставят парола. Чакалня: Модераторът трябва да приеме всеки гост, преди той да може да се присъедини. Вътрешно: Само потребители на Nextcloud могат да се присъединят.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Модераторът може да управлява всички участници в среща, включително изгонване, заглушаване или избор на водещ. Потребителите с ролята на модератор също могат да затворят среща или да променят настройките по подразбиране.", "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 на модератор, който позволява достъп с разрешение на модератора.", @@ -80,6 +80,7 @@ "Room URL" : "URL адрес на стая", "Welcome" : "Добре дошли", "Participant limit" : "Лимит на участниците", + "Sharing" : "Споделяне", "Every participant is moderator" : "Всеки участник е модератор", "Moderator access via URL" : "Достъп на модератор чрез URL", "Miscellaneous" : "Разни", @@ -91,6 +92,7 @@ "Join meeting muted" : "Присъединяване към срещата, заглушено", "Room name" : "Име на стаята", "Create" : "Създай", + "Published" : "Публикувано", "Open recording" : "Отворено записване", "Copy to clipboard" : "Копиране в клипборда", "Save as file" : "Запиши като файл", @@ -109,9 +111,7 @@ "Delete?" : "Изтриване?", "Could not delete record" : "Записът не можа да се изтрие", "Server error" : "Сървърна грешка", - "moderator" : "модератор", - "admin" : "администратор", - "Share" : "Сподели", + "Start" : "Начало", "Loading" : "Зареждане", "You are not allowed to change this option, because this room is shared with you." : "Нямате право да променяте тази опция, защото тази стая е споделена с вас.", "Max. rooms" : "Макс. стаи", diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index a1fed67..142c555 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -7,10 +7,10 @@ OC.L10N.register( "Group" : "গোষ্ঠীসমূহ", "Name" : "নাম", "Edit" : "সম্পাদনা", + "Sharing" : "ভাগাভাগিরত", "Create" : "তৈরী কর", "Delete" : "মুছে", "Error" : "সমস্যা", - "Share" : "ভাগাভাগি কর", "Loading" : "Loading" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index 45463b3..81e2002 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -5,10 +5,10 @@ "Group" : "গোষ্ঠীসমূহ", "Name" : "নাম", "Edit" : "সম্পাদনা", + "Sharing" : "ভাগাভাগিরত", "Create" : "তৈরী কর", "Delete" : "মুছে", "Error" : "সমস্যা", - "Share" : "ভাগাভাগি কর", "Loading" : "Loading" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/br.js b/l10n/br.js index 894d695..cfdb1bd 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -11,14 +11,14 @@ OC.L10N.register( "Hello %s" : "Degemer mat %s", "Group" : "Stollad", "No matches" : "Kejadenn ebet", + "admin" : "merour", + "moderator" : "habaskaer", "Name" : "Anv", "Edit" : "Cheñch", + "Sharing" : "Rannan", "Create" : "Krouiñ", "Delete" : "Dilemel", "Error" : "Fazi", - "moderator" : "habaskaer", - "admin" : "merour", - "Share" : "Rannan", "Loading" : "Kargañ", "Settings saved" : "Stummoù enrollet" }, diff --git a/l10n/br.json b/l10n/br.json index bab67b4..e6c752e 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -9,14 +9,14 @@ "Hello %s" : "Degemer mat %s", "Group" : "Stollad", "No matches" : "Kejadenn ebet", + "admin" : "merour", + "moderator" : "habaskaer", "Name" : "Anv", "Edit" : "Cheñch", + "Sharing" : "Rannan", "Create" : "Krouiñ", "Delete" : "Dilemel", "Error" : "Fazi", - "moderator" : "habaskaer", - "admin" : "merour", - "Share" : "Rannan", "Loading" : "Kargañ", "Settings saved" : "Stummoù enrollet" },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" diff --git a/l10n/bs.js b/l10n/bs.js index 65d9d27..755062d 100644 --- a/l10n/bs.js +++ b/l10n/bs.js @@ -7,10 +7,10 @@ OC.L10N.register( "Group" : "Grupa", "Name" : "Ime", "Edit" : "Izmjeni", + "Sharing" : "Dijeljenje", "Create" : "Ustvari", "Delete" : "Obriši", "Error" : "Greška", - "Share" : "Podjeli", "Loading" : "Loading" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/bs.json b/l10n/bs.json index 9b48e7e..c98cb6b 100644 --- a/l10n/bs.json +++ b/l10n/bs.json @@ -5,10 +5,10 @@ "Group" : "Grupa", "Name" : "Ime", "Edit" : "Izmjeni", + "Sharing" : "Dijeljenje", "Create" : "Ustvari", "Delete" : "Obriši", "Error" : "Greška", - "Share" : "Podjeli", "Loading" : "Loading" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/ca.js b/l10n/ca.js index 2f9274c..b9214ad 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -22,7 +22,6 @@ OC.L10N.register( "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 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Aquesta aplicació permet crear reunions amb una instal·lació externa de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuració de sala** Creeu 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** Inicieu una sala amb una presentació seleccionada des del vostre navegador de fitxers\n* **Gestiona les gravacions** Consulta, comparteix i suprimeix les gravacions de les teves sales\n* **Restriccions** Restringeix la creació de sales a determinats grups\n* **Activitats** Obteniu una visió general de les activitats de la vostra sala\n\nGuia d'inici ràpid i més informació al nostre [readme](https://github.com/sualko/cloud_bbb).\nT'agrada aquesta aplicació? Retorna alguna cosa a la comunitat de codi obert i consulta les nostres\n[maneres de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBusquem desenvolupador! Si tens temps, seria fantàstic si 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.*", "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?", "Back to %s" : "Tornar a %s", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "Grup", "Searching" : "Cerca", "No matches" : "Cap coincidència", + "admin" : "administrador", + "moderator" : "moderador", "Name" : "Nom", "Access" : "Accés", "Max" : "Màx", @@ -69,7 +70,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Aquest missatge es mostra a tots els usuaris de l'àrea de xat després d'unir-se.", "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.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Públic: Tothom que sàpiga l'enllaç pot unir-se. Contrasenya: els hostes han de proporcionar una contrasenya. Sala d'espera: un moderador ha d'acceptar tots els convidats abans de poder unir-se. Intern: Només els usuaris de Nextcloud es poden unir.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Un moderador és capaç d'administrar tots els participants en una reunió, incloent fer fora, silenciar o seleccionar un presentador. Els usuaris amb el rol moderador també poden tancar una reunió o canviar els paràmetres per defecte.", "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.", @@ -82,6 +82,7 @@ OC.L10N.register( "Room URL" : "URL de la sala", "Welcome" : "Benvingut", "Participant limit" : "Límit de participants", + "Sharing" : "Ús compartit", "Every participant is moderator" : "Cada participant és moderador", "Moderator access via URL" : "Accés moderador mitjançant URL", "Miscellaneous" : "Miscel·lània", @@ -93,6 +94,7 @@ OC.L10N.register( "Join meeting muted" : "Uneix-te a la reunió en silenci", "Room name" : "Nom de la sala", "Create" : "Crea", + "Published" : "Publicat", "Open recording" : "Obre enregistrament", "Copy to clipboard" : "Copia-ho al porta-papers", "Save as file" : "Desa com a fitxer", @@ -111,9 +113,7 @@ OC.L10N.register( "Delete?" : "Suprimeix?", "Could not delete record" : "No s' ha pogut suprimir el registre", "Server error" : "Error del servidor", - "moderator" : "moderador", - "admin" : "administrador", - "Share" : "Compartir", + "Start" : "Inici", "Loading" : "Carregant", "You are not allowed to change this option, because this room is shared with you." : "No podeu canviar aquesta opció perquè aquesta sala es comparteix amb vostè.", "Max. rooms" : "Màx. sales", diff --git a/l10n/ca.json b/l10n/ca.json index d026dc6..9c8f1e6 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -20,7 +20,6 @@ "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 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Aquesta aplicació permet crear reunions amb una instal·lació externa de [BigBlueButton](https://bigbluebutton.org).\n\n* **Configuració de sala** Creeu 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** Inicieu una sala amb una presentació seleccionada des del vostre navegador de fitxers\n* **Gestiona les gravacions** Consulta, comparteix i suprimeix les gravacions de les teves sales\n* **Restriccions** Restringeix la creació de sales a determinats grups\n* **Activitats** Obteniu una visió general de les activitats de la vostra sala\n\nGuia d'inici ràpid i més informació al nostre [readme](https://github.com/sualko/cloud_bbb).\nT'agrada aquesta aplicació? Retorna alguna cosa a la comunitat de codi obert i consulta les nostres\n[maneres de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBusquem desenvolupador! Si tens temps, seria fantàstic si 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.*", "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?", "Back to %s" : "Tornar a %s", @@ -54,6 +53,8 @@ "Group" : "Grup", "Searching" : "Cerca", "No matches" : "Cap coincidència", + "admin" : "administrador", + "moderator" : "moderador", "Name" : "Nom", "Access" : "Accés", "Max" : "Màx", @@ -67,7 +68,6 @@ "This message is shown to all users in the chat area after they joined." : "Aquest missatge es mostra a tots els usuaris de l'àrea de xat després d'unir-se.", "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.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Públic: Tothom que sàpiga l'enllaç pot unir-se. Contrasenya: els hostes han de proporcionar una contrasenya. Sala d'espera: un moderador ha d'acceptar tots els convidats abans de poder unir-se. Intern: Només els usuaris de Nextcloud es poden unir.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Un moderador és capaç d'administrar tots els participants en una reunió, incloent fer fora, silenciar o seleccionar un presentador. Els usuaris amb el rol moderador també poden tancar una reunió o canviar els paràmetres per defecte.", "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.", @@ -80,6 +80,7 @@ "Room URL" : "URL de la sala", "Welcome" : "Benvingut", "Participant limit" : "Límit de participants", + "Sharing" : "Ús compartit", "Every participant is moderator" : "Cada participant és moderador", "Moderator access via URL" : "Accés moderador mitjançant URL", "Miscellaneous" : "Miscel·lània", @@ -91,6 +92,7 @@ "Join meeting muted" : "Uneix-te a la reunió en silenci", "Room name" : "Nom de la sala", "Create" : "Crea", + "Published" : "Publicat", "Open recording" : "Obre enregistrament", "Copy to clipboard" : "Copia-ho al porta-papers", "Save as file" : "Desa com a fitxer", @@ -109,9 +111,7 @@ "Delete?" : "Suprimeix?", "Could not delete record" : "No s' ha pogut suprimir el registre", "Server error" : "Error del servidor", - "moderator" : "moderador", - "admin" : "administrador", - "Share" : "Compartir", + "Start" : "Inici", "Loading" : "Carregant", "You are not allowed to change this option, because this room is shared with you." : "No podeu canviar aquesta opció perquè aquesta sala es comparteix amb vostè.", "Max. rooms" : "Màx. sales", diff --git a/l10n/cs.js b/l10n/cs.js index d17c446..384b2fd 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -22,7 +22,6 @@ 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.", "BigBlueButton Integration" : "Napojení na BigBlueButton", "BigBlueButton integration for Nextcloud" : "Napojení na BigBlueButton pro Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Tato aplikace umožňuje vytvářet schůzky s externí instalací [BigBlueButton](https://bigbluebutton.org).\n\n* **Vytvoření místnosti** Vytvářejte vícero nastavení pro místnosti s názvem, uvítací zprávou, …\n* **Sdílení odkazem pro hosta** Sdílejte odkaz na místnost se všemi vašimi hosty\n* **Sdílení moderátorským odkazem** Pozvětě moderátory do místnosti\n* **Sdílení místností** Sdílejte místnosti se členy, skupinami nebo okruhy\n* **Uživatelsky určená prezentace** Zahajte místnost s vybranou prezentací z prohlížeče souborů\n* **Správa nahrávek** Zobrazujte, sdílejte a mažte nahrávky z vašich místnosti\n\n* **Omezování** Omezte vytváření místností jen na určité skupiny\n\n* **Aktivity** Dostávejte přehledy o aktivitě vaší místnosti\n\nPříručka pro rychlé seznámení a další informace v našem [čti mě](https://github.com/sualko/cloud_bbb).\nLíbí se vám tato aplikace? Vraťte něco open source komunitě zpět a podívejte se na\n[způsoby jak přispět](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\nHledáme vývojáře! Pokud máte čas, bylo by skvělé pokud byste pomohli s vylepšováním této aplikace.\n\n*Tato aplikace integruje BigBlueButton a není doporučována ani ceritfikována BigBlueButton Inc. BigBlueButton a logo BigBlueButton jsou registrované obchodní značky společnosti BigBlueButton Inc.*", "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?", "Back to %s" : "Zpět na %s", @@ -56,6 +55,9 @@ OC.L10N.register( "Group" : "Skupina", "Searching" : "Hledá se", "No matches" : "Žádné shody", + "admin" : "správce", + "moderator" : "moderátor", + "user" : "uživatel", "Name" : "Název", "Access" : "Přístup", "Max" : "Nejvýše", @@ -69,7 +71,7 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Tato zpráva je zobrazena všem uživatelům v chatu, poté co se připojí.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastaví limit na počet účastníků pro tuto místnost. Nula znamená bez omezení.", "If enabled, the moderator is able to start the recording." : "Pokud je zapnuto, moderátor může spustit nahrávání.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Veřejné: Každý, kdo zná odkaz se může připojit. Heslo: Je třeba, aby host zadal heslo. Čekárna: Je třeba, aby moderátor přijal každého z hostů a teprve pak se budou moci připojit. Interní: Připojit se mohou pouze uživatelé s účtem na Nextcloud.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Vysvětlení různých pojmů, které tvoří možnosti přístupu :
- Veřejné: Kdokoli kdo má dokaz se může přidat.-
Interní: Připojit se mohou pouze uživatelé z Nextcloud.-
Heslo: Připojit se mohou pouze hosté, kteří mají heslo.-
Čekací místnost: Než se host bude moci připojit je třeba, aby každého zvlášť přijal moderátor.-
Omezené : K této místnosti budou mít přístup pouze vybraní uživatelé a skupiny.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderátor může spravovat všechny účastníky schůzky, včetně odpojení, ztlumení nebo výběru prezentujícího. Uživatelé s rolí moderátor také mohou schůzku ukončit nebo měnit výchozí nastavení.", "If enabled, normal users have to wait until a moderator is in the room." : "Pokud je zapnuto, běžní uživatelé budou muset počkat, než se do místnosti přihlásí moderátor.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Po povolení bude vygenerován moderátorský URL umožňující přístup s moderátorskými právy.", @@ -82,6 +84,7 @@ OC.L10N.register( "Room URL" : "URL místnosti", "Welcome" : "Vítejte", "Participant limit" : "Limit počtu účastníků", + "Sharing" : "Sdílení", "Every participant is moderator" : "Každý z účastníků má práva moderátora", "Moderator access via URL" : "Moderátorský přístup přez URL", "Miscellaneous" : "Různé", @@ -93,6 +96,7 @@ OC.L10N.register( "Join meeting muted" : "Připojit ke schůzce ztlumené", "Room name" : "Název místnosti", "Create" : "Vytvořit", + "Published" : "Zveřejněno", "Open recording" : "Zahájit zaznamenávání", "Copy to clipboard" : "Zkopírovat do schránky", "Save as file" : "Uložit jako soubor", @@ -111,9 +115,10 @@ OC.L10N.register( "Delete?" : "Smazat?", "Could not delete record" : "Záznam se nedaří smazat", "Server error" : "Chyba serveru", - "moderator" : "moderátor", - "admin" : "správce", - "Share" : "Sdílet", + "Could not modify publishing state" : "Nepodařilo se změnit stav zvěřejnění", + "Open room" : "Otevřít místnost", + "Start" : "Spustit", + "Clone room" : "Klonovat místnost", "Loading" : "Načítání", "You are not allowed to change this option, because this room is shared with you." : "Nemáte oprávnění měnit tuto volbu, protože tato místnost je vám jen nasdílena.", "Max. rooms" : "Nejvýše místností", diff --git a/l10n/cs.json b/l10n/cs.json index e3a31bf..debb94c 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -20,7 +20,6 @@ "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 for Nextcloud" : "Napojení na BigBlueButton pro Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Tato aplikace umožňuje vytvářet schůzky s externí instalací [BigBlueButton](https://bigbluebutton.org).\n\n* **Vytvoření místnosti** Vytvářejte vícero nastavení pro místnosti s názvem, uvítací zprávou, …\n* **Sdílení odkazem pro hosta** Sdílejte odkaz na místnost se všemi vašimi hosty\n* **Sdílení moderátorským odkazem** Pozvětě moderátory do místnosti\n* **Sdílení místností** Sdílejte místnosti se členy, skupinami nebo okruhy\n* **Uživatelsky určená prezentace** Zahajte místnost s vybranou prezentací z prohlížeče souborů\n* **Správa nahrávek** Zobrazujte, sdílejte a mažte nahrávky z vašich místnosti\n\n* **Omezování** Omezte vytváření místností jen na určité skupiny\n\n* **Aktivity** Dostávejte přehledy o aktivitě vaší místnosti\n\nPříručka pro rychlé seznámení a další informace v našem [čti mě](https://github.com/sualko/cloud_bbb).\nLíbí se vám tato aplikace? Vraťte něco open source komunitě zpět a podívejte se na\n[způsoby jak přispět](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\nHledáme vývojáře! Pokud máte čas, bylo by skvělé pokud byste pomohli s vylepšováním této aplikace.\n\n*Tato aplikace integruje BigBlueButton a není doporučována ani ceritfikována BigBlueButton Inc. BigBlueButton a logo BigBlueButton jsou registrované obchodní značky společnosti BigBlueButton Inc.*", "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?", "Back to %s" : "Zpět na %s", @@ -54,6 +53,9 @@ "Group" : "Skupina", "Searching" : "Hledá se", "No matches" : "Žádné shody", + "admin" : "správce", + "moderator" : "moderátor", + "user" : "uživatel", "Name" : "Název", "Access" : "Přístup", "Max" : "Nejvýše", @@ -67,7 +69,7 @@ "This message is shown to all users in the chat area after they joined." : "Tato zpráva je zobrazena všem uživatelům v chatu, poté co se připojí.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastaví limit na počet účastníků pro tuto místnost. Nula znamená bez omezení.", "If enabled, the moderator is able to start the recording." : "Pokud je zapnuto, moderátor může spustit nahrávání.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Veřejné: Každý, kdo zná odkaz se může připojit. Heslo: Je třeba, aby host zadal heslo. Čekárna: Je třeba, aby moderátor přijal každého z hostů a teprve pak se budou moci připojit. Interní: Připojit se mohou pouze uživatelé s účtem na Nextcloud.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Vysvětlení různých pojmů, které tvoří možnosti přístupu :
- Veřejné: Kdokoli kdo má dokaz se může přidat.-
Interní: Připojit se mohou pouze uživatelé z Nextcloud.-
Heslo: Připojit se mohou pouze hosté, kteří mají heslo.-
Čekací místnost: Než se host bude moci připojit je třeba, aby každého zvlášť přijal moderátor.-
Omezené : K této místnosti budou mít přístup pouze vybraní uživatelé a skupiny.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderátor může spravovat všechny účastníky schůzky, včetně odpojení, ztlumení nebo výběru prezentujícího. Uživatelé s rolí moderátor také mohou schůzku ukončit nebo měnit výchozí nastavení.", "If enabled, normal users have to wait until a moderator is in the room." : "Pokud je zapnuto, běžní uživatelé budou muset počkat, než se do místnosti přihlásí moderátor.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Po povolení bude vygenerován moderátorský URL umožňující přístup s moderátorskými právy.", @@ -80,6 +82,7 @@ "Room URL" : "URL místnosti", "Welcome" : "Vítejte", "Participant limit" : "Limit počtu účastníků", + "Sharing" : "Sdílení", "Every participant is moderator" : "Každý z účastníků má práva moderátora", "Moderator access via URL" : "Moderátorský přístup přez URL", "Miscellaneous" : "Různé", @@ -91,6 +94,7 @@ "Join meeting muted" : "Připojit ke schůzce ztlumené", "Room name" : "Název místnosti", "Create" : "Vytvořit", + "Published" : "Zveřejněno", "Open recording" : "Zahájit zaznamenávání", "Copy to clipboard" : "Zkopírovat do schránky", "Save as file" : "Uložit jako soubor", @@ -109,9 +113,10 @@ "Delete?" : "Smazat?", "Could not delete record" : "Záznam se nedaří smazat", "Server error" : "Chyba serveru", - "moderator" : "moderátor", - "admin" : "správce", - "Share" : "Sdílet", + "Could not modify publishing state" : "Nepodařilo se změnit stav zvěřejnění", + "Open room" : "Otevřít místnost", + "Start" : "Spustit", + "Clone room" : "Klonovat místnost", "Loading" : "Načítání", "You are not allowed to change this option, because this room is shared with you." : "Nemáte oprávnění měnit tuto volbu, protože tato místnost je vám jen nasdílena.", "Max. rooms" : "Nejvýše místností", diff --git a/l10n/cy_GB.js b/l10n/cy_GB.js index 9622355..081ce86 100644 --- a/l10n/cy_GB.js +++ b/l10n/cy_GB.js @@ -12,7 +12,6 @@ OC.L10N.register( "Create" : "Creu", "Delete" : "Dileu", "Error" : "Gwall", - "Share" : "Rhannu", "Loading" : "Llwytho" }, "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); diff --git a/l10n/cy_GB.json b/l10n/cy_GB.json index 6de47ec..01069de 100644 --- a/l10n/cy_GB.json +++ b/l10n/cy_GB.json @@ -10,7 +10,6 @@ "Create" : "Creu", "Delete" : "Dileu", "Error" : "Gwall", - "Share" : "Rhannu", "Loading" : "Llwytho" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/da.js b/l10n/da.js index 8138d08..9f72d4b 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -6,26 +6,28 @@ OC.L10N.register( "Save" : "Gem", "Community" : "Onlinefællesskab", "Display name" : "Vist navn", - "Password" : "Adgangskode", + "Password" : "Password", "Join" : "Deltag", "Hello %s" : "Hej %s", "Group" : "Gruppe", "No matches" : "Ingen matches", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Navn", "Access" : "Adgang", "Max" : "Maks", "Edit" : "Rediger", "Welcome" : "Velkommen", + "Sharing" : "Deling", "Miscellaneous" : "Diverse", + "Room name" : "Rumnavn", "Create" : "Opret", + "Published" : "Udgivet", "Copy to clipboard" : "Kopier til udklipsholder", "Delete" : "Slet", "Error" : "Fejl", "Delete?" : "Slet?", "Server error" : "Serverfejl", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Del", "Loading" : "Indlæser", "Settings saved" : "Indstillinger gemt" }, diff --git a/l10n/da.json b/l10n/da.json index 3e3cfc7..1a03b14 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -4,26 +4,28 @@ "Save" : "Gem", "Community" : "Onlinefællesskab", "Display name" : "Vist navn", - "Password" : "Adgangskode", + "Password" : "Password", "Join" : "Deltag", "Hello %s" : "Hej %s", "Group" : "Gruppe", "No matches" : "Ingen matches", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Navn", "Access" : "Adgang", "Max" : "Maks", "Edit" : "Rediger", "Welcome" : "Velkommen", + "Sharing" : "Deling", "Miscellaneous" : "Diverse", + "Room name" : "Rumnavn", "Create" : "Opret", + "Published" : "Udgivet", "Copy to clipboard" : "Kopier til udklipsholder", "Delete" : "Slet", "Error" : "Fejl", "Delete?" : "Slet?", "Server error" : "Serverfejl", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Del", "Loading" : "Indlæser", "Settings saved" : "Indstillinger gemt" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/de.js b/l10n/de.js index bc753f7..de955b0 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API-URL oder secret (geheime Phrase) nicht konfiguriert. Bitte wende dich an den Administrator.", "BigBlueButton Integration" : "BigBlueButton-Einbindung", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "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, Begrüßungsnachricht …\n* **Gast-Link teilen** Teile den Raum-Link mit allen deinen Gästen\n* **Moderatoren-Link freigeben** Moderatoren in den Raum einladen\n* **Räume freigeben** Räume für Mitglieder, Gruppen oder Kreise freigeben\n* **Benutzerdefinierte Präsentation** Einen Raum mit einer ausgewählten Präsentation aus deinem Dateibrowser starten\n* Aufnahmen verwalten** Aufnahmen für deine Räume ansehen, freigeben und löschen\n* **Einschränkungen** Beschränke die Erstellung von Räumen auf bestimmte Gruppen\n* **Aktivitäten** Verschaffe dir einen Überblick über deine Raumaktivitäten\n\nSchnellstartanleitung und weitere Informationen in unserer [readme](https://github.com/sualko/cloud_bbb).\nGefällt dir diese Anwendung? Gib der Open-Source-Gemeinschaft etwas zurück und schaue dir unsere\n[Wege zur Mitarbeit](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md) an.\n\nEntwickler gesucht! 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 Warenzeichen 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.*", "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?", "Back to %s" : "Zurück zu %s", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Gruppe", "Searching" : "Suche", "No matches" : "Keine Übereinstimmungen", + "admin" : "Administrator", + "moderator" : "Moderator", + "user" : "Benutzer", "Name" : "Name", "Access" : "Zugriff", "Max" : "Max", @@ -69,7 +72,7 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Diese Nachricht wird allen Benutzern im Chat-Bereich nach ihrem Beitritt angezeigt.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Legt eine Begrenzung der Teilnehmerzahl für diesen Raum fest. Null bedeutet, dass es keine Begrenzung gibt.", "If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Erläuterung der verschiedenen Konzepte bezüglich der Zugriffsrechte:
- Öffentlich: Jeder, der den Link hat, kann beitreten.
- Intern: Nur Nextcloud-Benutzer können beitreten.
- Passwort: Nur Gäste, die das Passwort haben, können beitreten.
- Warteraum: Ein Moderator muss jeden Gast vor dem Beitreten bestätigen.
– Eingeschränkt: Nur ausgewählte Benutzer und Gruppen haben Zugriff auf diesen Raum.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ein Moderator kann die Teilnehmer einer Besprechung verwalten, was das Ausschließen, Stummschalten oder Gewährung von Moderatorenrechten beinhaltet. Benutzer mit Moderatorenrechten können auch die Besprechung schließen oder die Standardeinstellungen ändern.", "If enabled, normal users have to wait until a moderator is in the room." : "Wenn aktiviert müssen Benutzer warten, bis ein Moderator den Raum betritt.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Wenn aktiviert, wird eine Moderator-URL generiert, die den Zugriff mit Moderatorberechtigung ermöglicht.", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "Raum-URL", "Welcome" : "Willkommen", "Participant limit" : "Teilnehmerbegrenzung", + "Sharing" : "Teilen", "Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte", "Moderator access via URL" : "Moderatorenzugriff über URL", "Miscellaneous" : "Verschiedenes", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "Der Besprechung stumm beitreten", "Room name" : "Raumname", "Create" : "Erstellen", + "Published" : "Veröffentlicht", "Open recording" : "Aufnahme öffnen", "Copy to clipboard" : "In die Zwischenablage kopieren", "Save as file" : "Als Datei speichern", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Löschen?", "Could not delete record" : "Aufnahme konnte nicht gelöscht werden", "Server error" : "Serverfehler", - "moderator" : "Moderator", - "admin" : "Administrator", - "Share" : "Teilen", + "Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden", + "Open room" : "Raum öffnen", + "Start" : "Start", + "Clone room" : "Raum duplizieren", "Loading" : "Lade", "You are not allowed to change this option, because this room is shared with you." : "Du bist nicht berechtigt, diese Einstellung zu ändern, da dieser Raum mit dir geteilt wurde.", "Max. rooms" : "Max. Räume", diff --git a/l10n/de.json b/l10n/de.json index f847ab4..e7fca2f 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "API-URL oder secret (geheime Phrase) nicht konfiguriert. Bitte wende dich an den Administrator.", "BigBlueButton Integration" : "BigBlueButton-Einbindung", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "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, Begrüßungsnachricht …\n* **Gast-Link teilen** Teile den Raum-Link mit allen deinen Gästen\n* **Moderatoren-Link freigeben** Moderatoren in den Raum einladen\n* **Räume freigeben** Räume für Mitglieder, Gruppen oder Kreise freigeben\n* **Benutzerdefinierte Präsentation** Einen Raum mit einer ausgewählten Präsentation aus deinem Dateibrowser starten\n* Aufnahmen verwalten** Aufnahmen für deine Räume ansehen, freigeben und löschen\n* **Einschränkungen** Beschränke die Erstellung von Räumen auf bestimmte Gruppen\n* **Aktivitäten** Verschaffe dir einen Überblick über deine Raumaktivitäten\n\nSchnellstartanleitung und weitere Informationen in unserer [readme](https://github.com/sualko/cloud_bbb).\nGefällt dir diese Anwendung? Gib der Open-Source-Gemeinschaft etwas zurück und schaue dir unsere\n[Wege zur Mitarbeit](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md) an.\n\nEntwickler gesucht! 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 Warenzeichen 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.*", "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?", "Back to %s" : "Zurück zu %s", @@ -54,6 +54,9 @@ "Group" : "Gruppe", "Searching" : "Suche", "No matches" : "Keine Übereinstimmungen", + "admin" : "Administrator", + "moderator" : "Moderator", + "user" : "Benutzer", "Name" : "Name", "Access" : "Zugriff", "Max" : "Max", @@ -67,7 +70,7 @@ "This message is shown to all users in the chat area after they joined." : "Diese Nachricht wird allen Benutzern im Chat-Bereich nach ihrem Beitritt angezeigt.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Legt eine Begrenzung der Teilnehmerzahl für diesen Raum fest. Null bedeutet, dass es keine Begrenzung gibt.", "If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Erläuterung der verschiedenen Konzepte bezüglich der Zugriffsrechte:
- Öffentlich: Jeder, der den Link hat, kann beitreten.
- Intern: Nur Nextcloud-Benutzer können beitreten.
- Passwort: Nur Gäste, die das Passwort haben, können beitreten.
- Warteraum: Ein Moderator muss jeden Gast vor dem Beitreten bestätigen.
– Eingeschränkt: Nur ausgewählte Benutzer und Gruppen haben Zugriff auf diesen Raum.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ein Moderator kann die Teilnehmer einer Besprechung verwalten, was das Ausschließen, Stummschalten oder Gewährung von Moderatorenrechten beinhaltet. Benutzer mit Moderatorenrechten können auch die Besprechung schließen oder die Standardeinstellungen ändern.", "If enabled, normal users have to wait until a moderator is in the room." : "Wenn aktiviert müssen Benutzer warten, bis ein Moderator den Raum betritt.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Wenn aktiviert, wird eine Moderator-URL generiert, die den Zugriff mit Moderatorberechtigung ermöglicht.", @@ -80,6 +83,7 @@ "Room URL" : "Raum-URL", "Welcome" : "Willkommen", "Participant limit" : "Teilnehmerbegrenzung", + "Sharing" : "Teilen", "Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte", "Moderator access via URL" : "Moderatorenzugriff über URL", "Miscellaneous" : "Verschiedenes", @@ -91,6 +95,7 @@ "Join meeting muted" : "Der Besprechung stumm beitreten", "Room name" : "Raumname", "Create" : "Erstellen", + "Published" : "Veröffentlicht", "Open recording" : "Aufnahme öffnen", "Copy to clipboard" : "In die Zwischenablage kopieren", "Save as file" : "Als Datei speichern", @@ -109,9 +114,10 @@ "Delete?" : "Löschen?", "Could not delete record" : "Aufnahme konnte nicht gelöscht werden", "Server error" : "Serverfehler", - "moderator" : "Moderator", - "admin" : "Administrator", - "Share" : "Teilen", + "Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden", + "Open room" : "Raum öffnen", + "Start" : "Start", + "Clone room" : "Raum duplizieren", "Loading" : "Lade", "You are not allowed to change this option, because this room is shared with you." : "Du bist nicht berechtigt, diese Einstellung zu ändern, da dieser Raum mit dir geteilt wurde.", "Max. rooms" : "Max. Räume", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index fda5ddc..6db243e 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API-URL oder Secret (geheime Phrase) nicht konfiguriert. Bitte wenden Sie sich an den Administrator.", "BigBlueButton Integration" : "BigBlueButton-Einbindung", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "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, Begrüßungsnachricht …\n* **Gast-Link teilen** Teilen Sie den Raum-Link mit allen Ihren Gästen\n* **Moderatoren-Link freigeben** Moderatoren in den Raum einladen\n* **Räume freigeben** Räume für Mitglieder, Gruppen oder Kreise freigeben\n* **Benutzerdefinierte Präsentation** Einen Raum mit einer ausgewählten Präsentation aus Ihrem Dateibrowser starten\n* Aufnahmen verwalten** Aufnahmen für Ihre Räume ansehen, freigeben und löschen\n* **Einschränkungen** Beschränken Sie die Erstellung von Räumen auf bestimmte Gruppen\n* **Aktivitäten** Verschaffen Sie sich einen Überblick über Ihre Raumaktivitäten\n\nSchnellstartanleitung und weitere Informationen in unserer [readme](https://github.com/sualko/cloud_bbb).\nGefällt Ihnen diese Anwendung? Geben Sie der Open-Source-Gemeinschaft etwas zurück und schauen Sie sich unsere\n[Wege zur Mitarbeit](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nEntwickler gesucht! 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 Warenzeichen 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.*", "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?", "Back to %s" : "Zurück zu %s", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Gruppe", "Searching" : "Suche", "No matches" : "Keine Übereinstimmungen", + "admin" : "Administrator", + "moderator" : "Moderator", + "user" : "Benutzer", "Name" : "Name", "Access" : "Zugriff", "Max" : "Max", @@ -69,7 +72,7 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Diese Nachricht wird allen Benutzern im Chat-Bereich nach ihrem Beitritt angezeigt.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Legt eine Begrenzung der Teilnehmerzahl für diesen Raum fest. Null bedeutet, dass es keine Begrenzung gibt.", "If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Erläuterung der verschiedenen Konzepte bezüglich der Zugriffsrechte:
- Öffentlich: Jeder, der den Link hat, kann beitreten.
- Intern: Nur Nextcloud-Benutzer können beitreten.
- Passwort: Nur Gäste, die das Passwort haben, können beitreten.
- Warteraum: Ein Moderator muss jeden Gast vor dem Beitreten bestätigen.
– Eingeschränkt: Nur ausgewählte Benutzer und Gruppen haben Zugriff auf diesen Raum.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ein Moderator kann die Teilnehmer einer Besprechung verwalten, was das Ausschließen, Stummschalten oder Gewährung von Moderatorenrechten beinhaltet. Benutzer mit Moderatorenrechten können auch die Besprechung schließen oder die Standardeinstellungen ändern.", "If enabled, normal users have to wait until a moderator is in the room." : "Wenn aktiviert müssen Benutzer warten, bis ein Moderator den Raum betritt.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Wenn aktiviert, wird eine Moderator-URL generiert, die den Zugriff mit Moderatorberechtigung ermöglicht.", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "Raum-URL", "Welcome" : "Willkommen", "Participant limit" : "Teilnehmerbegrenzung", + "Sharing" : "Teilen", "Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte", "Moderator access via URL" : "Moderatorenzugriff über URL", "Miscellaneous" : "Verschiedenes", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "Besprechung stumm beitreten", "Room name" : "Raumname", "Create" : "Erstellen", + "Published" : "Veröffentlicht", "Open recording" : "Aufnahme öffnen", "Copy to clipboard" : "In die Zwischenablage kopieren", "Save as file" : "Als Datei speichern", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Löschen?", "Could not delete record" : "Aufnahme konnte nicht gelöscht werden", "Server error" : "Serverfehler", - "moderator" : "Moderator", - "admin" : "Administrator", - "Share" : "Teilen", + "Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden", + "Open room" : "Raum öffnen", + "Start" : "Start", + "Clone room" : "Raum duplizieren", "Loading" : "Lade", "You are not allowed to change this option, because this room is shared with you." : "Sie können diese Einstellung nicht ändern, da dieser Raum mit Ihnen geteilt wurde.", "Max. rooms" : "Max. Räume", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 8bf5efb..d53fb0e 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "API-URL oder Secret (geheime Phrase) nicht konfiguriert. Bitte wenden Sie sich an den Administrator.", "BigBlueButton Integration" : "BigBlueButton-Einbindung", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "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, Begrüßungsnachricht …\n* **Gast-Link teilen** Teilen Sie den Raum-Link mit allen Ihren Gästen\n* **Moderatoren-Link freigeben** Moderatoren in den Raum einladen\n* **Räume freigeben** Räume für Mitglieder, Gruppen oder Kreise freigeben\n* **Benutzerdefinierte Präsentation** Einen Raum mit einer ausgewählten Präsentation aus Ihrem Dateibrowser starten\n* Aufnahmen verwalten** Aufnahmen für Ihre Räume ansehen, freigeben und löschen\n* **Einschränkungen** Beschränken Sie die Erstellung von Räumen auf bestimmte Gruppen\n* **Aktivitäten** Verschaffen Sie sich einen Überblick über Ihre Raumaktivitäten\n\nSchnellstartanleitung und weitere Informationen in unserer [readme](https://github.com/sualko/cloud_bbb).\nGefällt Ihnen diese Anwendung? Geben Sie der Open-Source-Gemeinschaft etwas zurück und schauen Sie sich unsere\n[Wege zur Mitarbeit](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nEntwickler gesucht! 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 Warenzeichen 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.*", "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?", "Back to %s" : "Zurück zu %s", @@ -54,6 +54,9 @@ "Group" : "Gruppe", "Searching" : "Suche", "No matches" : "Keine Übereinstimmungen", + "admin" : "Administrator", + "moderator" : "Moderator", + "user" : "Benutzer", "Name" : "Name", "Access" : "Zugriff", "Max" : "Max", @@ -67,7 +70,7 @@ "This message is shown to all users in the chat area after they joined." : "Diese Nachricht wird allen Benutzern im Chat-Bereich nach ihrem Beitritt angezeigt.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Legt eine Begrenzung der Teilnehmerzahl für diesen Raum fest. Null bedeutet, dass es keine Begrenzung gibt.", "If enabled, the moderator is able to start the recording." : "Wenn aktiviert, kann der Moderator die Aufnahme starten.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Öffentlich: Jeder, der den Link kennt, kann beitreten. Passwort: Gäste müssen ein Passwort eingeben. Wartezimmer: Ein Moderator muss jeden Gast akzeptieren, bevor er beitreten kann. Intern: Nur Nextcloud-Benutzer können beitreten.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Erläuterung der verschiedenen Konzepte bezüglich der Zugriffsrechte:
- Öffentlich: Jeder, der den Link hat, kann beitreten.
- Intern: Nur Nextcloud-Benutzer können beitreten.
- Passwort: Nur Gäste, die das Passwort haben, können beitreten.
- Warteraum: Ein Moderator muss jeden Gast vor dem Beitreten bestätigen.
– Eingeschränkt: Nur ausgewählte Benutzer und Gruppen haben Zugriff auf diesen Raum.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ein Moderator kann die Teilnehmer einer Besprechung verwalten, was das Ausschließen, Stummschalten oder Gewährung von Moderatorenrechten beinhaltet. Benutzer mit Moderatorenrechten können auch die Besprechung schließen oder die Standardeinstellungen ändern.", "If enabled, normal users have to wait until a moderator is in the room." : "Wenn aktiviert müssen Benutzer warten, bis ein Moderator den Raum betritt.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Wenn aktiviert, wird eine Moderator-URL generiert, die den Zugriff mit Moderatorberechtigung ermöglicht.", @@ -80,6 +83,7 @@ "Room URL" : "Raum-URL", "Welcome" : "Willkommen", "Participant limit" : "Teilnehmerbegrenzung", + "Sharing" : "Teilen", "Every participant is moderator" : "Alle Teilnehmer haben Moderatorenrechte", "Moderator access via URL" : "Moderatorenzugriff über URL", "Miscellaneous" : "Verschiedenes", @@ -91,6 +95,7 @@ "Join meeting muted" : "Besprechung stumm beitreten", "Room name" : "Raumname", "Create" : "Erstellen", + "Published" : "Veröffentlicht", "Open recording" : "Aufnahme öffnen", "Copy to clipboard" : "In die Zwischenablage kopieren", "Save as file" : "Als Datei speichern", @@ -109,9 +114,10 @@ "Delete?" : "Löschen?", "Could not delete record" : "Aufnahme konnte nicht gelöscht werden", "Server error" : "Serverfehler", - "moderator" : "Moderator", - "admin" : "Administrator", - "Share" : "Teilen", + "Could not modify publishing state" : "Der Veröffentlichungsstatus konnte nicht geändert werden", + "Open room" : "Raum öffnen", + "Start" : "Start", + "Clone room" : "Raum duplizieren", "Loading" : "Lade", "You are not allowed to change this option, because this room is shared with you." : "Sie können diese Einstellung nicht ändern, da dieser Raum mit Ihnen geteilt wurde.", "Max. rooms" : "Max. Räume", diff --git a/l10n/el.js b/l10n/el.js index 63c1107..63262e1 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -47,6 +47,8 @@ OC.L10N.register( "Group" : "Ομάδα", "Searching" : "Αναζήτηση", "No matches" : "Καμιά αντιστοιχία", + "admin" : "διαχειριστής", + "moderator" : "συντονιστής", "Name" : "Όνομα", "Access" : "Πρόσβαση", "Max" : "Μέγιστο", @@ -60,7 +62,6 @@ OC.L10N.register( "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." : "Ορίζει ένα όριο στον αριθμό των συμμετεχόντων σε αυτό το δωμάτιο. Το μηδέν σημαίνει χωρίς όριο.", "If enabled, the moderator is able to start the recording." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Δημόσιο: Όσοι γνωρίζουν τον σύνδεσμο μπορούν να συμμετάσχουν. Κωδικός πρόσβασης: Οι επισκέπτες πρέπει να δώσουν έναν κωδικό. Αίθουσα αναμονής: Ένας συντονιστής πρέπει να δεχτεί κάθε επισκέπτη πριν μπορέσει να συμμετάσχει. Εσωτερικά: Μόνο οι χρήστες Nextcloud μπορούν να συμμετάσχουν.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ένας συντονιστής είναι σε θέση να διαχειριστεί όλους τους συμμετέχοντες σε μια σύσκεψη, συμπεριλαμβανομένων την αφαίρεση χρήστη, σίγασης ή επιλογής παρουσιαστή. Οι χρήστες με τον ρόλο του συντονιστή μπορούν επίσης να κλείσουν μια σύσκεψη ή να αλλάξουν τις προεπιλεγμένες ρυθμίσεις.", "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." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.", @@ -69,6 +70,7 @@ OC.L10N.register( "Room URL" : "URL αίθουσας", "Welcome" : "Καλώς ήλθατε", "Participant limit" : "Όριο συμμετεχόντων", + "Sharing" : "Διαμοιρασμός", "Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές", "Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου", "Miscellaneous" : "Διάφορα", @@ -76,6 +78,7 @@ OC.L10N.register( "Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου", "Room name" : "Όνομα δωματίου", "Create" : "Δημιουργία", + "Published" : "Δημοσιεύτηκε", "Open recording" : "Άνοιγμα καταγραφής", "Copy to clipboard" : "Αντιγραφή στο πρόχειρο", "Save as file" : "Αποθήκευση ως αρχείο", @@ -92,9 +95,7 @@ OC.L10N.register( "Delete?" : "Διαγραφή;", "Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή", "Server error" : "Σφάλμα διακομιστή", - "moderator" : "συντονιστής", - "admin" : "διαχειριστής", - "Share" : "Κοινή χρήση", + "Start" : "Έναρξη", "Loading" : "Γίνεται φόρτωση", "You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.", "Max. rooms" : "Μέγιστα δωμάτια", diff --git a/l10n/el.json b/l10n/el.json index c7cc6fa..d571bb3 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -45,6 +45,8 @@ "Group" : "Ομάδα", "Searching" : "Αναζήτηση", "No matches" : "Καμιά αντιστοιχία", + "admin" : "διαχειριστής", + "moderator" : "συντονιστής", "Name" : "Όνομα", "Access" : "Πρόσβαση", "Max" : "Μέγιστο", @@ -58,7 +60,6 @@ "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." : "Ορίζει ένα όριο στον αριθμό των συμμετεχόντων σε αυτό το δωμάτιο. Το μηδέν σημαίνει χωρίς όριο.", "If enabled, the moderator is able to start the recording." : "Εάν είναι ενεργοποιημένο, ο διαχειριστής μπορεί να ξεκινήσει την εγγραφή.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Δημόσιο: Όσοι γνωρίζουν τον σύνδεσμο μπορούν να συμμετάσχουν. Κωδικός πρόσβασης: Οι επισκέπτες πρέπει να δώσουν έναν κωδικό. Αίθουσα αναμονής: Ένας συντονιστής πρέπει να δεχτεί κάθε επισκέπτη πριν μπορέσει να συμμετάσχει. Εσωτερικά: Μόνο οι χρήστες Nextcloud μπορούν να συμμετάσχουν.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Ένας συντονιστής είναι σε θέση να διαχειριστεί όλους τους συμμετέχοντες σε μια σύσκεψη, συμπεριλαμβανομένων την αφαίρεση χρήστη, σίγασης ή επιλογής παρουσιαστή. Οι χρήστες με τον ρόλο του συντονιστή μπορούν επίσης να κλείσουν μια σύσκεψη ή να αλλάξουν τις προεπιλεγμένες ρυθμίσεις.", "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." : "Όταν ενεργοποιείται, ένας σύνδεσμος συντονιστή παράγεται ο οποίος επιτρέπει την πρόσβαση με άδεια συντονιστή.", @@ -67,6 +68,7 @@ "Room URL" : "URL αίθουσας", "Welcome" : "Καλώς ήλθατε", "Participant limit" : "Όριο συμμετεχόντων", + "Sharing" : "Διαμοιρασμός", "Every participant is moderator" : "Όλοι οι συμμετέχοντες είναι συντονιστές", "Moderator access via URL" : "Πρόσβαση συντονιστή μέσω συνδέσμου", "Miscellaneous" : "Διάφορα", @@ -74,6 +76,7 @@ "Require moderator to start room" : "Απαιτείται ένας διαχειριστής για έναρξη του δωματίου", "Room name" : "Όνομα δωματίου", "Create" : "Δημιουργία", + "Published" : "Δημοσιεύτηκε", "Open recording" : "Άνοιγμα καταγραφής", "Copy to clipboard" : "Αντιγραφή στο πρόχειρο", "Save as file" : "Αποθήκευση ως αρχείο", @@ -90,9 +93,7 @@ "Delete?" : "Διαγραφή;", "Could not delete record" : "Η ηχογράφηση δεν μπορεί να διαγραφή", "Server error" : "Σφάλμα διακομιστή", - "moderator" : "συντονιστής", - "admin" : "διαχειριστής", - "Share" : "Κοινή χρήση", + "Start" : "Έναρξη", "Loading" : "Γίνεται φόρτωση", "You are not allowed to change this option, because this room is shared with you." : "Δεν επιτρέπεται να αλλάξετε αυτήν την επιλογή, επειδή αυτό το δωμάτιο είναι κοινόχρηστο μαζί σας.", "Max. rooms" : "Μέγιστα δωμάτια", diff --git a/l10n/en_GB.js b/l10n/en_GB.js index dc77694..f4e2815 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API URL or secret not configured. Please contact your administrator.", "BigBlueButton Integration" : "BigBlueButton Integration", "BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*", + "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.*", "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", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Group", "Searching" : "Searching", "No matches" : "No matches", + "admin" : "admin", + "moderator" : "moderator", + "user" : "user", "Name" : "Name", "Access" : "Access", "Max" : "Max", @@ -69,7 +72,7 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.", "If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings.", "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.", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "Room URL", "Welcome" : "Welcome", "Participant limit" : "Participant limit", + "Sharing" : "Sharing", "Every participant is moderator" : "Every participant is moderator", "Moderator access via URL" : "Moderator access via URL", "Miscellaneous" : "Miscellaneous", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "Join meeting muted", "Room name" : "Room name", "Create" : "Create", + "Published" : "Published", "Open recording" : "Open recording", "Copy to clipboard" : "Copy to clipboard", "Save as file" : "Save as file", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Delete?", "Could not delete record" : "Could not delete record", "Server error" : "Server error", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Share", + "Could not modify publishing state" : "Could not modify publishing state", + "Open room" : "Open room", + "Start" : "Start", + "Clone room" : "Clone room", "Loading" : "Loading", "You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.", "Max. rooms" : "Max. rooms", diff --git a/l10n/en_GB.json b/l10n/en_GB.json index d36d315..cd9cd86 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "API URL or secret not configured. Please contact your administrator.", "BigBlueButton Integration" : "BigBlueButton Integration", "BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*", + "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.*", "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", @@ -54,6 +54,9 @@ "Group" : "Group", "Searching" : "Searching", "No matches" : "No matches", + "admin" : "admin", + "moderator" : "moderator", + "user" : "user", "Name" : "Name", "Access" : "Access", "Max" : "Max", @@ -67,7 +70,7 @@ "This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.", "If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings.", "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.", @@ -80,6 +83,7 @@ "Room URL" : "Room URL", "Welcome" : "Welcome", "Participant limit" : "Participant limit", + "Sharing" : "Sharing", "Every participant is moderator" : "Every participant is moderator", "Moderator access via URL" : "Moderator access via URL", "Miscellaneous" : "Miscellaneous", @@ -91,6 +95,7 @@ "Join meeting muted" : "Join meeting muted", "Room name" : "Room name", "Create" : "Create", + "Published" : "Published", "Open recording" : "Open recording", "Copy to clipboard" : "Copy to clipboard", "Save as file" : "Save as file", @@ -109,9 +114,10 @@ "Delete?" : "Delete?", "Could not delete record" : "Could not delete record", "Server error" : "Server error", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Share", + "Could not modify publishing state" : "Could not modify publishing state", + "Open room" : "Open room", + "Start" : "Start", + "Clone room" : "Clone room", "Loading" : "Loading", "You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.", "Max. rooms" : "Max. rooms", diff --git a/l10n/eo.js b/l10n/eo.js index 86ff037..e33b8d3 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -12,12 +12,13 @@ OC.L10N.register( "Name" : "Nomo", "Access" : "Aliro", "Edit" : "Modifi", + "Sharing" : "Kunhavigo", "Create" : "Krei", "Copy to clipboard" : "Kopii tondejen", "Delete" : "Forigi", "Error" : "Eraro", "Server error" : "Eraro pri servilo", - "Share" : "Kunhavigi", + "Start" : "Komenco", "Loading" : "Ŝargado", "Settings saved" : "Agordoj konservitaj" }, diff --git a/l10n/eo.json b/l10n/eo.json index 06f2b49..1b3e742 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -10,12 +10,13 @@ "Name" : "Nomo", "Access" : "Aliro", "Edit" : "Modifi", + "Sharing" : "Kunhavigo", "Create" : "Krei", "Copy to clipboard" : "Kopii tondejen", "Delete" : "Forigi", "Error" : "Eraro", "Server error" : "Eraro pri servilo", - "Share" : "Kunhavigi", + "Start" : "Komenco", "Loading" : "Ŝargado", "Settings saved" : "Agordoj konservitaj" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/es.js b/l10n/es.js index 7170ee7..2627d64 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "URL de la API o secreto no configurado. Por favor, contacta con tu administrador.", "BigBlueButton Integration" : "Integración BigBlueButton", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta 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 invitados** Comparte el enlace de la sala con todos tus invitados\n* **Comparte salas** Comparte salas con miembros, 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.*", "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?", "Back to %s" : "Volver a %s", @@ -33,8 +32,8 @@ OC.L10N.register( "Show room manager in app navigation instead of settings page." : "Mostrar el gestor de salas en la navegación de la app en lugar de la página de configuración.", "Use Nextcloud theme in BigBlueButton." : "Usar el tema de Nextcloud en BigBlueButton.", "Default Room Settings" : "Ajustes por Defecto de la Sala", - "Below you can change some default values, which are used to create a new room." : "Abajo puedes cambiar algunos valores por defecto, que se usan para crear una nueva sala.", - "Perform media check before usage" : "Realizar comprobación multimedia antes de usar", + "Below you can change some default values, which are used to create a new room." : "A continuación podrá cambiar algunos valores por defecto, que se usan para crear una nueva sala.", + "Perform media check before usage" : "Realizar comprobación de medios antes de usar", "Community" : "Comunidad", "Are you enjoying this app? Give something back to the open source community." : "¿Te gusta esta app? Devuelve algo a la comunidad de código abierto.", "Checkout the contributor guide" : "Consulte la guía para colaboradores", @@ -50,12 +49,14 @@ OC.L10N.register( "Display name" : "Mostrar nombre", "Password" : "Contraseña", "Join" : "Unirse", - "Have an account? Log in." : "¿Tienes una cuenta? Entra.", + "Have an account? Log in." : "¿Tiene una cuenta? Inicie sesión.", "Hello %s" : "Hola %s", "Name, group …" : "Nombre, grupo…", "Group" : "Grupo", "Searching" : "Buscando", "No matches" : "Sin coincidencias", + "admin" : "administrador", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Max" : "Máx", @@ -69,7 +70,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.", "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.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: cualquiera que conozca el enlace será capaz de unirse. Contraseña: los invitados necesitan una contraseña. Sala de espera: uno moderador debe aceptar a cada invitado antes de que pueda unirse. Interno: sólo los usuarios Nextcloud pueden unirse.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explicación sobre los diferentes conceptos que constituyen opciones de acceso :
- Público: Cualquiera que tenga el enlace puede unirse.-
Interno: Solo los usuarios de Nextcloud pueden unirse.-
Contraseña: Solo aquellos invitados que tengan la contraseña podrán unirse..-
Sala de espera: Un moderador deberá aceptar a cada invitado para que este pueda unirse.-
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.", "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.", @@ -82,6 +83,7 @@ OC.L10N.register( "Room URL" : "URL de la sala", "Welcome" : "Bienvenido", "Participant limit" : "Límite de participantes", + "Sharing" : "Compartición", "Every participant is moderator" : "Cada participante es un moderador", "Moderator access via URL" : "Acceso como moderador vía URL", "Miscellaneous" : "Varios", @@ -89,10 +91,11 @@ OC.L10N.register( "Require moderator to start room" : "Requerir un moderador para iniciar la sala", "Listen only option" : "Opción de solo escucha", "Skip media check before usage" : "Saltar comprobación multimedia antes de usar", - "Clean layout" : "Limpiar vista", + "Clean layout" : "Limpiar diseño", "Join meeting muted" : "Entrar a la reunión silenciado", "Room name" : "Nombre de la sala", "Create" : "Crear", + "Published" : "Publicado", "Open recording" : "Abrir grabación", "Copy to clipboard" : "Copiar al portapapeles", "Save as file" : "Guardar como", @@ -111,9 +114,7 @@ OC.L10N.register( "Delete?" : "¿Eliminar?", "Could not delete record" : "No se ha podido eliminar el registro", "Server error" : "Error en el servidor", - "moderator" : "moderador", - "admin" : "administrador", - "Share" : "Compartir", + "Start" : "Iniciar", "Loading" : "Cargando", "You are not allowed to change this option, because this room is shared with you." : "No puedes cambiar esta opción ya que esta sala está compartida contigo.", "Max. rooms" : "Máximo de salas", @@ -131,12 +132,12 @@ OC.L10N.register( "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "La URL tiene que comenzar con https:// y contener {token}. Adicionalmente, se puede usar el referente {user}.", "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. Maybe your BigBlueButton server does not support this action." : "El archivo \"{filename}\" no se puede subir a su sala. Puede que su servidor BigBlueButton no soporte esta acción.", - "Send file to BBB" : "Enviar a ...", + "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" : "Empezar con", + "Start with" : "Iniciar con", "Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".", - "No rooms available!" : "No hay salas disponibles", + "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."] }, diff --git a/l10n/es.json b/l10n/es.json index 3873a08..27ea1c1 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "URL de la API o secreto no configurado. Por favor, contacta con tu administrador.", "BigBlueButton Integration" : "Integración BigBlueButton", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta 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 invitados** Comparte el enlace de la sala con todos tus invitados\n* **Comparte salas** Comparte salas con miembros, 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.*", "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?", "Back to %s" : "Volver a %s", @@ -31,8 +30,8 @@ "Show room manager in app navigation instead of settings page." : "Mostrar el gestor de salas en la navegación de la app en lugar de la página de configuración.", "Use Nextcloud theme in BigBlueButton." : "Usar el tema de Nextcloud en BigBlueButton.", "Default Room Settings" : "Ajustes por Defecto de la Sala", - "Below you can change some default values, which are used to create a new room." : "Abajo puedes cambiar algunos valores por defecto, que se usan para crear una nueva sala.", - "Perform media check before usage" : "Realizar comprobación multimedia antes de usar", + "Below you can change some default values, which are used to create a new room." : "A continuación podrá cambiar algunos valores por defecto, que se usan para crear una nueva sala.", + "Perform media check before usage" : "Realizar comprobación de medios antes de usar", "Community" : "Comunidad", "Are you enjoying this app? Give something back to the open source community." : "¿Te gusta esta app? Devuelve algo a la comunidad de código abierto.", "Checkout the contributor guide" : "Consulte la guía para colaboradores", @@ -48,12 +47,14 @@ "Display name" : "Mostrar nombre", "Password" : "Contraseña", "Join" : "Unirse", - "Have an account? Log in." : "¿Tienes una cuenta? Entra.", + "Have an account? Log in." : "¿Tiene una cuenta? Inicie sesión.", "Hello %s" : "Hola %s", "Name, group …" : "Nombre, grupo…", "Group" : "Grupo", "Searching" : "Buscando", "No matches" : "Sin coincidencias", + "admin" : "administrador", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Max" : "Máx", @@ -67,7 +68,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.", "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.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: cualquiera que conozca el enlace será capaz de unirse. Contraseña: los invitados necesitan una contraseña. Sala de espera: uno moderador debe aceptar a cada invitado antes de que pueda unirse. Interno: sólo los usuarios Nextcloud pueden unirse.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explicación sobre los diferentes conceptos que constituyen opciones de acceso :
- Público: Cualquiera que tenga el enlace puede unirse.-
Interno: Solo los usuarios de Nextcloud pueden unirse.-
Contraseña: Solo aquellos invitados que tengan la contraseña podrán unirse..-
Sala de espera: Un moderador deberá aceptar a cada invitado para que este pueda unirse.-
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.", "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.", @@ -80,6 +81,7 @@ "Room URL" : "URL de la sala", "Welcome" : "Bienvenido", "Participant limit" : "Límite de participantes", + "Sharing" : "Compartición", "Every participant is moderator" : "Cada participante es un moderador", "Moderator access via URL" : "Acceso como moderador vía URL", "Miscellaneous" : "Varios", @@ -87,10 +89,11 @@ "Require moderator to start room" : "Requerir un moderador para iniciar la sala", "Listen only option" : "Opción de solo escucha", "Skip media check before usage" : "Saltar comprobación multimedia antes de usar", - "Clean layout" : "Limpiar vista", + "Clean layout" : "Limpiar diseño", "Join meeting muted" : "Entrar a la reunión silenciado", "Room name" : "Nombre de la sala", "Create" : "Crear", + "Published" : "Publicado", "Open recording" : "Abrir grabación", "Copy to clipboard" : "Copiar al portapapeles", "Save as file" : "Guardar como", @@ -109,9 +112,7 @@ "Delete?" : "¿Eliminar?", "Could not delete record" : "No se ha podido eliminar el registro", "Server error" : "Error en el servidor", - "moderator" : "moderador", - "admin" : "administrador", - "Share" : "Compartir", + "Start" : "Iniciar", "Loading" : "Cargando", "You are not allowed to change this option, because this room is shared with you." : "No puedes cambiar esta opción ya que esta sala está compartida contigo.", "Max. rooms" : "Máximo de salas", @@ -129,12 +130,12 @@ "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "La URL tiene que comenzar con https:// y contener {token}. Adicionalmente, se puede usar el referente {user}.", "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. Maybe your BigBlueButton server does not support this action." : "El archivo \"{filename}\" no se puede subir a su sala. Puede que su servidor BigBlueButton no soporte esta acción.", - "Send file to BBB" : "Enviar a ...", + "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" : "Empezar con", + "Start with" : "Iniciar con", "Please select the room in which you like to use the file \"{filename}\"." : "Seleccione la sala en la que desea utilizar el archivo \"{filename}\".", - "No rooms available!" : "No hay salas disponibles", + "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."] },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_419.js b/l10n/es_419.js index 567dbe3..1418958 100644 --- a/l10n/es_419.js +++ b/l10n/es_419.js @@ -7,17 +7,18 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_419.json b/l10n/es_419.json index 16163e0..fb429a7 100644 --- a/l10n/es_419.json +++ b/l10n/es_419.json @@ -5,17 +5,18 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 45f4d13..78d53e4 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -12,12 +12,12 @@ OC.L10N.register( "Name" : "Nombre", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Eliminar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Configuraciones guardadas" }, diff --git a/l10n/es_AR.json b/l10n/es_AR.json index e237e44..922bb1e 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -10,12 +10,12 @@ "Name" : "Nombre", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Eliminar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Configuraciones guardadas" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_CL.js b/l10n/es_CL.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 16163e0..8c417d7 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_CO.js b/l10n/es_CO.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_CO.json b/l10n/es_CO.json index 16163e0..8c417d7 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_CR.js b/l10n/es_CR.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_CR.json b/l10n/es_CR.json index 16163e0..8c417d7 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_DO.js b/l10n/es_DO.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_DO.json b/l10n/es_DO.json index 16163e0..8c417d7 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_EC.js b/l10n/es_EC.js index 43c25ce..3df927c 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -22,7 +22,6 @@ 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.", "BigBlueButton Integration" : "Integración con BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integración de 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear reuniones con una instalación externa de [BigBlueButton](https://bigbluebutton.org).\n \n * **Configuración de la sala** Crea múltiples configuraciones de sala con nombre, mensaje de bienvenida...\n * **Compartir enlace para invitados** Comparte el enlace de la sala con todos tus invitados.\n * **Compartir enlace para moderadores** Invita moderadores a la sala.\n * **Compartir salas** Comparte salas con miembros, grupos o círculos.\n * **Presentación personalizada** Inicia una sala con una presentación seleccionada desde tu explorador de archivos.\n * **Gestionar grabaciones** Ver, compartir y eliminar grabaciones de tus salas.\n * **Restricciones** Restringe la creación de salas a ciertos grupos.\n * **Actividades** Obtén una visión general de las actividades de tus salas.\n \n Guía de inicio rápido e información adicional en nuestro [readme](https://github.com/sualko/cloud_bbb).\n ¿Te gusta esta aplicación? Devuelve algo a la comunidad de código abierto y consulta nuestras\n [formas de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n \n ¡Se busca desarrollador! Si tienes tiempo, sería genial si pudieras ayudar a mejorar esta aplicación.\n \n *Esta aplicación integra BigBlueButton y no está respaldada ni certificada por BigBlueButton Inc. BigBlueButton y el logotipo de BigBlueButton son marcas registradas de BigBlueButton Inc.*", "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?", "Back to %s" : "Volver a %s", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "Grupo", "Searching" : "Buscando", "No matches" : "Sin coincidencias", + "admin" : "admin", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Max" : "Máx.", @@ -69,7 +70,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Este mensaje se muestra a todos los usuarios en el área de chat después de unirse.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Establece un límite en el número de participantes para esta sala. Cero significa que no hay límite.", "If enabled, the moderator is able to start the recording." : "Si está habilitado, el moderador puede iniciar la grabación.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: Cualquiera que conozca el enlace puede unirse. Contraseña: Los invitados deben proporcionar una contraseña. Sala de espera: Un moderador debe aceptar a cada invitado antes de que puedan unirse. Interna: Solo los usuarios de Nextcloud pueden unirse.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Un moderador puede gestionar a todos los participantes en una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el rol de moderador también pueden cerrar una reunión o cambiar la configuración predeterminada.", "If enabled, normal users have to wait until a moderator is in the room." : "Si está habilitado, los usuarios normales deben esperar hasta que haya un moderador en la sala.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está habilitado, se genera una URL de moderador que permite el acceso con permisos de moderador.", @@ -82,6 +82,7 @@ OC.L10N.register( "Room URL" : "URL de la sala", "Welcome" : "Bienvenido", "Participant limit" : "Límite de participantes", + "Sharing" : "Compartiendo", "Every participant is moderator" : "Cada participante es moderador", "Moderator access via URL" : "Acceso de moderador a través de URL", "Miscellaneous" : "Varios", @@ -93,6 +94,7 @@ OC.L10N.register( "Join meeting muted" : "Unirse a la reunión con el sonido desactivado", "Room name" : "Nombre de la sala", "Create" : "Crear", + "Published" : "Publicado", "Open recording" : "Abrir grabación", "Copy to clipboard" : "Copiar al portapapeles", "Save as file" : "Guardar como archivo", @@ -111,9 +113,6 @@ OC.L10N.register( "Delete?" : "¿Eliminar?", "Could not delete record" : "No se pudo eliminar el registro", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "admin" : "admin", - "Share" : "Compartir", "Loading" : "Cargando", "You are not allowed to change this option, because this room is shared with you." : "No tienes permitido cambiar esta opción porque esta sala se comparte contigo.", "Max. rooms" : "Máx. salas", diff --git a/l10n/es_EC.json b/l10n/es_EC.json index d3fa963..57721dd 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -20,7 +20,6 @@ "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 for Nextcloud" : "Integración de 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear reuniones con una instalación externa de [BigBlueButton](https://bigbluebutton.org).\n \n * **Configuración de la sala** Crea múltiples configuraciones de sala con nombre, mensaje de bienvenida...\n * **Compartir enlace para invitados** Comparte el enlace de la sala con todos tus invitados.\n * **Compartir enlace para moderadores** Invita moderadores a la sala.\n * **Compartir salas** Comparte salas con miembros, grupos o círculos.\n * **Presentación personalizada** Inicia una sala con una presentación seleccionada desde tu explorador de archivos.\n * **Gestionar grabaciones** Ver, compartir y eliminar grabaciones de tus salas.\n * **Restricciones** Restringe la creación de salas a ciertos grupos.\n * **Actividades** Obtén una visión general de las actividades de tus salas.\n \n Guía de inicio rápido e información adicional en nuestro [readme](https://github.com/sualko/cloud_bbb).\n ¿Te gusta esta aplicación? Devuelve algo a la comunidad de código abierto y consulta nuestras\n [formas de contribuir](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n \n ¡Se busca desarrollador! Si tienes tiempo, sería genial si pudieras ayudar a mejorar esta aplicación.\n \n *Esta aplicación integra BigBlueButton y no está respaldada ni certificada por BigBlueButton Inc. BigBlueButton y el logotipo de BigBlueButton son marcas registradas de BigBlueButton Inc.*", "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?", "Back to %s" : "Volver a %s", @@ -54,6 +53,8 @@ "Group" : "Grupo", "Searching" : "Buscando", "No matches" : "Sin coincidencias", + "admin" : "admin", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Max" : "Máx.", @@ -67,7 +68,6 @@ "This message is shown to all users in the chat area after they joined." : "Este mensaje se muestra a todos los usuarios en el área de chat después de unirse.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Establece un límite en el número de participantes para esta sala. Cero significa que no hay límite.", "If enabled, the moderator is able to start the recording." : "Si está habilitado, el moderador puede iniciar la grabación.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: Cualquiera que conozca el enlace puede unirse. Contraseña: Los invitados deben proporcionar una contraseña. Sala de espera: Un moderador debe aceptar a cada invitado antes de que puedan unirse. Interna: Solo los usuarios de Nextcloud pueden unirse.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Un moderador puede gestionar a todos los participantes en una reunión, incluyendo expulsar, silenciar o seleccionar a un presentador. Los usuarios con el rol de moderador también pueden cerrar una reunión o cambiar la configuración predeterminada.", "If enabled, normal users have to wait until a moderator is in the room." : "Si está habilitado, los usuarios normales deben esperar hasta que haya un moderador en la sala.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Si está habilitado, se genera una URL de moderador que permite el acceso con permisos de moderador.", @@ -80,6 +80,7 @@ "Room URL" : "URL de la sala", "Welcome" : "Bienvenido", "Participant limit" : "Límite de participantes", + "Sharing" : "Compartiendo", "Every participant is moderator" : "Cada participante es moderador", "Moderator access via URL" : "Acceso de moderador a través de URL", "Miscellaneous" : "Varios", @@ -91,6 +92,7 @@ "Join meeting muted" : "Unirse a la reunión con el sonido desactivado", "Room name" : "Nombre de la sala", "Create" : "Crear", + "Published" : "Publicado", "Open recording" : "Abrir grabación", "Copy to clipboard" : "Copiar al portapapeles", "Save as file" : "Guardar como archivo", @@ -109,9 +111,6 @@ "Delete?" : "¿Eliminar?", "Could not delete record" : "No se pudo eliminar el registro", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "admin" : "admin", - "Share" : "Compartir", "Loading" : "Cargando", "You are not allowed to change this option, because this room is shared with you." : "No tienes permitido cambiar esta opción porque esta sala se comparte contigo.", "Max. rooms" : "Máx. salas", diff --git a/l10n/es_GT.js b/l10n/es_GT.js index 567dbe3..1418958 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -7,17 +7,18 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_GT.json b/l10n/es_GT.json index 16163e0..fb429a7 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -5,17 +5,18 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_HN.js b/l10n/es_HN.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_HN.json b/l10n/es_HN.json index 16163e0..8c417d7 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_MX.js b/l10n/es_MX.js index 24250f4..6f4c716 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -9,18 +9,21 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", + "Miscellaneous" : "Misceláneo", "Room name" : "Nombre del cuarto", "Create" : "Crear", + "Published" : "Publicado", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 0c5a878..b897542 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -7,18 +7,21 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", + "Miscellaneous" : "Misceláneo", "Room name" : "Nombre del cuarto", "Create" : "Crear", + "Published" : "Publicado", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_NI.js b/l10n/es_NI.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_NI.json b/l10n/es_NI.json index 16163e0..8c417d7 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PA.js b/l10n/es_PA.js index 567dbe3..1418958 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -7,17 +7,18 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_PA.json b/l10n/es_PA.json index 16163e0..fb429a7 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -5,17 +5,18 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PE.js b/l10n/es_PE.js index 567dbe3..1418958 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -7,17 +7,18 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_PE.json b/l10n/es_PE.json index 16163e0..fb429a7 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -5,17 +5,18 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PR.js b/l10n/es_PR.js index 567dbe3..1418958 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -7,17 +7,18 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_PR.json b/l10n/es_PR.json index 16163e0..fb429a7 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -5,17 +5,18 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PY.js b/l10n/es_PY.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_PY.json b/l10n/es_PY.json index 16163e0..8c417d7 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_SV.js b/l10n/es_SV.js index 567dbe3..1418958 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -7,17 +7,18 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_SV.json b/l10n/es_SV.json index 16163e0..fb429a7 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -5,17 +5,18 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", + "Start" : "Inicio", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_UY.js b/l10n/es_UY.js index 567dbe3..1e3cd25 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -7,17 +7,17 @@ OC.L10N.register( "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " }, diff --git a/l10n/es_UY.json b/l10n/es_UY.json index 16163e0..8c417d7 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -5,17 +5,17 @@ "Password" : "Contraseña", "Hello %s" : "Hola %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nombre", "Access" : "Acceso", "Edit" : "Editar", "Welcome" : "Bienvenido", + "Sharing" : "Compartiendo", "Create" : "Crear", "Copy to clipboard" : "Copiar al portapapeles", "Delete" : "Borrar", "Error" : "Error", "Server error" : "Se presentó un error en el servidor", - "moderator" : "moderador", - "Share" : "Compartir", "Loading" : "Cargando", "Settings saved" : "Se han guardado las configuraciones " },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 625db84..8bdb990 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -10,12 +10,13 @@ OC.L10N.register( "Name" : "Nimi", "Access" : "Ligipääs", "Edit" : "Redigeeri", + "Sharing" : "Jagamine", "Create" : "Loo", "Copy to clipboard" : "Kopeeri lõikepuhvrisse", "Delete" : "Kustuta", "Error" : "Viga", "Server error" : "Serveri tõrge", - "Share" : "Jaga", + "Start" : "Algus", "Loading" : "Laadimine", "Settings saved" : "Seaded salvestatud" }, diff --git a/l10n/et_EE.json b/l10n/et_EE.json index fd27252..d845036 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -8,12 +8,13 @@ "Name" : "Nimi", "Access" : "Ligipääs", "Edit" : "Redigeeri", + "Sharing" : "Jagamine", "Create" : "Loo", "Copy to clipboard" : "Kopeeri lõikepuhvrisse", "Delete" : "Kustuta", "Error" : "Viga", "Server error" : "Serveri tõrge", - "Share" : "Jaga", + "Start" : "Algus", "Loading" : "Laadimine", "Settings saved" : "Seaded salvestatud" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/eu.js b/l10n/eu.js index f0d1a01..6bf0cc5 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -22,7 +22,6 @@ OC.L10N.register( "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 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Aplikazio honek aukera ematen du [BigBlueButton]-eko kanpoko instalazio batekin bilerak sortzeko (https://bigbluebutton.org).\n*** Konfiguratu gela** Gelaren konfigurazio ugari sortzen ditu, izenarekin, ongietorri-mezuarekin...\n*** Partekatu gonbidatuen esteka** Partekatu gelaren esteka gonbidatu guztiekin\n*** Partekatu moderatzailearen esteka** Moderatzaileak gonbidatu aretora \n*** Partekatu gelak** Gelak kide, talde edo zirkuluekin partekatu\n*** Pertsonalizatu aurkezpena ** Hasi gela bat zure artxibo-arakatzailetik hautatutako aurkezpen batekin\n*** Kudeatu grabazioak** Ikusi, partekatu eta ezabatu zure geletako grabazioak\n*** Murrizketak** Talde jakin batzuei aretoak sortzea murriztu\n*** Jarduerak** Zure logelako jardueren deskribapen orokorra lortu\n\nHasiera azkarreko gida eta informazio gehiago hemen: [irakurri] (https://github.com/sualko/cloud_bbb).\nAtsegin duzu aplikazio hau? Itzuli zerbait kode irekiko komunitateari eta kontsultatu\n[Ekarpenak egiteko moduak] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nGaratzailea behar da! Denbora baduzu, bikaina izango litzateke aplikazio hau hobetzen laguntzea.\n\n* Aplikazio honek BigBlueButton integratzen du, eta BigBlueButton Inc-ek ez du ez babesten ez ziurtatzen. BigBlueButton eta BigBlueButtonen logotipoa BigBlueButton Inc-en marka komertzialak dira.*", "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?", "Back to %s" : "Itzuli %s(e)ra", @@ -56,6 +55,9 @@ OC.L10N.register( "Group" : "Taldea", "Searching" : "BIlatzen", "No matches" : "Ez dago bat datorrenik", + "admin" : "admin", + "moderator" : "moderatzailea", + "user" : "erabiltzailea", "Name" : "Izena", "Access" : "Sarbidea", "Max" : "Maximoa", @@ -69,7 +71,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.", "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.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publikoa: esteka daukan edonor sar daiteke bileran. Pasahitza: gonbidatuak pasahitza sartu behar du. Itxarongela: moderatzaileak banaka onartu behar ditu gonbidatuak, bileran sar daitezen. Barnekoa: Nextcloud erabiltzaileak bakarrik sar daitezke.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Sarbide-aukerak osatzen dituzten kontzeptu ezberdinen azalpena:
- Publikoa: Esteka duen edonor sartu daiteke.-
Barnekoa: Nextcloud-eko erabiltzaileak bakarrik sartu daitezke.-
Pasahitza: Pasahitza duten gonbidatuak bakarrik sartu daitezke.-
Itxaron-gela: Moderatzaile batek gonbidatu bakoitza onartu behar du sartu baino lehen.-
Murriztua : hautatutako erabiltzaile eta taldeek bakarrik sar daitezke gela honetara.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderatzaileak baimena dauka gainerako partaideak kudeatzeko, kanporatzeko, mututzeko edo aurkezle bat hautatzeko. Moderatzaile rola duten erabiltzaileak gai dira bilera itxi edo ezarpen lehenetsiak aldatzeko ere.", "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.", @@ -82,6 +84,7 @@ OC.L10N.register( "Room URL" : "Gelaren URLa", "Welcome" : "Ongi etorri", "Participant limit" : "Partaideen muga", + "Sharing" : "Partekatzea", "Every participant is moderator" : "Partaide guztiak dira moderatzaile", "Moderator access via URL" : "Moderatzailearen sarbidea URL bidez", "Miscellaneous" : "Askotarikoa", @@ -93,6 +96,7 @@ OC.L10N.register( "Join meeting muted" : "Sartu bileran mutu", "Room name" : "Gelaren izena", "Create" : "Sortu", + "Published" : "Argitaratuta", "Open recording" : "Ireki grabaketa", "Copy to clipboard" : "Kopiatu arbelera", "Save as file" : "Gorde fitxategi moduan", @@ -111,9 +115,7 @@ OC.L10N.register( "Delete?" : "Ezabatu?", "Could not delete record" : "Ezin izan da grabazioa ezabatu", "Server error" : "Zerbitzari akatsa", - "moderator" : "moderatzailea", - "admin" : "admin", - "Share" : "Partekatu", + "Start" : "Hasiera", "Loading" : "Kargatzen", "You are not allowed to change this option, because this room is shared with you." : "Ez duzu baimenik aukera hau aldatzeko, gela hau zurekin partekatua delako.", "Max. rooms" : "Gela max.", diff --git a/l10n/eu.json b/l10n/eu.json index 974751e..2178608 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -20,7 +20,6 @@ "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 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Aplikazio honek aukera ematen du [BigBlueButton]-eko kanpoko instalazio batekin bilerak sortzeko (https://bigbluebutton.org).\n*** Konfiguratu gela** Gelaren konfigurazio ugari sortzen ditu, izenarekin, ongietorri-mezuarekin...\n*** Partekatu gonbidatuen esteka** Partekatu gelaren esteka gonbidatu guztiekin\n*** Partekatu moderatzailearen esteka** Moderatzaileak gonbidatu aretora \n*** Partekatu gelak** Gelak kide, talde edo zirkuluekin partekatu\n*** Pertsonalizatu aurkezpena ** Hasi gela bat zure artxibo-arakatzailetik hautatutako aurkezpen batekin\n*** Kudeatu grabazioak** Ikusi, partekatu eta ezabatu zure geletako grabazioak\n*** Murrizketak** Talde jakin batzuei aretoak sortzea murriztu\n*** Jarduerak** Zure logelako jardueren deskribapen orokorra lortu\n\nHasiera azkarreko gida eta informazio gehiago hemen: [irakurri] (https://github.com/sualko/cloud_bbb).\nAtsegin duzu aplikazio hau? Itzuli zerbait kode irekiko komunitateari eta kontsultatu\n[Ekarpenak egiteko moduak] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nGaratzailea behar da! Denbora baduzu, bikaina izango litzateke aplikazio hau hobetzen laguntzea.\n\n* Aplikazio honek BigBlueButton integratzen du, eta BigBlueButton Inc-ek ez du ez babesten ez ziurtatzen. BigBlueButton eta BigBlueButtonen logotipoa BigBlueButton Inc-en marka komertzialak dira.*", "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?", "Back to %s" : "Itzuli %s(e)ra", @@ -54,6 +53,9 @@ "Group" : "Taldea", "Searching" : "BIlatzen", "No matches" : "Ez dago bat datorrenik", + "admin" : "admin", + "moderator" : "moderatzailea", + "user" : "erabiltzailea", "Name" : "Izena", "Access" : "Sarbidea", "Max" : "Maximoa", @@ -67,7 +69,7 @@ "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.", "If enabled, the moderator is able to start the recording." : "Gaituz gero, moderatzaileak grabatzeko aukera du.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publikoa: esteka daukan edonor sar daiteke bileran. Pasahitza: gonbidatuak pasahitza sartu behar du. Itxarongela: moderatzaileak banaka onartu behar ditu gonbidatuak, bileran sar daitezen. Barnekoa: Nextcloud erabiltzaileak bakarrik sar daitezke.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Sarbide-aukerak osatzen dituzten kontzeptu ezberdinen azalpena:
- Publikoa: Esteka duen edonor sartu daiteke.-
Barnekoa: Nextcloud-eko erabiltzaileak bakarrik sartu daitezke.-
Pasahitza: Pasahitza duten gonbidatuak bakarrik sartu daitezke.-
Itxaron-gela: Moderatzaile batek gonbidatu bakoitza onartu behar du sartu baino lehen.-
Murriztua : hautatutako erabiltzaile eta taldeek bakarrik sar daitezke gela honetara.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderatzaileak baimena dauka gainerako partaideak kudeatzeko, kanporatzeko, mututzeko edo aurkezle bat hautatzeko. Moderatzaile rola duten erabiltzaileak gai dira bilera itxi edo ezarpen lehenetsiak aldatzeko ere.", "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.", @@ -80,6 +82,7 @@ "Room URL" : "Gelaren URLa", "Welcome" : "Ongi etorri", "Participant limit" : "Partaideen muga", + "Sharing" : "Partekatzea", "Every participant is moderator" : "Partaide guztiak dira moderatzaile", "Moderator access via URL" : "Moderatzailearen sarbidea URL bidez", "Miscellaneous" : "Askotarikoa", @@ -91,6 +94,7 @@ "Join meeting muted" : "Sartu bileran mutu", "Room name" : "Gelaren izena", "Create" : "Sortu", + "Published" : "Argitaratuta", "Open recording" : "Ireki grabaketa", "Copy to clipboard" : "Kopiatu arbelera", "Save as file" : "Gorde fitxategi moduan", @@ -109,9 +113,7 @@ "Delete?" : "Ezabatu?", "Could not delete record" : "Ezin izan da grabazioa ezabatu", "Server error" : "Zerbitzari akatsa", - "moderator" : "moderatzailea", - "admin" : "admin", - "Share" : "Partekatu", + "Start" : "Hasiera", "Loading" : "Kargatzen", "You are not allowed to change this option, because this room is shared with you." : "Ez duzu baimenik aukera hau aldatzeko, gela hau zurekin partekatua delako.", "Max. rooms" : "Gela max.", diff --git a/l10n/fa.js b/l10n/fa.js index 40952c6..84c7e2c 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API URL or secret not configured. Please contact your administrator.", "BigBlueButton Integration" : "BigBlueButton Integration", "BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*", "Room not found" : "اتاق یافت نشد", "The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟", "Back to %s" : "Back to %s", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "گروه", "Searching" : "Searching", "No matches" : "No matches", + "admin" : "admin", + "moderator" : "moderator", "Name" : "نام", "Access" : "دسترسی", "Max" : "Max", @@ -69,7 +70,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.", "If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings.", "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.", @@ -82,6 +82,7 @@ OC.L10N.register( "Room URL" : "Room URL", "Welcome" : "خوش آمدی", "Participant limit" : "Participant limit", + "Sharing" : "هم‌رسانی", "Every participant is moderator" : "Every participant is moderator", "Moderator access via URL" : "Moderator access via URL", "Miscellaneous" : "متفرقه", @@ -93,6 +94,7 @@ OC.L10N.register( "Join meeting muted" : "Join meeting muted", "Room name" : "Room name", "Create" : "ایجاد شده", + "Published" : "منتشر شده", "Open recording" : "Open recording", "Copy to clipboard" : "کپی کردن به حافظه موقت", "Save as file" : "Save as file", @@ -111,9 +113,7 @@ OC.L10N.register( "Delete?" : "Delete?", "Could not delete record" : "Could not delete record", "Server error" : "خطای سرور", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "هم‌رسانی", + "Start" : "شروع", "Loading" : "در حال بار گزاری", "You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.", "Max. rooms" : "Max. rooms", diff --git a/l10n/fa.json b/l10n/fa.json index 2efdc2b..e236645 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "API URL or secret not configured. Please contact your administrator.", "BigBlueButton Integration" : "BigBlueButton Integration", "BigBlueButton integration for Nextcloud" : "BigBlueButton integration for Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*", "Room not found" : "اتاق یافت نشد", "The room could not be found. Maybe it was deleted?" : "اتاق پیدا نشد. شاید حذف شده است؟", "Back to %s" : "Back to %s", @@ -54,6 +53,8 @@ "Group" : "گروه", "Searching" : "Searching", "No matches" : "No matches", + "admin" : "admin", + "moderator" : "moderator", "Name" : "نام", "Access" : "دسترسی", "Max" : "Max", @@ -67,7 +68,6 @@ "This message is shown to all users in the chat area after they joined." : "This message is shown to all users in the chat area after they joined.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Sets a limit on the number of participants for this room. Zero means there is no limit.", "If enabled, the moderator is able to start the recording." : "If enabled, the moderator is able to start the recording.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings.", "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.", @@ -80,6 +80,7 @@ "Room URL" : "Room URL", "Welcome" : "خوش آمدی", "Participant limit" : "Participant limit", + "Sharing" : "هم‌رسانی", "Every participant is moderator" : "Every participant is moderator", "Moderator access via URL" : "Moderator access via URL", "Miscellaneous" : "متفرقه", @@ -91,6 +92,7 @@ "Join meeting muted" : "Join meeting muted", "Room name" : "Room name", "Create" : "ایجاد شده", + "Published" : "منتشر شده", "Open recording" : "Open recording", "Copy to clipboard" : "کپی کردن به حافظه موقت", "Save as file" : "Save as file", @@ -109,9 +111,7 @@ "Delete?" : "Delete?", "Could not delete record" : "Could not delete record", "Server error" : "خطای سرور", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "هم‌رسانی", + "Start" : "شروع", "Loading" : "در حال بار گزاری", "You are not allowed to change this option, because this room is shared with you." : "You are not allowed to change this option, because this room is shared with you.", "Max. rooms" : "Max. rooms", diff --git a/l10n/fi.js b/l10n/fi.js index 74d471f..1a87ddd 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -41,6 +41,7 @@ OC.L10N.register( "Name, group …" : "Nimi, ryhmä…", "Group" : "Ryhmä", "No matches" : "Ei täsmääviä", + "moderator" : "moderaattori", "Name" : "Nimi", "Access" : "Käyttöoikeudet", "Max" : "Enintään", @@ -55,10 +56,12 @@ OC.L10N.register( "Room URL" : "Huoneen URL-osoite", "Welcome" : "Tervetuloa", "Participant limit" : "Osallistujaraja", + "Sharing" : "Jakaminen", "Miscellaneous" : "Sekalaiset", "Join meeting muted" : "Liity kokoukseen mykistettynä", "Room name" : "Huoneen nimi", "Create" : "Luo", + "Published" : "Julkaistu", "Open recording" : "Avaa nauhoitus", "Copy to clipboard" : "Kopioi leikepöydälle", "Save as file" : "Tallenna tiedostona", @@ -73,8 +76,7 @@ OC.L10N.register( "Delete?" : "Poistetaanko?", "Could not delete record" : "Tallennetta ei voitu poistaa", "Server error" : "Palvelinvirhe", - "moderator" : "moderaattori", - "Share" : "Jaa", + "Start" : "Alku", "Loading" : "Ladataan", "Max. rooms" : "Huoneita enintään", "Max. participants" : "Osallistujia enintään", diff --git a/l10n/fi.json b/l10n/fi.json index 7feef3e..2478ecf 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -39,6 +39,7 @@ "Name, group …" : "Nimi, ryhmä…", "Group" : "Ryhmä", "No matches" : "Ei täsmääviä", + "moderator" : "moderaattori", "Name" : "Nimi", "Access" : "Käyttöoikeudet", "Max" : "Enintään", @@ -53,10 +54,12 @@ "Room URL" : "Huoneen URL-osoite", "Welcome" : "Tervetuloa", "Participant limit" : "Osallistujaraja", + "Sharing" : "Jakaminen", "Miscellaneous" : "Sekalaiset", "Join meeting muted" : "Liity kokoukseen mykistettynä", "Room name" : "Huoneen nimi", "Create" : "Luo", + "Published" : "Julkaistu", "Open recording" : "Avaa nauhoitus", "Copy to clipboard" : "Kopioi leikepöydälle", "Save as file" : "Tallenna tiedostona", @@ -71,8 +74,7 @@ "Delete?" : "Poistetaanko?", "Could not delete record" : "Tallennetta ei voitu poistaa", "Server error" : "Palvelinvirhe", - "moderator" : "moderaattori", - "Share" : "Jaa", + "Start" : "Alku", "Loading" : "Ladataan", "Max. rooms" : "Huoneita enintään", "Max. participants" : "Osallistujia enintään", diff --git a/l10n/fr.js b/l10n/fr.js index 00ec4b1..4294c00 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -8,10 +8,10 @@ OC.L10N.register( "{user} shared the room %s with you." : "{user} a partagé la salle %s avec vous.", "You unshared the room %s with {shareWith}." : "Vous avez annulé le partage de la salle%savec {shareWith}.", "{user} unshared the room %s with you." : "{user} a annulé le partage de la salle %s avec vous.", - "You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle \"%s\".", - "{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle \"%s\".", - "The meeting in room \"%s\" has ended." : "La réunion dans la salle \"%s\" est terminée.", - "Recording for room \"%s\" is ready." : "L'enregistrement pour la salle \"%s\" est prêt.", + "You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle « %s ».", + "{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle « %s ».", + "The meeting in room \"%s\" has ended." : "La réunion dans la salle « %s » est terminée.", + "Recording for room \"%s\" is ready." : "L’enregistrement pour la salle « %s » est prêt.", "To invite someone to the meeting, send them this link: %s" : "Pour inviter quelqu'un à la réunion, envoyez-lui ce lien : %s", "Public" : "Public", "Internal + Password protection for guests" : "Interne + Mot de passe pour les invités", @@ -22,12 +22,12 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "L'adresse ou le secret de l'API n'est pas configuré. Veuillez contacter votre administrateur.", "BigBlueButton Integration" : "Intégration de BigBlueButton", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "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 le lien invité ** Partager le 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 ** Partager des salles avec des membres, des groupes ou des cercles\n* ** Présentation personnalisée ** Démarrer une salle avec une présentation sélectionnée à partir de votre navigateur de fichiers\n* ** Gérez 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 plus d'informations dans notre [readme] (https://github.com/sualko/cloud_bbb).\nAimez-vous cette application ? Donnez quelque chose à la communauté open source et consultez notre\n[façons de contribuer] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDéveloppeur recherché ! Si vous aviez le temps, ce serait génial si vous pouviez aider à 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.*", "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 ?", "Back to %s" : "Retourner à %s", "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Vous pouvez obtenir l'adresse et le secret de l'API en exécutant \"sudo bbb-conf --secret\" sur votre serveur BigBlueButton.", - "API URL" : "Adresse de l'API", + "API URL" : "Adresse de l’API", "API secret" : "Secret de l'API", "Save" : "Enregistrer", "Show room manager in app navigation instead of settings page." : "Afficher le gestionnaire de salles dans la barre de navigation plutôt que dans les paramètres.", @@ -47,7 +47,7 @@ OC.L10N.register( "Please enter your name!" : "Veuillez saisir votre nom !", "The name must be at least 3 characters long." : "Le nom doit contenir au moins 3 caractères.", "You have to provide the correct password to join the meeting." : "Vous devez fournir le bon mot de passe pour rejoindre la réunion.", - "Display name" : "Nom d'affichage", + "Display name" : "Nom d’affichage", "Password" : "Mot de passe", "Join" : "Rejoindre", "Have an account? Log in." : "Vous avez déjà un compte ? Connectez-vous.", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Groupe", "Searching" : "Recherche en cours", "No matches" : "Pas de résultats", + "admin" : "administrateur", + "moderator" : "modérateur", + "user" : "utilisateur", "Name" : "Nom", "Access" : "Accès", "Max" : "Max", @@ -66,10 +69,10 @@ OC.L10N.register( "Room quota:" : "Quota de la salle :", "Edit" : "Modifier", "Descriptive name of this room." : "Nom descriptif de cette salle.", - "This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l'espace de discussion après qu'ils l'ont rejoint.", - "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu'il n'y a pas de limite.", - "If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut démarrer l'enregistrement.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publique : Tout le monde connaissant le lien peut rejoindre. Mot de passe : Les invités doivent fournir un mot de passe. Salle d'attente : Un modérateur doit accepter chaque invité avant qu'ils puissent rejoindre. Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre.", + "This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l’espace de discussion après qu’ils l’ont rejoint.", + "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu’il n’y a pas de limite.", + "If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut lancer l'enregistrement.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explication des différents concepts qui constituent les options d’accès :
- Public : Toute personne possédant le lien peut rejoindre la conversation.-
Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre la conversation.-
Mot de passe : Seuls les invités possédant le mot de passe peuvent rejoindre la conversation..-
Salle d’attente : Un modérateur doit accepter chaque invité avant qu’il ne puisse rejoindre la conversation.-
Restreint : Seuls les utilisateurs et groupes sélectionnés peuvent accéder à cette conversation. ", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Un modérateur est en mesure de gérer tous les participants d'une réunion, incluant leur éjection de la salle, leur mise en sourdine ou la désignation d'un présentateur. Les utilisateurs ayant le rôle de modérateur peuvent également mettre fin à une réunion ou modifier les paramètres par défaut.", "If enabled, normal users have to wait until a moderator is in the room." : "Si activé, les utilisateurs devront attendre qu'un modérateur rejoigne la salle.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Si activé, une URL de modérateur est générée pour permettre l'accès avec les droits de modération.", @@ -78,10 +81,11 @@ OC.L10N.register( "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Si activé, l'utilisateur n'a pas besoin de faire un test d'appel et une prévisualisation de la webcam à la première connexion (disponible depuis BBB server 2.3).", "If enabled, the user list, chat area and presentation are hidden by default." : "Si activé, la liste des utilisateurs, l'espace de discussion et la présentation sont cachés par défaut.", "If enabled, all users will join the meeting muted." : "Si activé, tous les utilisateurs rejoindront la réunion en sourdine.", - "Edit \"{room}\"" : "Modifier \"{room}\"", + "Edit \"{room}\"" : "Modifier « {room} »", "Room URL" : "URL de la salle", "Welcome" : "Bienvenue", "Participant limit" : "Limite de participants", + "Sharing" : "Partage", "Every participant is moderator" : "Tous les participants sont des modérateurs", "Moderator access via URL" : "Accès modérateur via URL", "Miscellaneous" : "Divers", @@ -93,13 +97,14 @@ OC.L10N.register( "Join meeting muted" : "Rejoindre la réunion en sourdine", "Room name" : "Nom de la salle", "Create" : "Créer", + "Published" : "Publié", "Open recording" : "Ouvrir l'enregistrement", "Copy to clipboard" : "Copier dans le presse-papier", "Save as file" : "Enregistrer dans un fichier", "_%n participant_::_%n participants_" : ["%n participant","%n participants","%n participants"], "Delete" : "Supprimer", - "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer \"{name}\" ? Cette opération ne peut pas être annulée.", - "Delete \"{name}\"?" : "Supprimer \"{name}\" ?", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer « {name} » ? Cette opération ne peut pas être annulée.", + "Delete \"{name}\"?" : "Supprimer « {name} » ?", "Select target folder" : "Sélectionner un dossier de destination", "Room URL was stored in \"{path}\" as \"{filename}\"." : "L'adresse de la salle a été enregistrée dans \"{path}\" comme \"{filename}\".", "Link stored" : "Lien stocké", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Supprimer ?", "Could not delete record" : "Impossible de supprimer l'enregistrement", "Server error" : "Erreur serveur", - "moderator" : "modérateur", - "admin" : "administrateur", - "Share" : "Partager", + "Could not modify publishing state" : "Impossible de modifier l'état de la publication", + "Open room" : "Ouvrir la salle", + "Start" : "Démarrer", + "Clone room" : "Cloner la salle", "Loading" : "Chargement", "You are not allowed to change this option, because this room is shared with you." : "Vous n'êtes pas autorisé à changer cette option car cette salle est partagée avec vous.", "Max. rooms" : "Nombre max. de salles", @@ -124,14 +130,14 @@ OC.L10N.register( "Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?", "Settings saved" : "Paramètres sauvegardés", "Unexpected error occurred" : "Une erreur est survenue", - "API URL is invalid" : "L'adresse de l'API est invalide", - "API secret is invalid" : "Le secret de l'API est invalide", + "API URL is invalid" : "L’adresse de l’API est invalide", + "API secret is invalid" : "Le secret de l’API est invalide", "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 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 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é.", "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. 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", diff --git a/l10n/fr.json b/l10n/fr.json index 45c78c3..2df35d3 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -6,10 +6,10 @@ "{user} shared the room %s with you." : "{user} a partagé la salle %s avec vous.", "You unshared the room %s with {shareWith}." : "Vous avez annulé le partage de la salle%savec {shareWith}.", "{user} unshared the room %s with you." : "{user} a annulé le partage de la salle %s avec vous.", - "You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle \"%s\".", - "{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle \"%s\".", - "The meeting in room \"%s\" has ended." : "La réunion dans la salle \"%s\" est terminée.", - "Recording for room \"%s\" is ready." : "L'enregistrement pour la salle \"%s\" est prêt.", + "You started a meeting in the \"%s\" room." : "Vous avez commencé une réunion dans la salle « %s ».", + "{user} started a meeting in the \"%s\" room." : "{user} a démarré une réunion dans la salle « %s ».", + "The meeting in room \"%s\" has ended." : "La réunion dans la salle « %s » est terminée.", + "Recording for room \"%s\" is ready." : "L’enregistrement pour la salle « %s » est prêt.", "To invite someone to the meeting, send them this link: %s" : "Pour inviter quelqu'un à la réunion, envoyez-lui ce lien : %s", "Public" : "Public", "Internal + Password protection for guests" : "Interne + Mot de passe pour les invités", @@ -20,12 +20,12 @@ "API URL or secret not configured. Please contact your administrator." : "L'adresse ou le secret de l'API n'est pas configuré. Veuillez contacter votre administrateur.", "BigBlueButton Integration" : "Intégration de BigBlueButton", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "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 le lien invité ** Partager le 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 ** Partager des salles avec des membres, des groupes ou des cercles\n* ** Présentation personnalisée ** Démarrer une salle avec une présentation sélectionnée à partir de votre navigateur de fichiers\n* ** Gérez 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 plus d'informations dans notre [readme] (https://github.com/sualko/cloud_bbb).\nAimez-vous cette application ? Donnez quelque chose à la communauté open source et consultez notre\n[façons de contribuer] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDéveloppeur recherché ! Si vous aviez le temps, ce serait génial si vous pouviez aider à 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.*", "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 ?", "Back to %s" : "Retourner à %s", "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Vous pouvez obtenir l'adresse et le secret de l'API en exécutant \"sudo bbb-conf --secret\" sur votre serveur BigBlueButton.", - "API URL" : "Adresse de l'API", + "API URL" : "Adresse de l’API", "API secret" : "Secret de l'API", "Save" : "Enregistrer", "Show room manager in app navigation instead of settings page." : "Afficher le gestionnaire de salles dans la barre de navigation plutôt que dans les paramètres.", @@ -45,7 +45,7 @@ "Please enter your name!" : "Veuillez saisir votre nom !", "The name must be at least 3 characters long." : "Le nom doit contenir au moins 3 caractères.", "You have to provide the correct password to join the meeting." : "Vous devez fournir le bon mot de passe pour rejoindre la réunion.", - "Display name" : "Nom d'affichage", + "Display name" : "Nom d’affichage", "Password" : "Mot de passe", "Join" : "Rejoindre", "Have an account? Log in." : "Vous avez déjà un compte ? Connectez-vous.", @@ -54,6 +54,9 @@ "Group" : "Groupe", "Searching" : "Recherche en cours", "No matches" : "Pas de résultats", + "admin" : "administrateur", + "moderator" : "modérateur", + "user" : "utilisateur", "Name" : "Nom", "Access" : "Accès", "Max" : "Max", @@ -64,10 +67,10 @@ "Room quota:" : "Quota de la salle :", "Edit" : "Modifier", "Descriptive name of this room." : "Nom descriptif de cette salle.", - "This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l'espace de discussion après qu'ils l'ont rejoint.", - "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu'il n'y a pas de limite.", - "If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut démarrer l'enregistrement.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publique : Tout le monde connaissant le lien peut rejoindre. Mot de passe : Les invités doivent fournir un mot de passe. Salle d'attente : Un modérateur doit accepter chaque invité avant qu'ils puissent rejoindre. Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre.", + "This message is shown to all users in the chat area after they joined." : "Ce message est affiché à tous les utilisateurs de l’espace de discussion après qu’ils l’ont rejoint.", + "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Fixe une limite au nombre de participants pour cette salle. Zéro signifie qu’il n’y a pas de limite.", + "If enabled, the moderator is able to start the recording." : "Si activé, le modérateur peut lancer l'enregistrement.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explication des différents concepts qui constituent les options d’accès :
- Public : Toute personne possédant le lien peut rejoindre la conversation.-
Interne : Seuls les utilisateurs Nextcloud peuvent rejoindre la conversation.-
Mot de passe : Seuls les invités possédant le mot de passe peuvent rejoindre la conversation..-
Salle d’attente : Un modérateur doit accepter chaque invité avant qu’il ne puisse rejoindre la conversation.-
Restreint : Seuls les utilisateurs et groupes sélectionnés peuvent accéder à cette conversation. ", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Un modérateur est en mesure de gérer tous les participants d'une réunion, incluant leur éjection de la salle, leur mise en sourdine ou la désignation d'un présentateur. Les utilisateurs ayant le rôle de modérateur peuvent également mettre fin à une réunion ou modifier les paramètres par défaut.", "If enabled, normal users have to wait until a moderator is in the room." : "Si activé, les utilisateurs devront attendre qu'un modérateur rejoigne la salle.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Si activé, une URL de modérateur est générée pour permettre l'accès avec les droits de modération.", @@ -76,10 +79,11 @@ "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Si activé, l'utilisateur n'a pas besoin de faire un test d'appel et une prévisualisation de la webcam à la première connexion (disponible depuis BBB server 2.3).", "If enabled, the user list, chat area and presentation are hidden by default." : "Si activé, la liste des utilisateurs, l'espace de discussion et la présentation sont cachés par défaut.", "If enabled, all users will join the meeting muted." : "Si activé, tous les utilisateurs rejoindront la réunion en sourdine.", - "Edit \"{room}\"" : "Modifier \"{room}\"", + "Edit \"{room}\"" : "Modifier « {room} »", "Room URL" : "URL de la salle", "Welcome" : "Bienvenue", "Participant limit" : "Limite de participants", + "Sharing" : "Partage", "Every participant is moderator" : "Tous les participants sont des modérateurs", "Moderator access via URL" : "Accès modérateur via URL", "Miscellaneous" : "Divers", @@ -91,13 +95,14 @@ "Join meeting muted" : "Rejoindre la réunion en sourdine", "Room name" : "Nom de la salle", "Create" : "Créer", + "Published" : "Publié", "Open recording" : "Ouvrir l'enregistrement", "Copy to clipboard" : "Copier dans le presse-papier", "Save as file" : "Enregistrer dans un fichier", "_%n participant_::_%n participants_" : ["%n participant","%n participants","%n participants"], "Delete" : "Supprimer", - "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer \"{name}\" ? Cette opération ne peut pas être annulée.", - "Delete \"{name}\"?" : "Supprimer \"{name}\" ?", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Êtes-vous sur de vouloir supprimer « {name} » ? Cette opération ne peut pas être annulée.", + "Delete \"{name}\"?" : "Supprimer « {name} » ?", "Select target folder" : "Sélectionner un dossier de destination", "Room URL was stored in \"{path}\" as \"{filename}\"." : "L'adresse de la salle a été enregistrée dans \"{path}\" comme \"{filename}\".", "Link stored" : "Lien stocké", @@ -109,9 +114,10 @@ "Delete?" : "Supprimer ?", "Could not delete record" : "Impossible de supprimer l'enregistrement", "Server error" : "Erreur serveur", - "moderator" : "modérateur", - "admin" : "administrateur", - "Share" : "Partager", + "Could not modify publishing state" : "Impossible de modifier l'état de la publication", + "Open room" : "Ouvrir la salle", + "Start" : "Démarrer", + "Clone room" : "Cloner la salle", "Loading" : "Chargement", "You are not allowed to change this option, because this room is shared with you." : "Vous n'êtes pas autorisé à changer cette option car cette salle est partagée avec vous.", "Max. rooms" : "Nombre max. de salles", @@ -122,14 +128,14 @@ "Delete restrictions for \"{name}\"?" : "Supprimer les restrictions pour \"{name}\" ?", "Settings saved" : "Paramètres sauvegardés", "Unexpected error occurred" : "Une erreur est survenue", - "API URL is invalid" : "L'adresse de l'API est invalide", - "API secret is invalid" : "Le secret de l'API est invalide", + "API URL is invalid" : "L’adresse de l’API est invalide", + "API secret is invalid" : "Le secret de l’API est invalide", "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 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 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é.", "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. 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", diff --git a/l10n/ga.js b/l10n/ga.js new file mode 100644 index 0000000..72fa5f8 --- /dev/null +++ b/l10n/ga.js @@ -0,0 +1,149 @@ +OC.L10N.register( + "bbb", + { + "You created the room %s." : "Chruthaigh tú an seomra %s.", + "You deleted the room %s." : "Scrios tú an seomra %s.", + "{user} deleted the room %s." : "Scrios {user} an seomra %s.", + "You shared the room %s with {shareWith}." : "Roinn tú an seomra %s le {shareWith}.", + "{user} shared the room %s with you." : "Roinn {user} an seomra %s leat.", + "You unshared the room %s with {shareWith}." : "Dhíroinnte tú an seomra %s le {shareWith}.", + "{user} unshared the room %s with you." : "Dhíroinn {user} an seomra %s leat.", + "You started a meeting in the \"%s\" room." : "Chuir tú tús le cruinniú sa seomra \"%s\".", + "{user} started a meeting in the \"%s\" room." : "Chuir {user} tús le cruinniú sa seomra \"%s\".", + "The meeting in room \"%s\" has ended." : "Tháinig deireadh leis an gcruinniú i seomra \"%s\".", + "Recording for room \"%s\" is ready." : "Tá taifeadadh do sheomra \"%s\" réidh.", + "To invite someone to the meeting, send them this link: %s" : "Chun cuireadh a thabhairt do dhuine éigin chuig an gcruinniú, seol an nasc seo chucu: %s", + "Public" : "Poiblí", + "Internal + Password protection for guests" : "Inmheánach + Cosaint pasfhocal d'aíonna", + "Internal + Waiting room for guests" : "Inmheánach + Seomra feithimh d'aíonna", + "Waiting room for all users" : "Seomra feithimh do gach úsáideoir", + "Internal" : "Inmheánach", + "Internal restricted" : "Inmheánach srianta", + "API URL or secret not configured. Please contact your administrator." : "URL API nó rún gan a bheith cumraithe. Déan teagmháil le do riarthóir le do thoil.", + "BigBlueButton Integration" : "Comhtháthú BigBlueButton", + "BigBlueButton integration for Nextcloud" : "Comhtháthú BigBlueButton do Nextcloud", + "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/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.*", + "Room not found" : "Seomra gan aimsiú", + "The room could not be found. Maybe it was deleted?" : "Níorbh fhéidir an seomra a aimsiú. B'fhéidir gur scriosadh é?", + "Back to %s" : "Ar ais go dtí %s", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Faigh do URL API agus rúnda trí \"sudo bbb-conf --secret\" a fhorghníomhú ar do fhreastalaí BigBlueButton.", + "API URL" : "URL API", + "API secret" : "Rúnda API", + "Save" : "Sábháil", + "Show room manager in app navigation instead of settings page." : "Taispeáin bainisteoir an tseomra i nascleanúint aipe in ionad an leathanaigh socruithe.", + "Use Nextcloud theme in BigBlueButton." : "Úsáid téama Nextcloud in BigBlueButton.", + "Default Room Settings" : "Socruithe Seomra Réamhshocraithe", + "Below you can change some default values, which are used to create a new room." : "Anseo thíos is féidir leat roinnt luachanna réamhshocraithe a athrú, a úsáidtear chun seomra nua a chruthú.", + "Perform media check before usage" : "Déan seiceáil na meán roimh úsáid", + "Community" : "Pobal", + "Are you enjoying this app? Give something back to the open source community." : "An bhfuil tú ag baint sult as an aip seo? Tabhair rud éigin ar ais don phobal foinse oscailte.", + "Checkout the contributor guide" : "Seiceáil an treoir do ranníocóirí", + "URL Shortener" : "Giorraitheoir URL", + "If you like to use shorter urls, you can enter a forwarding proxy below." : "Más maith leat URLanna níos giorra a úsáid, is féidir leat seachfhreastalaí seolta a chur isteach thíos.", + "URL shortener" : "Giorraitheoir URL", + "Restrictions" : "Srianta", + "You will be forwarded to the room in the next few seconds." : "Cuirfear ar aghaidh chuig an seomra thú sna soicindí atá romhainn.", + "Let's go!" : "A ligean ar dul!", + "Please enter your name!" : "Cuir isteach d'ainm le do thoil!", + "The name must be at least 3 characters long." : "Caithfidh an t-ainm a bheith 3 charachtar ar a laghad ar fad.", + "You have to provide the correct password to join the meeting." : "Caithfidh tú an pasfhocal ceart a sholáthar chun páirt a ghlacadh sa chruinniú.", + "Display name" : "Ainm taispeána", + "Password" : "Pasfhocal", + "Join" : "Bígí", + "Have an account? Log in." : "An bhfuil cuntas agat? Logáil isteach.", + "Hello %s" : "Dia duit %s", + "Name, group …" : "Ainm, grúpa…", + "Group" : "Grúpa", + "Searching" : "Cuardach", + "No matches" : "Gan aon chluichí", + "admin" : "riar", + "moderator" : "modhnóir", + "user" : "úsáideoir", + "Name" : "Ainm", + "Access" : "Rochtain", + "Max" : "Uas", + "Record" : "Taifead", + "Recordings" : "Taifeadtaí", + "You are not permitted to create a room." : "Níl cead agat seomra a chruthú.", + "You exceeded the maximum number of rooms." : "Sháraigh tú uaslíon na seomraí.", + "Room quota:" : "Cuóta seomra:", + "Edit" : "Cuir in eagar", + "Descriptive name of this room." : "Ainm tuairisciúil an tseomra seo.", + "This message is shown to all users in the chat area after they joined." : "Taispeántar an teachtaireacht seo do gach úsáideoir sa limistéar comhrá tar éis dóibh dul isteach ann.", + "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Socraíonn sé teorainn ar líon na rannpháirtithe don seomra seo. Ciallaíonn nialais nach bhfuil aon teorainn ann.", + "If enabled, the moderator is able to start the recording." : "Má tá sé cumasaithe, beidh an modhnóir in ann an taifeadadh a thosú.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Míniú ar na coincheapa éagsúla a chomhdhéanann roghanna rochtana :1- Poiblí: Is féidir le haon duine a bhfuil an nasc aige páirt a ghlacadh.- 2Inmheánach: Ní féidir ach le húsáideoirí Nextcloud páirt a ghlacadh.- 3Pasfhocal: Ní féidir ach le haíonna a bhfuil an pasfhocal acu páirt a ghlacadh..- 4Seomra feithimh: Modhnóir ní mór dóibh glacadh le gach aoi sular féidir leo páirt a ghlacadh.- 5Srianta : Ní féidir ach le húsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra seo.", + "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Tá modhnóir in ann gach rannpháirtí i gcruinniú a bhainistiú lena n-áirítear láithreoir a chiceáil, a bhalbhú nó a roghnú. Tá úsáideoirí a bhfuil an modhnóir ról acu in ann cruinniú a dhúnadh freisin nó na socruithe réamhshocraithe a athrú.", + "If enabled, normal users have to wait until a moderator is in the room." : "Má tá sé cumasaithe, caithfidh gnáthúsáideoirí fanacht go dtí go mbeidh modhnóir sa seomra.", + "If enabled, a moderator URL is generated which allows access with moderator permission." : "Má tá sé cumasaithe, gintear URL modhnóra a cheadaíonn rochtain le cead an mhodhnóra.", + "Only selected users and groups are allowed to access the room." : "Ní cheadaítear ach úsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra.", + "If disabled, a microphone is needed to join the conference." : "Má tá sé díchumasaithe, beidh micreafón ag teastáil chun páirt a ghlacadh sa chomhdháil.", + "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Má tá sé cumasaithe, níl cead ag an úsáideoir réamhghlao macalla agus ceamara gréasáin a dhéanamh ar an gcéad dul isteach (ar fáil ó fhreastalaí BBB 2.3).", + "If enabled, the user list, chat area and presentation are hidden by default." : "Má tá sé cumasaithe, tá an liosta úsáideoirí, an limistéar comhrá agus an cur i láthair i bhfolach de réir réamhshocraithe.", + "If enabled, all users will join the meeting muted." : "Má tá sé cumasaithe, glacfaidh gach úsáideoir páirt sa chruinniú balbhaithe.", + "Edit \"{room}\"" : "Cuir \"{room}\" in eagar", + "Room URL" : "URL an tseomra", + "Welcome" : "Fáilte", + "Participant limit" : "Teorainn rannpháirtí", + "Sharing" : "Roinnt", + "Every participant is moderator" : "Is modhnóir é gach rannpháirtí", + "Moderator access via URL" : "Rochtain mhodhnóra trí URL", + "Miscellaneous" : "Ilghnéitheach", + "Recording" : "Taifeadadh", + "Require moderator to start room" : "Éilíonn an modhnóir chun an seomra a thosú", + "Listen only option" : "Éist leis an rogha amháin", + "Skip media check before usage" : "Scipeáil seiceáil na meán roimh úsáid", + "Clean layout" : "Leagan amach glan", + "Join meeting muted" : "Balbhaíodh cruinniú páirte", + "Room name" : "Ainm an tseomra", + "Create" : "Cruthaigh", + "Published" : "Foilsithe", + "Open recording" : "Taifeadadh oscailte", + "Copy to clipboard" : "Cóipeáil chuig an ngearrthaisce", + "Save as file" : "Sábháil mar chomhad", + "_%n participant_::_%n participants_" : ["%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí"], + "Delete" : "Scrios", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.", + "Delete \"{name}\"?" : "An bhfuil fonn ort \"{name}\" a scriosadh?", + "Select target folder" : "Roghnaigh fillteán sprice", + "Room URL was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL an tseomra i \"{path}\" mar \"{filename}\".", + "Link stored" : "Nasc stóráilte", + "URL to room could not be stored." : "Níorbh fhéidir URL an tseomra a stóráil.", + "Error" : "Earráid", + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL le cur i láthair in \"{path}\" mar \"{filename}\".", + "URL to presentation could not be stored." : "Níorbh fhéidir URL an léirithe a stóráil.", + "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat an taifeadadh ó \"{startDate}\" a scriosadh? Ní féidir an oibríocht seo a chealú.", + "Delete?" : "Scrios?", + "Could not delete record" : "Níorbh fhéidir an taifead a scriosadh", + "Server error" : "Earráid freastalaí", + "Could not modify publishing state" : "Níorbh fhéidir an stát foilsitheoireachta a mhodhnú", + "Open room" : "Seomra oscailte", + "Start" : "Tosaigh", + "Clone room" : "Seomra clón", + "Loading" : "Ag lódáil", + "You are not allowed to change this option, because this room is shared with you." : "Níl cead agat an rogha seo a athrú, toisc go bhfuil an seomra seo roinnte leat.", + "Max. rooms" : "uas. seomraí", + "Max. participants" : "Uas. rannpháirtithe", + "Group …" : "Grúpa…", + "Restrictions do not affect existing rooms. Minus one means the value is unlimited. The least restrictive option is chosen for every user if multiple restrictions apply." : "Ní chuireann srianta isteach ar sheomraí atá ann cheana féin. Ciallaíonn lúide a haon go bhfuil an luach gan teorainn. Roghnaítear an rogha is lú srianta do gach úsáideoir má bhíonn srianta iolracha i bhfeidhm.", + "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat na srianta don ghrúpa \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.", + "Delete restrictions for \"{name}\"?" : "Scrios srianta do \"{name}\"?", + "Settings saved" : "Socruithe sábháilte", + "Unexpected error occurred" : "Tharla earráid gan choinne", + "API URL is invalid" : "Tá URL API neamhbhailí", + "API secret is invalid" : "Tá rún API neamhbhailí", + "URL has to start with HTTPS" : "Caithfidh URL tosú le HTTPS", + "URL has to contain the {token} placeholder" : "Caithfidh an sealbhóir áit {token} a bheith sa URL", + "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Caithfidh URL tosú le https:// agus {token} a bheith ann. Ina theannta sin is féidir an sealbhóir áitribh {user} a úsáid.", + "The file \"{filename}\" was uploaded to your room." : "Uaslódáladh an comhad \"{filename}\" chuig do sheomra.", + "The file \"{filename}\" could not be uploaded to your room." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra.", + "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra. B'fhéidir nach dtacaíonn do fhreastalaí BigBlueButton leis an ngníomh seo.", + "Send file to BBB" : "Seol an comhad chuig BBB", + "Send to" : "Sheoladh chuig", + "Start with" : "Tosaigh le", + "Please select the room in which you like to use the file \"{filename}\"." : "Roghnaigh an seomra inar mhaith leat an comhad \"{filename}\" a úsáid le do thoil.", + "No rooms available!" : "Níl seomraí ar fáil!", + "Send to BBB" : "Seol chuig BBB", + "_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil."] +}, +"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); diff --git a/l10n/ga.json b/l10n/ga.json new file mode 100644 index 0000000..e54fec3 --- /dev/null +++ b/l10n/ga.json @@ -0,0 +1,147 @@ +{ "translations": { + "You created the room %s." : "Chruthaigh tú an seomra %s.", + "You deleted the room %s." : "Scrios tú an seomra %s.", + "{user} deleted the room %s." : "Scrios {user} an seomra %s.", + "You shared the room %s with {shareWith}." : "Roinn tú an seomra %s le {shareWith}.", + "{user} shared the room %s with you." : "Roinn {user} an seomra %s leat.", + "You unshared the room %s with {shareWith}." : "Dhíroinnte tú an seomra %s le {shareWith}.", + "{user} unshared the room %s with you." : "Dhíroinn {user} an seomra %s leat.", + "You started a meeting in the \"%s\" room." : "Chuir tú tús le cruinniú sa seomra \"%s\".", + "{user} started a meeting in the \"%s\" room." : "Chuir {user} tús le cruinniú sa seomra \"%s\".", + "The meeting in room \"%s\" has ended." : "Tháinig deireadh leis an gcruinniú i seomra \"%s\".", + "Recording for room \"%s\" is ready." : "Tá taifeadadh do sheomra \"%s\" réidh.", + "To invite someone to the meeting, send them this link: %s" : "Chun cuireadh a thabhairt do dhuine éigin chuig an gcruinniú, seol an nasc seo chucu: %s", + "Public" : "Poiblí", + "Internal + Password protection for guests" : "Inmheánach + Cosaint pasfhocal d'aíonna", + "Internal + Waiting room for guests" : "Inmheánach + Seomra feithimh d'aíonna", + "Waiting room for all users" : "Seomra feithimh do gach úsáideoir", + "Internal" : "Inmheánach", + "Internal restricted" : "Inmheánach srianta", + "API URL or secret not configured. Please contact your administrator." : "URL API nó rún gan a bheith cumraithe. Déan teagmháil le do riarthóir le do thoil.", + "BigBlueButton Integration" : "Comhtháthú BigBlueButton", + "BigBlueButton integration for Nextcloud" : "Comhtháthú BigBlueButton do Nextcloud", + "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/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.*", + "Room not found" : "Seomra gan aimsiú", + "The room could not be found. Maybe it was deleted?" : "Níorbh fhéidir an seomra a aimsiú. B'fhéidir gur scriosadh é?", + "Back to %s" : "Ar ais go dtí %s", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Faigh do URL API agus rúnda trí \"sudo bbb-conf --secret\" a fhorghníomhú ar do fhreastalaí BigBlueButton.", + "API URL" : "URL API", + "API secret" : "Rúnda API", + "Save" : "Sábháil", + "Show room manager in app navigation instead of settings page." : "Taispeáin bainisteoir an tseomra i nascleanúint aipe in ionad an leathanaigh socruithe.", + "Use Nextcloud theme in BigBlueButton." : "Úsáid téama Nextcloud in BigBlueButton.", + "Default Room Settings" : "Socruithe Seomra Réamhshocraithe", + "Below you can change some default values, which are used to create a new room." : "Anseo thíos is féidir leat roinnt luachanna réamhshocraithe a athrú, a úsáidtear chun seomra nua a chruthú.", + "Perform media check before usage" : "Déan seiceáil na meán roimh úsáid", + "Community" : "Pobal", + "Are you enjoying this app? Give something back to the open source community." : "An bhfuil tú ag baint sult as an aip seo? Tabhair rud éigin ar ais don phobal foinse oscailte.", + "Checkout the contributor guide" : "Seiceáil an treoir do ranníocóirí", + "URL Shortener" : "Giorraitheoir URL", + "If you like to use shorter urls, you can enter a forwarding proxy below." : "Más maith leat URLanna níos giorra a úsáid, is féidir leat seachfhreastalaí seolta a chur isteach thíos.", + "URL shortener" : "Giorraitheoir URL", + "Restrictions" : "Srianta", + "You will be forwarded to the room in the next few seconds." : "Cuirfear ar aghaidh chuig an seomra thú sna soicindí atá romhainn.", + "Let's go!" : "A ligean ar dul!", + "Please enter your name!" : "Cuir isteach d'ainm le do thoil!", + "The name must be at least 3 characters long." : "Caithfidh an t-ainm a bheith 3 charachtar ar a laghad ar fad.", + "You have to provide the correct password to join the meeting." : "Caithfidh tú an pasfhocal ceart a sholáthar chun páirt a ghlacadh sa chruinniú.", + "Display name" : "Ainm taispeána", + "Password" : "Pasfhocal", + "Join" : "Bígí", + "Have an account? Log in." : "An bhfuil cuntas agat? Logáil isteach.", + "Hello %s" : "Dia duit %s", + "Name, group …" : "Ainm, grúpa…", + "Group" : "Grúpa", + "Searching" : "Cuardach", + "No matches" : "Gan aon chluichí", + "admin" : "riar", + "moderator" : "modhnóir", + "user" : "úsáideoir", + "Name" : "Ainm", + "Access" : "Rochtain", + "Max" : "Uas", + "Record" : "Taifead", + "Recordings" : "Taifeadtaí", + "You are not permitted to create a room." : "Níl cead agat seomra a chruthú.", + "You exceeded the maximum number of rooms." : "Sháraigh tú uaslíon na seomraí.", + "Room quota:" : "Cuóta seomra:", + "Edit" : "Cuir in eagar", + "Descriptive name of this room." : "Ainm tuairisciúil an tseomra seo.", + "This message is shown to all users in the chat area after they joined." : "Taispeántar an teachtaireacht seo do gach úsáideoir sa limistéar comhrá tar éis dóibh dul isteach ann.", + "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Socraíonn sé teorainn ar líon na rannpháirtithe don seomra seo. Ciallaíonn nialais nach bhfuil aon teorainn ann.", + "If enabled, the moderator is able to start the recording." : "Má tá sé cumasaithe, beidh an modhnóir in ann an taifeadadh a thosú.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Míniú ar na coincheapa éagsúla a chomhdhéanann roghanna rochtana :1- Poiblí: Is féidir le haon duine a bhfuil an nasc aige páirt a ghlacadh.- 2Inmheánach: Ní féidir ach le húsáideoirí Nextcloud páirt a ghlacadh.- 3Pasfhocal: Ní féidir ach le haíonna a bhfuil an pasfhocal acu páirt a ghlacadh..- 4Seomra feithimh: Modhnóir ní mór dóibh glacadh le gach aoi sular féidir leo páirt a ghlacadh.- 5Srianta : Ní féidir ach le húsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra seo.", + "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Tá modhnóir in ann gach rannpháirtí i gcruinniú a bhainistiú lena n-áirítear láithreoir a chiceáil, a bhalbhú nó a roghnú. Tá úsáideoirí a bhfuil an modhnóir ról acu in ann cruinniú a dhúnadh freisin nó na socruithe réamhshocraithe a athrú.", + "If enabled, normal users have to wait until a moderator is in the room." : "Má tá sé cumasaithe, caithfidh gnáthúsáideoirí fanacht go dtí go mbeidh modhnóir sa seomra.", + "If enabled, a moderator URL is generated which allows access with moderator permission." : "Má tá sé cumasaithe, gintear URL modhnóra a cheadaíonn rochtain le cead an mhodhnóra.", + "Only selected users and groups are allowed to access the room." : "Ní cheadaítear ach úsáideoirí agus grúpaí roghnaithe rochtain a fháil ar an seomra.", + "If disabled, a microphone is needed to join the conference." : "Má tá sé díchumasaithe, beidh micreafón ag teastáil chun páirt a ghlacadh sa chomhdháil.", + "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Má tá sé cumasaithe, níl cead ag an úsáideoir réamhghlao macalla agus ceamara gréasáin a dhéanamh ar an gcéad dul isteach (ar fáil ó fhreastalaí BBB 2.3).", + "If enabled, the user list, chat area and presentation are hidden by default." : "Má tá sé cumasaithe, tá an liosta úsáideoirí, an limistéar comhrá agus an cur i láthair i bhfolach de réir réamhshocraithe.", + "If enabled, all users will join the meeting muted." : "Má tá sé cumasaithe, glacfaidh gach úsáideoir páirt sa chruinniú balbhaithe.", + "Edit \"{room}\"" : "Cuir \"{room}\" in eagar", + "Room URL" : "URL an tseomra", + "Welcome" : "Fáilte", + "Participant limit" : "Teorainn rannpháirtí", + "Sharing" : "Roinnt", + "Every participant is moderator" : "Is modhnóir é gach rannpháirtí", + "Moderator access via URL" : "Rochtain mhodhnóra trí URL", + "Miscellaneous" : "Ilghnéitheach", + "Recording" : "Taifeadadh", + "Require moderator to start room" : "Éilíonn an modhnóir chun an seomra a thosú", + "Listen only option" : "Éist leis an rogha amháin", + "Skip media check before usage" : "Scipeáil seiceáil na meán roimh úsáid", + "Clean layout" : "Leagan amach glan", + "Join meeting muted" : "Balbhaíodh cruinniú páirte", + "Room name" : "Ainm an tseomra", + "Create" : "Cruthaigh", + "Published" : "Foilsithe", + "Open recording" : "Taifeadadh oscailte", + "Copy to clipboard" : "Cóipeáil chuig an ngearrthaisce", + "Save as file" : "Sábháil mar chomhad", + "_%n participant_::_%n participants_" : ["%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí","%n rannpháirtí"], + "Delete" : "Scrios", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.", + "Delete \"{name}\"?" : "An bhfuil fonn ort \"{name}\" a scriosadh?", + "Select target folder" : "Roghnaigh fillteán sprice", + "Room URL was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL an tseomra i \"{path}\" mar \"{filename}\".", + "Link stored" : "Nasc stóráilte", + "URL to room could not be stored." : "Níorbh fhéidir URL an tseomra a stóráil.", + "Error" : "Earráid", + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "Stóráladh URL le cur i láthair in \"{path}\" mar \"{filename}\".", + "URL to presentation could not be stored." : "Níorbh fhéidir URL an léirithe a stóráil.", + "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat an taifeadadh ó \"{startDate}\" a scriosadh? Ní féidir an oibríocht seo a chealú.", + "Delete?" : "Scrios?", + "Could not delete record" : "Níorbh fhéidir an taifead a scriosadh", + "Server error" : "Earráid freastalaí", + "Could not modify publishing state" : "Níorbh fhéidir an stát foilsitheoireachta a mhodhnú", + "Open room" : "Seomra oscailte", + "Start" : "Tosaigh", + "Clone room" : "Seomra clón", + "Loading" : "Ag lódáil", + "You are not allowed to change this option, because this room is shared with you." : "Níl cead agat an rogha seo a athrú, toisc go bhfuil an seomra seo roinnte leat.", + "Max. rooms" : "uas. seomraí", + "Max. participants" : "Uas. rannpháirtithe", + "Group …" : "Grúpa…", + "Restrictions do not affect existing rooms. Minus one means the value is unlimited. The least restrictive option is chosen for every user if multiple restrictions apply." : "Ní chuireann srianta isteach ar sheomraí atá ann cheana féin. Ciallaíonn lúide a haon go bhfuil an luach gan teorainn. Roghnaítear an rogha is lú srianta do gach úsáideoir má bhíonn srianta iolracha i bhfeidhm.", + "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "An bhfuil tú cinnte gur mhaith leat na srianta don ghrúpa \"{name}\" a scriosadh? Ní féidir an oibríocht seo a chealú.", + "Delete restrictions for \"{name}\"?" : "Scrios srianta do \"{name}\"?", + "Settings saved" : "Socruithe sábháilte", + "Unexpected error occurred" : "Tharla earráid gan choinne", + "API URL is invalid" : "Tá URL API neamhbhailí", + "API secret is invalid" : "Tá rún API neamhbhailí", + "URL has to start with HTTPS" : "Caithfidh URL tosú le HTTPS", + "URL has to contain the {token} placeholder" : "Caithfidh an sealbhóir áit {token} a bheith sa URL", + "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Caithfidh URL tosú le https:// agus {token} a bheith ann. Ina theannta sin is féidir an sealbhóir áitribh {user} a úsáid.", + "The file \"{filename}\" was uploaded to your room." : "Uaslódáladh an comhad \"{filename}\" chuig do sheomra.", + "The file \"{filename}\" could not be uploaded to your room." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra.", + "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Níorbh fhéidir an comhad \"{filename}\" a uaslódáil chuig do sheomra. B'fhéidir nach dtacaíonn do fhreastalaí BigBlueButton leis an ngníomh seo.", + "Send file to BBB" : "Seol an comhad chuig BBB", + "Send to" : "Sheoladh chuig", + "Start with" : "Tosaigh le", + "Please select the room in which you like to use the file \"{filename}\"." : "Roghnaigh an seomra inar mhaith leat an comhad \"{filename}\" a úsáid le do thoil.", + "No rooms available!" : "Níl seomraí ar fáil!", + "Send to BBB" : "Seol chuig BBB", + "_This room is not open yet. We will try it again in %n second. Please wait._::_This room is not open yet. We will try it again in %n seconds. Please wait._" : ["Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil.","Níl an seomra seo oscailte go fóill. Bainfimid triail eile as i gceann %n soicind. Fán le do thoil."] +},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" +} \ No newline at end of file diff --git a/l10n/gd.js b/l10n/gd.js index f344962..2d086a6 100644 --- a/l10n/gd.js +++ b/l10n/gd.js @@ -6,9 +6,9 @@ OC.L10N.register( "Password" : "Facal-faire", "Name" : "Ainm", "Edit" : "Deasaich", + "Sharing" : "Co-roinneadh", "Create" : "Cruthaich", "Delete" : "Sguab às", - "Error" : "Mearachd", - "Share" : "Co-roinn" + "Error" : "Mearachd" }, "nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"); diff --git a/l10n/gd.json b/l10n/gd.json index feca8c6..545f8d7 100644 --- a/l10n/gd.json +++ b/l10n/gd.json @@ -4,9 +4,9 @@ "Password" : "Facal-faire", "Name" : "Ainm", "Edit" : "Deasaich", + "Sharing" : "Co-roinneadh", "Create" : "Cruthaich", "Delete" : "Sguab às", - "Error" : "Mearachd", - "Share" : "Co-roinn" + "Error" : "Mearachd" },"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/gl.js b/l10n/gl.js index 7477b78..0dad0bb 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "URL ou segredo da API sen configurar. Póñase en contacto coa administración desta instancia.", "BigBlueButton Integration" : "Integración de BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton en Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear xuntanzas cunha instalación externa de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Configuración de salas** Crear múltiples configuracións de salas con nome, mensaxe de benvida …\n* **Compartir a ligazón de convidados** Compartir a ligazón da sala con todos os seus convidados\n* **Compartir ligazón de moderador** Convida moderadores á sala\n* **Compartir salas** Compartir salas con membros, grupos ou círculos\n* **Presentación personalizada** Inicie unha sala cunha presentación seleccionada dende o seu navegador de ficheiros\n* **Xestionar as gravacións** Ver, compartir e eliminar as gravacións das súas salas\n* **Restricións** Restrinxir a creación de salas a determinados grupos\n* ** Actividades** Obteña unha visión xeral das actividades da súa sala\n\nGuía de inicio rápido e máis información no noso [léame](https://github.com/sualko/cloud_bbb).\nGústalle esta aplicación? Devolva algo á comunidade de código aberto e consulte as nosas\n[formas de colaborar](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBúscase programador! Se ten tempo, sería incríbel que puidese axudar a mellorar esta aplicación.\n\n*Esta aplicación integra BigBlueButton e non está aprobada nin certificada por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton son marcas comerciais de BigBlueButton Inc.*", + "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/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.*", "Room not found" : "Non se atopou a sala", "The room could not be found. Maybe it was deleted?" : "Non foi posíbel atopar a sala. Quizais foi eliminada.", "Back to %s" : "Volver a %s", @@ -30,7 +30,7 @@ OC.L10N.register( "API URL" : "URL da API", "API secret" : "Segredo da API", "Save" : "Gardar", - "Show room manager in app navigation instead of settings page." : "Amosar o xestor de sala na navegación da aplicación no canto de na páxina de axustes.", + "Show room manager in app navigation instead of settings page." : "Amosar o xestor de sala na navegación da aplicación en troques de na páxina de axustes.", "Use Nextcloud theme in BigBlueButton." : "Usar o tema Nextcloud en BigBlueButton.", "Default Room Settings" : "Axustes predeterminados da sala", "Below you can change some default values, which are used to create a new room." : "A continuación pode cambiar algúns valores predeterminados, que se usan para crear unha nova sala.", @@ -56,12 +56,15 @@ OC.L10N.register( "Group" : "Grupo", "Searching" : "Buscando", "No matches" : "Non hai coincidencias", + "admin" : "admin", + "moderator" : "moderador", + "user" : "usuario", "Name" : "Nome", "Access" : "Acceso", "Max" : "Máx", "Record" : "Gravar", "Recordings" : "Gravacións", - "You are not permitted to create a room." : "Non ten permiso para crear unha sala", + "You are not permitted to create a room." : "Non ten permisos para crear unha sala", "You exceeded the maximum number of rooms." : "Excedeu o número máximo de salas.", "Room quota:" : "Cota de salas:", "Edit" : "Editar", @@ -69,19 +72,20 @@ 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.", "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.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pública: todos os que coñecen a ligazón poden unirse. Contrasinal: Os convidados teñen que fornecer un contrasinal. Sala de espera: Un moderador ten que aceptar a todos os convidados antes de que poidan unirse. Interna: só os usuarios de Nextcloud poden unirse.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explicación dos distintos conceptos que constitúen as opcións de acceso :
- Público: Pode unirse calquera persoa que teña a ligazón.-
Interno: Só os poden unirse osusuarios de Nextcloud.-
Contrasinal: Só poden unirse os convidados que teñan o contrasinal..-
Sala de espera: Un moderador debe aceptar cada convidado antes de poder unirse.-
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.", "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.", "Only selected users and groups are allowed to access the room." : "Só os usuarios e grupos seleccionados teñen permiso para acceder á sala.", "If disabled, a microphone is needed to join the conference." : "Se está desactivado, é necesario un micrófono para unirse á conferencia.", - "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Se está activado, o usuario non ten que realizar unha proba de eco nin unha vista previa da cámara web na primeira unión (dispoñíbel dende o BBB servidor 2.3).", + "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Se está activado, o usuario non ten que realizar unha proba de eco nin unha vista previa da cámara web na primeira unión (dispoñíbel desde o BBB servidor 2.3).", "If enabled, the user list, chat area and presentation are hidden by default." : "Se está activado, a lista de usuarios, a área de parolas e a presentación están agochadas de xeito predeterminado.", - "If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza silenciados.", + "If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza enmudecidos.", "Edit \"{room}\"" : "Editar «{room}»", "Room URL" : "URL da sala", "Welcome" : "Benvido", "Participant limit" : "Límite de participantes", + "Sharing" : "Compartindo", "Every participant is moderator" : "Todos os participantes son moderadores", "Moderator access via URL" : "Acceso de moderador a través de URL", "Miscellaneous" : "Miscelánea", @@ -90,9 +94,10 @@ OC.L10N.register( "Listen only option" : "Opción de só escoitar", "Skip media check before usage" : "Omitir a comprobación de medios antes do uso", "Clean layout" : "Disposición limpa", - "Join meeting muted" : "Unirse á xuntanza silenciado", + "Join meeting muted" : "Unirse á xuntanza enmudecido", "Room name" : "Nome da sala", "Create" : "Crear", + "Published" : "Publicado", "Open recording" : "Gravación aberta", "Copy to clipboard" : "Copiar no portapapeis.", "Save as file" : "Gardar como ficheiro", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Eliminar?", "Could not delete record" : "Non foi posíbel eliminar a gravación", "Server error" : "Produciuse un erro de servidor", - "moderator" : "moderador", - "admin" : "admin", - "Share" : "Compartir", + "Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación", + "Open room" : "Sala aberta", + "Start" : "Iniciar", + "Clone room" : "Clonar a sala", "Loading" : "Cargando", "You are not allowed to change this option, because this room is shared with you." : "Non ten permiso para cambiar esta opción, porque esta é unha sala compartida con Vde.", "Max. rooms" : "Máx. de salas", @@ -127,8 +133,8 @@ OC.L10N.register( "API URL is invalid" : "O URL da API é incorrecto", "API secret is invalid" : "O segredo da API é incorrecto", "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 posició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 posición de {user}.", + "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}.", "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. 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.", diff --git a/l10n/gl.json b/l10n/gl.json index c4d4a81..695bf17 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "URL ou segredo da API sen configurar. Póñase en contacto coa administración desta instancia.", "BigBlueButton Integration" : "Integración de BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integración de BigBlueButton en Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Esta aplicación permite crear xuntanzas cunha instalación externa de [BigBlueButton] (https://bigbluebutton.org).\n\n* **Configuración de salas** Crear múltiples configuracións de salas con nome, mensaxe de benvida …\n* **Compartir a ligazón de convidados** Compartir a ligazón da sala con todos os seus convidados\n* **Compartir ligazón de moderador** Convida moderadores á sala\n* **Compartir salas** Compartir salas con membros, grupos ou círculos\n* **Presentación personalizada** Inicie unha sala cunha presentación seleccionada dende o seu navegador de ficheiros\n* **Xestionar as gravacións** Ver, compartir e eliminar as gravacións das súas salas\n* **Restricións** Restrinxir a creación de salas a determinados grupos\n* ** Actividades** Obteña unha visión xeral das actividades da súa sala\n\nGuía de inicio rápido e máis información no noso [léame](https://github.com/sualko/cloud_bbb).\nGústalle esta aplicación? Devolva algo á comunidade de código aberto e consulte as nosas\n[formas de colaborar](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nBúscase programador! Se ten tempo, sería incríbel que puidese axudar a mellorar esta aplicación.\n\n*Esta aplicación integra BigBlueButton e non está aprobada nin certificada por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton son marcas comerciais de BigBlueButton Inc.*", + "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/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.*", "Room not found" : "Non se atopou a sala", "The room could not be found. Maybe it was deleted?" : "Non foi posíbel atopar a sala. Quizais foi eliminada.", "Back to %s" : "Volver a %s", @@ -28,7 +28,7 @@ "API URL" : "URL da API", "API secret" : "Segredo da API", "Save" : "Gardar", - "Show room manager in app navigation instead of settings page." : "Amosar o xestor de sala na navegación da aplicación no canto de na páxina de axustes.", + "Show room manager in app navigation instead of settings page." : "Amosar o xestor de sala na navegación da aplicación en troques de na páxina de axustes.", "Use Nextcloud theme in BigBlueButton." : "Usar o tema Nextcloud en BigBlueButton.", "Default Room Settings" : "Axustes predeterminados da sala", "Below you can change some default values, which are used to create a new room." : "A continuación pode cambiar algúns valores predeterminados, que se usan para crear unha nova sala.", @@ -54,12 +54,15 @@ "Group" : "Grupo", "Searching" : "Buscando", "No matches" : "Non hai coincidencias", + "admin" : "admin", + "moderator" : "moderador", + "user" : "usuario", "Name" : "Nome", "Access" : "Acceso", "Max" : "Máx", "Record" : "Gravar", "Recordings" : "Gravacións", - "You are not permitted to create a room." : "Non ten permiso para crear unha sala", + "You are not permitted to create a room." : "Non ten permisos para crear unha sala", "You exceeded the maximum number of rooms." : "Excedeu o número máximo de salas.", "Room quota:" : "Cota de salas:", "Edit" : "Editar", @@ -67,19 +70,20 @@ "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.", "If enabled, the moderator is able to start the recording." : "Se está activado, o moderador pode iniciar a gravación.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pública: todos os que coñecen a ligazón poden unirse. Contrasinal: Os convidados teñen que fornecer un contrasinal. Sala de espera: Un moderador ten que aceptar a todos os convidados antes de que poidan unirse. Interna: só os usuarios de Nextcloud poden unirse.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explicación dos distintos conceptos que constitúen as opcións de acceso :
- Público: Pode unirse calquera persoa que teña a ligazón.-
Interno: Só os poden unirse osusuarios de Nextcloud.-
Contrasinal: Só poden unirse os convidados que teñan o contrasinal..-
Sala de espera: Un moderador debe aceptar cada convidado antes de poder unirse.-
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.", "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.", "Only selected users and groups are allowed to access the room." : "Só os usuarios e grupos seleccionados teñen permiso para acceder á sala.", "If disabled, a microphone is needed to join the conference." : "Se está desactivado, é necesario un micrófono para unirse á conferencia.", - "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Se está activado, o usuario non ten que realizar unha proba de eco nin unha vista previa da cámara web na primeira unión (dispoñíbel dende o BBB servidor 2.3).", + "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Se está activado, o usuario non ten que realizar unha proba de eco nin unha vista previa da cámara web na primeira unión (dispoñíbel desde o BBB servidor 2.3).", "If enabled, the user list, chat area and presentation are hidden by default." : "Se está activado, a lista de usuarios, a área de parolas e a presentación están agochadas de xeito predeterminado.", - "If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza silenciados.", + "If enabled, all users will join the meeting muted." : "Se está activado, todos os usuarios uniranse á xuntanza enmudecidos.", "Edit \"{room}\"" : "Editar «{room}»", "Room URL" : "URL da sala", "Welcome" : "Benvido", "Participant limit" : "Límite de participantes", + "Sharing" : "Compartindo", "Every participant is moderator" : "Todos os participantes son moderadores", "Moderator access via URL" : "Acceso de moderador a través de URL", "Miscellaneous" : "Miscelánea", @@ -88,9 +92,10 @@ "Listen only option" : "Opción de só escoitar", "Skip media check before usage" : "Omitir a comprobación de medios antes do uso", "Clean layout" : "Disposición limpa", - "Join meeting muted" : "Unirse á xuntanza silenciado", + "Join meeting muted" : "Unirse á xuntanza enmudecido", "Room name" : "Nome da sala", "Create" : "Crear", + "Published" : "Publicado", "Open recording" : "Gravación aberta", "Copy to clipboard" : "Copiar no portapapeis.", "Save as file" : "Gardar como ficheiro", @@ -109,9 +114,10 @@ "Delete?" : "Eliminar?", "Could not delete record" : "Non foi posíbel eliminar a gravación", "Server error" : "Produciuse un erro de servidor", - "moderator" : "moderador", - "admin" : "admin", - "Share" : "Compartir", + "Could not modify publishing state" : "Non foi posíbel modificar o estado de publicación", + "Open room" : "Sala aberta", + "Start" : "Iniciar", + "Clone room" : "Clonar a sala", "Loading" : "Cargando", "You are not allowed to change this option, because this room is shared with you." : "Non ten permiso para cambiar esta opción, porque esta é unha sala compartida con Vde.", "Max. rooms" : "Máx. de salas", @@ -125,8 +131,8 @@ "API URL is invalid" : "O URL da API é incorrecto", "API secret is invalid" : "O segredo da API é incorrecto", "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 posició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 posición de {user}.", + "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}.", "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. 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.", diff --git a/l10n/he.js b/l10n/he.js index 698d8ba..04bed36 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -16,6 +16,7 @@ OC.L10N.register( "Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.", "Hello %s" : "שלום %s", "Group" : "קבוצה", + "moderator" : "מפקח/ת", "Name" : "שם", "Access" : "גישה", "Max" : "מרבי", @@ -23,6 +24,7 @@ OC.L10N.register( "Recordings" : "הקלטה", "Edit" : "עריכה", "Welcome" : "ברוך בואך", + "Sharing" : "שיתוף", "Miscellaneous" : "שונות", "Room name" : "שם החדר", "Create" : "יצירה", @@ -40,11 +42,10 @@ OC.L10N.register( "Delete?" : "למחוק?", "Could not delete record" : "לא ניתן למחוק רשומה", "Server error" : "שגיאת שרת", - "moderator" : "מפקח/ת", - "Share" : "שיתוף", + "Start" : "התחלה", "Loading" : "בטעינה", "Settings saved" : "הגדרות נשמרו", "Unexpected error occurred" : "אירעה שגיאה בלתי צפויה", "API secret is invalid" : "סוד ה־API שגוי" }, -"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); +"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); diff --git a/l10n/he.json b/l10n/he.json index fbf3d42..89b83f1 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -14,6 +14,7 @@ "Have an account? Log in." : "יש לך חשבון? כדאי לך להיכנס.", "Hello %s" : "שלום %s", "Group" : "קבוצה", + "moderator" : "מפקח/ת", "Name" : "שם", "Access" : "גישה", "Max" : "מרבי", @@ -21,6 +22,7 @@ "Recordings" : "הקלטה", "Edit" : "עריכה", "Welcome" : "ברוך בואך", + "Sharing" : "שיתוף", "Miscellaneous" : "שונות", "Room name" : "שם החדר", "Create" : "יצירה", @@ -38,11 +40,10 @@ "Delete?" : "למחוק?", "Could not delete record" : "לא ניתן למחוק רשומה", "Server error" : "שגיאת שרת", - "moderator" : "מפקח/ת", - "Share" : "שיתוף", + "Start" : "התחלה", "Loading" : "בטעינה", "Settings saved" : "הגדרות נשמרו", "Unexpected error occurred" : "אירעה שגיאה בלתי צפויה", "API secret is invalid" : "סוד ה־API שגוי" -},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" +},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" } \ No newline at end of file diff --git a/l10n/hr.js b/l10n/hr.js index ebaf3b9..893f371 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -21,7 +21,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "Nije konfiguriran URL ili tajna API-ja. Obratite se svom administratoru.", "BigBlueButton Integration" : "Integracija aplikacije BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integracija aplikacije BigBlueButton u Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Ova aplikacija omogućuje stvaranje sastanaka putem vanjske instalacije aplikacije [BigBlueButton](https://bigbluebutton.org).\n\n* **Postav sobe** Stvorite višestruke konfiguracije soba s nazivom, porukom dobrodošlice...\n* **Dijelite poveznicu s gostima** Dijelite poveznicu na sobu sa svim gostima\n* **Dijelite poveznicu moderatorima** Pozovite moderatore u sobu\n* **Dijelite sobe** Dijelite sobe s članovima, grupama ili krugovima\n* **Prilagođena prezentacija** Postavite odabranu prezentaciju iz preglednika datoteka u sobu\n* **Upravljajte snimkama** Pregledajte, dijelite i izbrišite snimke iz svojih soba\n* **Ograničenja** Ograničite stvaranje soba na određene grupe\n* **Aktivnosti** Pregledajte aktivnosti u svojim sobama\n\nVodič za brzo pokretanje i više informacija možete pronaći u našoj datoteci [readme](https://github.com/sualko/cloud_bbb).\nSviđa vam se ova aplikacija? Zahvalite se zajednici otvorenog koda i saznajte\n[kako možete pomoći](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nTraže se razvojni programeri! Ako imate vremena, pomozite nam poboljšati ovu aplikaciju.\n\n*Ova aplikacija integrira aplikaciju BigBlueButton i nije povezana s tvrtkom BigBlueButton Inc. BigBlueButton i logotip BigBlueButton žigovi su tvrtke BigBlueButton Inc.*", "Room not found" : "Soba nije pronađena", "The room could not be found. Maybe it was deleted?" : "Soba nije pronađena. Možda je izbrisana?", "Back to %s" : "Natrag na %s", @@ -52,6 +51,8 @@ OC.L10N.register( "Group" : "Grupa", "Searching" : "Traženje", "No matches" : "Nema podudaranja", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Naziv", "Access" : "Pristup", "Max" : "Maks.", @@ -65,7 +66,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Ova se poruka prikazuje svim pridruženim korisnicima u prozoru za razmjenu poruka.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Postavlja ograničenje broja sudionika u ovoj sobi. Nula znači da nema ograničenja.", "If enabled, the moderator is able to start the recording." : "Ako je omogućeno, moderator može početi snimati.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Javno: može se pridružiti bilo tko putem poveznice. Zaporka: gosti moraju unijeti zaporku. Čekaonica: moderator mora odobriti svakog gosta koji se želi pridružiti. Interno: mogu se pridružiti samo Nextcloudovi korisnici.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderator može upravljati svim sudionicima sastanka, što znači da može izbaciti sudionika, utišati sudionika ili odabrati predavača. Korisnici s ulogom moderatora također mogu zatvoriti sastanak ili promijeniti zadane postavke.", "If enabled, normal users have to wait until a moderator is in the room." : "Ako je to omogućeno, korisnici moraju pričekati da moderator dođe u sobu.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ako je omogućeno, generira se URL moderatora koji omogućuje pristup uz dopuštenje moderatora.", @@ -77,6 +77,7 @@ OC.L10N.register( "Room URL" : "URL sobe", "Welcome" : "Dobrodošli", "Participant limit" : "Ograničenje broja sudionika", + "Sharing" : "Dijeljenje", "Every participant is moderator" : "Svaki sudionik je moderator", "Moderator access via URL" : "Pristup moderatora putem URL-a", "Miscellaneous" : "Razno", @@ -105,9 +106,6 @@ OC.L10N.register( "Delete?" : "Izbrisati?", "Could not delete record" : "Zapis nije moguće izbrisati", "Server error" : "Greška poslužitelja", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Dijeli", "Loading" : "Učitavanje", "You are not allowed to change this option, because this room is shared with you." : "Ne možete mijenjati ovu mogućnost jer soba nije dijeljena s vama.", "Max. rooms" : "Maks. soba", diff --git a/l10n/hr.json b/l10n/hr.json index cbfa148..8c303e2 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -19,7 +19,6 @@ "API URL or secret not configured. Please contact your administrator." : "Nije konfiguriran URL ili tajna API-ja. Obratite se svom administratoru.", "BigBlueButton Integration" : "Integracija aplikacije BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integracija aplikacije BigBlueButton u Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Ova aplikacija omogućuje stvaranje sastanaka putem vanjske instalacije aplikacije [BigBlueButton](https://bigbluebutton.org).\n\n* **Postav sobe** Stvorite višestruke konfiguracije soba s nazivom, porukom dobrodošlice...\n* **Dijelite poveznicu s gostima** Dijelite poveznicu na sobu sa svim gostima\n* **Dijelite poveznicu moderatorima** Pozovite moderatore u sobu\n* **Dijelite sobe** Dijelite sobe s članovima, grupama ili krugovima\n* **Prilagođena prezentacija** Postavite odabranu prezentaciju iz preglednika datoteka u sobu\n* **Upravljajte snimkama** Pregledajte, dijelite i izbrišite snimke iz svojih soba\n* **Ograničenja** Ograničite stvaranje soba na određene grupe\n* **Aktivnosti** Pregledajte aktivnosti u svojim sobama\n\nVodič za brzo pokretanje i više informacija možete pronaći u našoj datoteci [readme](https://github.com/sualko/cloud_bbb).\nSviđa vam se ova aplikacija? Zahvalite se zajednici otvorenog koda i saznajte\n[kako možete pomoći](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nTraže se razvojni programeri! Ako imate vremena, pomozite nam poboljšati ovu aplikaciju.\n\n*Ova aplikacija integrira aplikaciju BigBlueButton i nije povezana s tvrtkom BigBlueButton Inc. BigBlueButton i logotip BigBlueButton žigovi su tvrtke BigBlueButton Inc.*", "Room not found" : "Soba nije pronađena", "The room could not be found. Maybe it was deleted?" : "Soba nije pronađena. Možda je izbrisana?", "Back to %s" : "Natrag na %s", @@ -50,6 +49,8 @@ "Group" : "Grupa", "Searching" : "Traženje", "No matches" : "Nema podudaranja", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Naziv", "Access" : "Pristup", "Max" : "Maks.", @@ -63,7 +64,6 @@ "This message is shown to all users in the chat area after they joined." : "Ova se poruka prikazuje svim pridruženim korisnicima u prozoru za razmjenu poruka.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Postavlja ograničenje broja sudionika u ovoj sobi. Nula znači da nema ograničenja.", "If enabled, the moderator is able to start the recording." : "Ako je omogućeno, moderator može početi snimati.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Javno: može se pridružiti bilo tko putem poveznice. Zaporka: gosti moraju unijeti zaporku. Čekaonica: moderator mora odobriti svakog gosta koji se želi pridružiti. Interno: mogu se pridružiti samo Nextcloudovi korisnici.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderator može upravljati svim sudionicima sastanka, što znači da može izbaciti sudionika, utišati sudionika ili odabrati predavača. Korisnici s ulogom moderatora također mogu zatvoriti sastanak ili promijeniti zadane postavke.", "If enabled, normal users have to wait until a moderator is in the room." : "Ako je to omogućeno, korisnici moraju pričekati da moderator dođe u sobu.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ako je omogućeno, generira se URL moderatora koji omogućuje pristup uz dopuštenje moderatora.", @@ -75,6 +75,7 @@ "Room URL" : "URL sobe", "Welcome" : "Dobrodošli", "Participant limit" : "Ograničenje broja sudionika", + "Sharing" : "Dijeljenje", "Every participant is moderator" : "Svaki sudionik je moderator", "Moderator access via URL" : "Pristup moderatora putem URL-a", "Miscellaneous" : "Razno", @@ -103,9 +104,6 @@ "Delete?" : "Izbrisati?", "Could not delete record" : "Zapis nije moguće izbrisati", "Server error" : "Greška poslužitelja", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Dijeli", "Loading" : "Učitavanje", "You are not allowed to change this option, because this room is shared with you." : "Ne možete mijenjati ovu mogućnost jer soba nije dijeljena s vama.", "Max. rooms" : "Maks. soba", diff --git a/l10n/hu.js b/l10n/hu.js index b531edd..474f2e4 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -19,15 +19,14 @@ OC.L10N.register( "Waiting room for all users" : "Váróterem az összes felhasználó számára", "Internal" : "Belső", "Internal restricted" : "Belső, korlátozott", - "API URL or secret not configured. Please contact your administrator." : "Az API URL vagy titok nincs beállítva. Lépjen kapcsolatba a rendszergazdával.", + "API URL or secret not configured. Please contact your administrator." : "Az API webcíme vagy titka nincs beállítva. Lépjen kapcsolatba a rendszergazdával.", "BigBlueButton Integration" : "BigBlueButton integráció", "BigBlueButton integration for Nextcloud" : "BigBlueButton integráció a Nextcloudhoz", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Ez az alkalmazás lehetővé teszi találkozók létrehozását a [BigBlueButton(https://bigbluebutton.org)] külső telepítésével .\n\n* ** Szoba beállítása ** Hozzon létre több szobakonfigurációt névvel, üdvözlő üzenettel ...\n* ** Vendég link megosztása ** A szoba hivatkozásának megosztása az összes vendéggel\n* ** Moderátor link megosztása ** Moderátorok meghívása a szobába\n* ** Szobák megosztása ** Szobák megosztása tagokkal, csoportokkal vagy körökkel\n* ** Egyéni prezentáció ** Indítson el egy szobát a fájlböngészőből kiválasztott prezentációval\n* ** Felvételek kezelése ** A szobák felvételeinek megtekintése, megosztása és törlése\n* ** Korlátozások ** A szoba létrehozását bizonyos csoportokra korlátozza\n* ** Tevékenységek ** Áttekintés a szobai tevékenységekről\n\nGyors útmutató és további információk itt: [readme(https://github.com/sualko/cloud_bbb)].\nTetszik ez az alkalmazás? Adjon valamit vissza a nyílt forráskódú közösségnek, és nézze meg webhelyünket [a hozzájárulás módjai] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nFejlesztő kerestetik! Ha van ideje, félelmetes lenne, ha tudna segíteni az alkalmazás fejlesztésében.\n\n* Ez az alkalmazás integrálja a BigBlueButton alkalmazást, és azt a BigBlueButton Inc. nem hagyta jóvá vagy hitelesítette. A BigBlueButton és a BigBlueButton embléma a BigBlueButton Inc. védjegyei.*", "Room not found" : "A szoba nem található", "The room could not be found. Maybe it was deleted?" : "A szoba nem található. Lehet, hogy törölték?", "Back to %s" : "Vissza ide: %s", - "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API URL és titok megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.", - "API URL" : "API URL", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API webcímének és titkának megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.", + "API URL" : "API webcíme", "API secret" : "API titok", "Save" : "Mentés", "Show room manager in app navigation instead of settings page." : "A beállítások oldal helyett, a szobakezelő megjelenítése az alkalmazásnavigációban.", @@ -38,9 +37,9 @@ OC.L10N.register( "Community" : "Közösség", "Are you enjoying this app? Give something back to the open source community." : "Élvezi az alkalmazás használatát? Adjon vissza valamit a nyílt forráskódú közösségnek.", "Checkout the contributor guide" : "Tekintse meg a közreműködői útmutatót", - "URL Shortener" : "URL rövidítő", - "If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb URL-eket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.", - "URL shortener" : "URL rövidítő", + "URL Shortener" : "Webcím-rövidítő", + "If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb webcímeket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.", + "URL shortener" : "Webcím-rövidítő", "Restrictions" : "Korlátozások", "You will be forwarded to the room in the next few seconds." : "Néhány másodperc múlva továbbításra kerül a szobába.", "Let's go!" : "Gyerünk!", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "Csoport", "Searching" : "Keresés", "No matches" : "Nincs egyezés", + "admin" : "admin", + "moderator" : "moderátor", "Name" : "Név", "Access" : "Hozzáférés", "Max" : "Maximum", @@ -69,30 +70,32 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Ez az üzenet a csevegés minden felhasználójának megjelenik, miután csatlakoztak.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Korlátozza a résztvevők számát ebben a szobában. A nulla azt jelenti, hogy nincs korlátozás.", "If enabled, the moderator is able to start the recording." : "Ha engedélyezve van, a moderátor meg tudja kezdeni a felvételt.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Nyilvános: minden a hivatkozást ismerő személy csatlakozhat. Jelszó: A vendégeknek meg kell adniuk a jelszavukat. Váró: A moderátornak minden vendéget be kell engednie, mielőtt csatlakozhatnának. Belső: Csak a Nextcloud felhasználói csatlakozhatnak.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "A hozzáférési beállítások magyarázata:
- Nyilvános: A hivatkozás birtokában bárki csatlakozhat.
- Belső: Csak a Nextcloud felhasználói csatlakozhatnak.
- Jelszó: Vendégek csak a jelszó ismeretében csatlakozhatnak.
- Váró: Egy moderátornak el kell fogadni a vendégek csatlakozását.
- Korlátozott: Csak a kiválasztott felhasználók és csoportok érhetik el a szobát.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "A moderátor kezelheti az értekezlet összes résztvevőjét, ideértve a kirúgást, az elnémítást vagy az előadó kiválasztását. A moderátor szereppel rendelkező felhasználók bezárhatnak egy értekezletet, vagy módosíthatják az alapértelmezett beállításokat.", "If enabled, normal users have to wait until a moderator is in the room." : "Ha engedélyezve van, a normál felhasználóknak meg kell várniuk, amíg egy moderátor a szobában lesz.", - "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátor URL jön létre, amely moderátori jogosultsággal biztosít hozzáférést.", + "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátori webcím jön létre, amely moderátori jogosultsággal biztosít hozzáférést.", "Only selected users and groups are allowed to access the room." : "Csak a kiválasztott felhasználók és csoportok férhetnek hozzá a szobához.", "If disabled, a microphone is needed to join the conference." : "Hi tiltva van, mikrofonra van szükség a konferenciához való csatlakozáshoz.", "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Ha engedélyezve van, akkor a felhasználónak nem kell visszhanghívást és webkamera előnézetet végeznie az első csatlakozásakor (a BBB kiszolgáló 2.3-as verziója óta érhető el).", "If enabled, the user list, chat area and presentation are hidden by default." : "Ha engedélyezve van, akkor a felhasználólista, a csevegőterület és a prezentáció alapértelmezés szerint rejtett.", "If enabled, all users will join the meeting muted." : "Ha engedélyezve van, akkor az összes felhasználó némítva csatlakozik az értekezlethez.", "Edit \"{room}\"" : "„{room}” szerkesztése", - "Room URL" : "Szoba URL", + "Room URL" : "Szoba webcíme", "Welcome" : "Üdvözöljük", "Participant limit" : "Résztvevők korlátja", + "Sharing" : "Megosztás", "Every participant is moderator" : "Minden résztvevő moderátor", - "Moderator access via URL" : "Moderátori elérés URL-en keresztül", + "Moderator access via URL" : "Moderátori elérés webcímen keresztül", "Miscellaneous" : "Vegyes", "Recording" : "Felvétel", "Require moderator to start room" : "Moderátor szükséges a szoba elindításához", "Listen only option" : "Csak hallgatatás mód", - "Skip media check before usage" : "Használat elötti ellenőrzés kihagyása", + "Skip media check before usage" : "Használat előtti ellenőrzés kihagyása", "Clean layout" : "Elrendezés törlése", "Join meeting muted" : "Csatlakozás némítva", "Room name" : "Szoba neve", "Create" : "Létrehozás", + "Published" : "Közzétett", "Open recording" : "Felvétel megnyitása", "Copy to clipboard" : "Másolás a vágólapra", "Save as file" : "Mentés fájlba", @@ -101,19 +104,17 @@ OC.L10N.register( "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Biztos, hogy törli a következőt: „{name}”? Ez a művelet nem vonható vissza.", "Delete \"{name}\"?" : "Törli a következőt: „{name}”?", "Select target folder" : "Célmappa kiválasztása", - "Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba URL itt lett tárolva: „{path}”, mint „{filename}”.", + "Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba webcíme itt lett tárolva: „{path}”, mint „{filename}”.", "Link stored" : "Hivatkozás tárolva", - "URL to room could not be stored." : "A szoba URL-ének tárolása sikertelen.", + "URL to room could not be stored." : "A szoba webcímének tárolása sikertelen.", "Error" : "Hiba", - "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató URL-je itt lett tárolva: „{path}”, mint „{filename}”.", - "URL to presentation could not be stored." : "A bemutató URL-jének tárolása sikertelen.", + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató webcíme itt lett tárolva: „{path}”, mint „{filename}”.", + "URL to presentation could not be stored." : "A bemutató webcímének tárolása sikertelen.", "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Biztos, hogy törli a felvételt innen: „{startDate}”? Ez a művelet nem vonható vissza.", "Delete?" : "Törli?", "Could not delete record" : "A felvétel törlése sikertelen", "Server error" : "Kiszolgálóhiba", - "moderator" : "moderátor", - "admin" : "admin", - "Share" : "Megosztás", + "Start" : "Kezdet", "Loading" : "Betöltés", "You are not allowed to change this option, because this room is shared with you." : "Nem módosíthatja ezt a beállítást, mert a szobát megosztják Önnel.", "Max. rooms" : "Szobák legnagyobb száma", @@ -124,11 +125,11 @@ OC.L10N.register( "Delete restrictions for \"{name}\"?" : "Törli „{name}” korlátozásait?", "Settings saved" : "Beállítások elmentve", "Unexpected error occurred" : "Váratlan hiba történt", - "API URL is invalid" : "Az API URL érvénytelen", + "API URL is invalid" : "Az API webcíme érvénytelen", "API secret is invalid" : "Az API titok érvénytelen", - "URL has to start with HTTPS" : "Az URL-nek HTTPS-sel kell kezdődnie", - "URL has to contain the {token} placeholder" : "Az URL-nek tartalmaznia kell a(z) {token} helykitöltőt", - "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Az URL-nek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.", + "URL has to start with HTTPS" : "A webcímnek HTTPS-sel kell kezdődnie", + "URL has to contain the {token} placeholder" : "A webcímnek tartalmaznia kell a(z) {token} helykitöltőt", + "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "A webcímnek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.", "The file \"{filename}\" was uploaded to your room." : "A(z) „{filename}” fájl feltöltésre került a szobájába.", "The file \"{filename}\" could not be uploaded to your room." : "A(z) „{filename}” fájl nem tölthető fel a szobájába.", "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "A(z) „{filename}” fájl nem tölthető fel a szobájába. Lehet, hogy a BigBlueButton-kiszolgáló nem támogatja ezt a műveletet.", diff --git a/l10n/hu.json b/l10n/hu.json index 0c5d808..19c56e3 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -17,15 +17,14 @@ "Waiting room for all users" : "Váróterem az összes felhasználó számára", "Internal" : "Belső", "Internal restricted" : "Belső, korlátozott", - "API URL or secret not configured. Please contact your administrator." : "Az API URL vagy titok nincs beállítva. Lépjen kapcsolatba a rendszergazdával.", + "API URL or secret not configured. Please contact your administrator." : "Az API webcíme vagy titka nincs beállítva. Lépjen kapcsolatba a rendszergazdával.", "BigBlueButton Integration" : "BigBlueButton integráció", "BigBlueButton integration for Nextcloud" : "BigBlueButton integráció a Nextcloudhoz", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Ez az alkalmazás lehetővé teszi találkozók létrehozását a [BigBlueButton(https://bigbluebutton.org)] külső telepítésével .\n\n* ** Szoba beállítása ** Hozzon létre több szobakonfigurációt névvel, üdvözlő üzenettel ...\n* ** Vendég link megosztása ** A szoba hivatkozásának megosztása az összes vendéggel\n* ** Moderátor link megosztása ** Moderátorok meghívása a szobába\n* ** Szobák megosztása ** Szobák megosztása tagokkal, csoportokkal vagy körökkel\n* ** Egyéni prezentáció ** Indítson el egy szobát a fájlböngészőből kiválasztott prezentációval\n* ** Felvételek kezelése ** A szobák felvételeinek megtekintése, megosztása és törlése\n* ** Korlátozások ** A szoba létrehozását bizonyos csoportokra korlátozza\n* ** Tevékenységek ** Áttekintés a szobai tevékenységekről\n\nGyors útmutató és további információk itt: [readme(https://github.com/sualko/cloud_bbb)].\nTetszik ez az alkalmazás? Adjon valamit vissza a nyílt forráskódú közösségnek, és nézze meg webhelyünket [a hozzájárulás módjai] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nFejlesztő kerestetik! Ha van ideje, félelmetes lenne, ha tudna segíteni az alkalmazás fejlesztésében.\n\n* Ez az alkalmazás integrálja a BigBlueButton alkalmazást, és azt a BigBlueButton Inc. nem hagyta jóvá vagy hitelesítette. A BigBlueButton és a BigBlueButton embléma a BigBlueButton Inc. védjegyei.*", "Room not found" : "A szoba nem található", "The room could not be found. Maybe it was deleted?" : "A szoba nem található. Lehet, hogy törölték?", "Back to %s" : "Vissza ide: %s", - "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API URL és titok megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.", - "API URL" : "API URL", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "Az API webcímének és titkának megszerzéséhez futtassa a „sudo bbb-conf --secret” parancsot a BigBlueButton kiszolgálón.", + "API URL" : "API webcíme", "API secret" : "API titok", "Save" : "Mentés", "Show room manager in app navigation instead of settings page." : "A beállítások oldal helyett, a szobakezelő megjelenítése az alkalmazásnavigációban.", @@ -36,9 +35,9 @@ "Community" : "Közösség", "Are you enjoying this app? Give something back to the open source community." : "Élvezi az alkalmazás használatát? Adjon vissza valamit a nyílt forráskódú közösségnek.", "Checkout the contributor guide" : "Tekintse meg a közreműködői útmutatót", - "URL Shortener" : "URL rövidítő", - "If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb URL-eket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.", - "URL shortener" : "URL rövidítő", + "URL Shortener" : "Webcím-rövidítő", + "If you like to use shorter urls, you can enter a forwarding proxy below." : "Ha rövidebb webcímeket szeretne használni, az alábbiakban megadhat egy továbbítási proxyt.", + "URL shortener" : "Webcím-rövidítő", "Restrictions" : "Korlátozások", "You will be forwarded to the room in the next few seconds." : "Néhány másodperc múlva továbbításra kerül a szobába.", "Let's go!" : "Gyerünk!", @@ -54,6 +53,8 @@ "Group" : "Csoport", "Searching" : "Keresés", "No matches" : "Nincs egyezés", + "admin" : "admin", + "moderator" : "moderátor", "Name" : "Név", "Access" : "Hozzáférés", "Max" : "Maximum", @@ -67,30 +68,32 @@ "This message is shown to all users in the chat area after they joined." : "Ez az üzenet a csevegés minden felhasználójának megjelenik, miután csatlakoztak.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Korlátozza a résztvevők számát ebben a szobában. A nulla azt jelenti, hogy nincs korlátozás.", "If enabled, the moderator is able to start the recording." : "Ha engedélyezve van, a moderátor meg tudja kezdeni a felvételt.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Nyilvános: minden a hivatkozást ismerő személy csatlakozhat. Jelszó: A vendégeknek meg kell adniuk a jelszavukat. Váró: A moderátornak minden vendéget be kell engednie, mielőtt csatlakozhatnának. Belső: Csak a Nextcloud felhasználói csatlakozhatnak.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "A hozzáférési beállítások magyarázata:
- Nyilvános: A hivatkozás birtokában bárki csatlakozhat.
- Belső: Csak a Nextcloud felhasználói csatlakozhatnak.
- Jelszó: Vendégek csak a jelszó ismeretében csatlakozhatnak.
- Váró: Egy moderátornak el kell fogadni a vendégek csatlakozását.
- Korlátozott: Csak a kiválasztott felhasználók és csoportok érhetik el a szobát.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "A moderátor kezelheti az értekezlet összes résztvevőjét, ideértve a kirúgást, az elnémítást vagy az előadó kiválasztását. A moderátor szereppel rendelkező felhasználók bezárhatnak egy értekezletet, vagy módosíthatják az alapértelmezett beállításokat.", "If enabled, normal users have to wait until a moderator is in the room." : "Ha engedélyezve van, a normál felhasználóknak meg kell várniuk, amíg egy moderátor a szobában lesz.", - "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátor URL jön létre, amely moderátori jogosultsággal biztosít hozzáférést.", + "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ha engedélyezve van, akkor egy moderátori webcím jön létre, amely moderátori jogosultsággal biztosít hozzáférést.", "Only selected users and groups are allowed to access the room." : "Csak a kiválasztott felhasználók és csoportok férhetnek hozzá a szobához.", "If disabled, a microphone is needed to join the conference." : "Hi tiltva van, mikrofonra van szükség a konferenciához való csatlakozáshoz.", "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Ha engedélyezve van, akkor a felhasználónak nem kell visszhanghívást és webkamera előnézetet végeznie az első csatlakozásakor (a BBB kiszolgáló 2.3-as verziója óta érhető el).", "If enabled, the user list, chat area and presentation are hidden by default." : "Ha engedélyezve van, akkor a felhasználólista, a csevegőterület és a prezentáció alapértelmezés szerint rejtett.", "If enabled, all users will join the meeting muted." : "Ha engedélyezve van, akkor az összes felhasználó némítva csatlakozik az értekezlethez.", "Edit \"{room}\"" : "„{room}” szerkesztése", - "Room URL" : "Szoba URL", + "Room URL" : "Szoba webcíme", "Welcome" : "Üdvözöljük", "Participant limit" : "Résztvevők korlátja", + "Sharing" : "Megosztás", "Every participant is moderator" : "Minden résztvevő moderátor", - "Moderator access via URL" : "Moderátori elérés URL-en keresztül", + "Moderator access via URL" : "Moderátori elérés webcímen keresztül", "Miscellaneous" : "Vegyes", "Recording" : "Felvétel", "Require moderator to start room" : "Moderátor szükséges a szoba elindításához", "Listen only option" : "Csak hallgatatás mód", - "Skip media check before usage" : "Használat elötti ellenőrzés kihagyása", + "Skip media check before usage" : "Használat előtti ellenőrzés kihagyása", "Clean layout" : "Elrendezés törlése", "Join meeting muted" : "Csatlakozás némítva", "Room name" : "Szoba neve", "Create" : "Létrehozás", + "Published" : "Közzétett", "Open recording" : "Felvétel megnyitása", "Copy to clipboard" : "Másolás a vágólapra", "Save as file" : "Mentés fájlba", @@ -99,19 +102,17 @@ "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "Biztos, hogy törli a következőt: „{name}”? Ez a művelet nem vonható vissza.", "Delete \"{name}\"?" : "Törli a következőt: „{name}”?", "Select target folder" : "Célmappa kiválasztása", - "Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba URL itt lett tárolva: „{path}”, mint „{filename}”.", + "Room URL was stored in \"{path}\" as \"{filename}\"." : "A szoba webcíme itt lett tárolva: „{path}”, mint „{filename}”.", "Link stored" : "Hivatkozás tárolva", - "URL to room could not be stored." : "A szoba URL-ének tárolása sikertelen.", + "URL to room could not be stored." : "A szoba webcímének tárolása sikertelen.", "Error" : "Hiba", - "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató URL-je itt lett tárolva: „{path}”, mint „{filename}”.", - "URL to presentation could not be stored." : "A bemutató URL-jének tárolása sikertelen.", + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "A bemutató webcíme itt lett tárolva: „{path}”, mint „{filename}”.", + "URL to presentation could not be stored." : "A bemutató webcímének tárolása sikertelen.", "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "Biztos, hogy törli a felvételt innen: „{startDate}”? Ez a művelet nem vonható vissza.", "Delete?" : "Törli?", "Could not delete record" : "A felvétel törlése sikertelen", "Server error" : "Kiszolgálóhiba", - "moderator" : "moderátor", - "admin" : "admin", - "Share" : "Megosztás", + "Start" : "Kezdet", "Loading" : "Betöltés", "You are not allowed to change this option, because this room is shared with you." : "Nem módosíthatja ezt a beállítást, mert a szobát megosztják Önnel.", "Max. rooms" : "Szobák legnagyobb száma", @@ -122,11 +123,11 @@ "Delete restrictions for \"{name}\"?" : "Törli „{name}” korlátozásait?", "Settings saved" : "Beállítások elmentve", "Unexpected error occurred" : "Váratlan hiba történt", - "API URL is invalid" : "Az API URL érvénytelen", + "API URL is invalid" : "Az API webcíme érvénytelen", "API secret is invalid" : "Az API titok érvénytelen", - "URL has to start with HTTPS" : "Az URL-nek HTTPS-sel kell kezdődnie", - "URL has to contain the {token} placeholder" : "Az URL-nek tartalmaznia kell a(z) {token} helykitöltőt", - "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "Az URL-nek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.", + "URL has to start with HTTPS" : "A webcímnek HTTPS-sel kell kezdődnie", + "URL has to contain the {token} placeholder" : "A webcímnek tartalmaznia kell a(z) {token} helykitöltőt", + "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "A webcímnek https://-sel kell kezdődnie, és tartalmaznia kell a következőt: {token}. Továbbá a(z) {user} helykitöltő is használható.", "The file \"{filename}\" was uploaded to your room." : "A(z) „{filename}” fájl feltöltésre került a szobájába.", "The file \"{filename}\" could not be uploaded to your room." : "A(z) „{filename}” fájl nem tölthető fel a szobájába.", "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "A(z) „{filename}” fájl nem tölthető fel a szobájába. Lehet, hogy a BigBlueButton-kiszolgáló nem támogatja ezt a műveletet.", diff --git a/l10n/hy.js b/l10n/hy.js index 8273e30..363b5a3 100644 --- a/l10n/hy.js +++ b/l10n/hy.js @@ -10,7 +10,6 @@ OC.L10N.register( "Create" : "Ստեղծել", "Delete" : "հեռացնել", "Error" : "Սխալ", - "Share" : "Կիսվել", "Loading" : "Loading" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/hy.json b/l10n/hy.json index 53210d2..12acd7b 100644 --- a/l10n/hy.json +++ b/l10n/hy.json @@ -8,7 +8,6 @@ "Create" : "Ստեղծել", "Delete" : "հեռացնել", "Error" : "Սխալ", - "Share" : "Կիսվել", "Loading" : "Loading" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ia.js b/l10n/ia.js index d79f892..84623d0 100644 --- a/l10n/ia.js +++ b/l10n/ia.js @@ -8,10 +8,11 @@ OC.L10N.register( "Group" : "Gruppo", "Name" : "Nomine", "Edit" : "Modificar", + "Sharing" : "Compartente", "Create" : "Crear", "Delete" : "Deler", "Error" : "Error", - "Share" : "Compartir", + "Start" : "Initio", "Loading" : "Loading", "Settings saved" : "Configurationes salveguardate" }, diff --git a/l10n/ia.json b/l10n/ia.json index 7c507e3..ce13520 100644 --- a/l10n/ia.json +++ b/l10n/ia.json @@ -6,10 +6,11 @@ "Group" : "Gruppo", "Name" : "Nomine", "Edit" : "Modificar", + "Sharing" : "Compartente", "Create" : "Crear", "Delete" : "Deler", "Error" : "Error", - "Share" : "Compartir", + "Start" : "Initio", "Loading" : "Loading", "Settings saved" : "Configurationes salveguardate" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/id.js b/l10n/id.js index 46f4779..25111ee 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -26,9 +26,11 @@ OC.L10N.register( "Recordings" : "Rekaman", "Edit" : "Sunting", "Welcome" : "Selamat datang", + "Sharing" : "Berbagi", "Miscellaneous" : "Lain-lain", "Room name" : "Nama ruang", "Create" : "Buat", + "Published" : "Diterbitkan", "Copy to clipboard" : "Salin ke papan klip", "_%n participant_::_%n participants_" : ["%n partisipan"], "Delete" : "Hapus", @@ -43,7 +45,7 @@ OC.L10N.register( "Delete?" : "Hapus?", "Could not delete record" : "Tidak dapat menghapus rekaman", "Server error" : "Galat peladen", - "Share" : "Bagikan", + "Start" : "Mulai", "Loading" : "Memuat", "Settings saved" : "Setelan tersimpan", "Unexpected error occurred" : "Terjadi galat tak terduga", diff --git a/l10n/id.json b/l10n/id.json index 50be690..052014c 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -24,9 +24,11 @@ "Recordings" : "Rekaman", "Edit" : "Sunting", "Welcome" : "Selamat datang", + "Sharing" : "Berbagi", "Miscellaneous" : "Lain-lain", "Room name" : "Nama ruang", "Create" : "Buat", + "Published" : "Diterbitkan", "Copy to clipboard" : "Salin ke papan klip", "_%n participant_::_%n participants_" : ["%n partisipan"], "Delete" : "Hapus", @@ -41,7 +43,7 @@ "Delete?" : "Hapus?", "Could not delete record" : "Tidak dapat menghapus rekaman", "Server error" : "Galat peladen", - "Share" : "Bagikan", + "Start" : "Mulai", "Loading" : "Memuat", "Settings saved" : "Setelan tersimpan", "Unexpected error occurred" : "Terjadi galat tak terduga", diff --git a/l10n/is.js b/l10n/is.js index 4568fb7..1b24ece 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -10,18 +10,20 @@ OC.L10N.register( "Join" : "Taka þátt", "Hello %s" : "Halló %s", "Group" : "Hópur", + "moderator" : "umsjónarmaður", "Name" : "Nafn", "Access" : "Aðgangur", "Edit" : "Breyta", "Welcome" : "Velkomin", + "Sharing" : "Deiling", "Miscellaneous" : "Ýmislegt", "Create" : "Búa til", + "Published" : "Útgefið", "Copy to clipboard" : "Afrita á klippispjald", "Delete" : "Eyða", "Error" : "Villa", "Server error" : "Villa frá þjóni", - "moderator" : "umsjónarmaður", - "Share" : "Deila", + "Start" : "Byrjun", "Loading" : "Hleð inn", "Settings saved" : "Stillingar vistaðar" }, diff --git a/l10n/is.json b/l10n/is.json index 9102fb9..5f3fa31 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -8,18 +8,20 @@ "Join" : "Taka þátt", "Hello %s" : "Halló %s", "Group" : "Hópur", + "moderator" : "umsjónarmaður", "Name" : "Nafn", "Access" : "Aðgangur", "Edit" : "Breyta", "Welcome" : "Velkomin", + "Sharing" : "Deiling", "Miscellaneous" : "Ýmislegt", "Create" : "Búa til", + "Published" : "Útgefið", "Copy to clipboard" : "Afrita á klippispjald", "Delete" : "Eyða", "Error" : "Villa", "Server error" : "Villa frá þjóni", - "moderator" : "umsjónarmaður", - "Share" : "Deila", + "Start" : "Byrjun", "Loading" : "Hleð inn", "Settings saved" : "Stillingar vistaðar" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" diff --git a/l10n/it.js b/l10n/it.js index e0f18d1..80b15c7 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -16,13 +16,13 @@ OC.L10N.register( "Public" : "Pubblica", "Internal + Password protection for guests" : "Interni + Protezione con password per gli ospiti", "Internal + Waiting room for guests" : "Interni + Sala d'attesa per gli ospiti", - "Waiting room for all users" : "In attesa di tutti gli utenti", + "Waiting room for all users" : "Tutti gli utenti in Sala d'attesa", "Internal" : "Interni", "Internal restricted" : "Limitato agli interni", "API URL or secret not configured. Please contact your administrator." : "URL API o segreto non configurato. Contatta il tuo amministratore.", "BigBlueButton Integration" : "Integrazione BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integrazione 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Questa applicazione consente di creare riunioni con un'installazione esterna di [BigBlueButton](https://bigbluebutton.org).\n\n* **Configurazione stanze** Creare configurazioni di più stanze con nome, messaggio di benvenuto ...\n* **Condivisione collegamento ospite** Condividere il collegamento della stanza con tutti i propri ospiti\n **Condivisione collegamento moderatore** Invitare moderatori alla stanza\n* **Condivisione stanze** Condividere le stanze con membri, gruppi o cerchie\n* **Presentazione personalizzata** Avviare una stanza con una presentazione selezionata dal proprio gestore dei file\n* **Gestire le registrazioni** Visualizzare, condividere ed eliminare le registrazioni per le proprie stanze\n* **Restrizioni** Limitare la creazione di stanze a determinati gruppi\n* **Attività** Ottenere una panoramica delle attività delle proprie stanze\n\nGuida rapida e ulteriori informazioni nel nostro [readme](https://github.com/sualko/cloud_bbb).\nTi piace questa applicazione? Restituisci qualcosa alla comunità open source e dai un'occhiata al nostro \n[come contribuire](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nCerchiamo uno sviluppatore! Se hai tempo, potresti aiutarci a migliorare questa applicazione.\n\n*Questa applicazione integra BigBlueButton e non è sponsorizzata o certificata da BigBlueButton Inc. BigBlueButton e il logo BigBlueButton sono marchi registrati di 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.*" : "TQuesta app consente di creare riunioni con un'installazione esterna di [BigBlueButton](https://bigbluebutton.org).\n\n* **Configurazione della stanza** Crea più configurazioni di stanza con nome, messaggio di benvenuto...\n* **Condividi link ospite** Condividi il link della stanza con tutti i tuoi ospiti\n* **Condividi link moderatore** Invita moderatori nella stanza\n* **Condividi stanze** Condividi stanze con membri, gruppi o cerchie\n* **Presentazione personalizzata** Avvia una stanza con una presentazione selezionata dal tuo file browser\n* **Gestisci registrazioni** Visualizza, condividi ed elimina registrazioni per le tue stanze\n* **Restrizioni** Limita la creazione di stanze a determinati gruppi\n* **Attività** Ottieni una panoramica delle attività della tua stanza\n\nGuida rapida e ulteriori informazioni nel nostro [readme](https://github.com/littleredbutton/cloud_bbb).\nTi piace questa applicazione? Restituisci qualcosa alla comunità open source e dai un'occhiata ai nostri\n[modi per contribuire](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nI collaboratori sono benvenuti! Se hai tempo, sarebbe fantastico se potessi aiutare a migliorare questa applicazione.\n\n*Questa app integra BigBlueButton e non è approvata o certificata da BigBlueButton Inc. BigBlueButton e il logo BigBlueButton sono marchi di BigBlueButton Inc.*", "Room not found" : "Stanza non trovata", "The room could not be found. Maybe it was deleted?" : "La stanza non può essere trovata. Forse è stata eliminata?", "Back to %s" : "Torna a %s", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Gruppo", "Searching" : "Ricerca in corso", "No matches" : "Nessuna corrispondenza", + "admin" : "amministratore", + "moderator" : "moderatore", + "user" : "utente", "Name" : "Nome", "Access" : "Accesso", "Max" : "Massimo", @@ -69,7 +72,7 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Questo messaggio è mostrato a tutti gli utenti nell'area di chat dopo il loro ingresso.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Imposta un limite sul numero di partecipanti per questa stanza. Zero significa che non ci sono limiti.", "If enabled, the moderator is able to start the recording." : "Se abilitata, il moderatore è in grado di avviare la registrazione.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pubblica: chiunque conosca il collegamento è in grado di partecipare. Password: gli ospiti devono fornire un password. Sala d'attesa: un moderatore deve accettare ogni ospite prima che possa entrare. Interna: possono partecipare solo gli utenti di Nextcloud.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Spiegazione dei diversi concetti che costituiscono l'accesso :
- Pubblico: chiunque abbia il link può partecipare.-
Interno: possono partecipare solo gli utenti Nextcloud.-
Password: possono partecipare solo gli ospiti che hanno la password..-
Sala d'attesa: un moderatore deve accettare ogni ospite prima che possa partecipare.-
Limitato: solo gli utenti e i gruppi selezionati possono accedere a questa stanza.", "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 moderatore è in grado di gestire tutti i partecipanti a una riunione, inclusa l'espulsione, il silenziamento o la selezione di un relatore. Gli utenti con il ruolo di moderatore possono anche chiudere una riunione o modificare le impostazioni predefinite.", "If enabled, normal users have to wait until a moderator is in the room." : "Se abilitata, gli utenti normali devono attendere fino a quando un moderatore è nella stanza.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Se abilitata, viene generato un URL moderatore che consente l'accesso con l'autorizzazione del moderatore.", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "URL della stanza", "Welcome" : "Benvenuto", "Participant limit" : "Limite di partecipanti", + "Sharing" : "Condivisione", "Every participant is moderator" : "Ogni partecipante è moderatore", "Moderator access via URL" : "Accesso moderatore tramite URL", "Miscellaneous" : "Varie", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "Entra nella riunione silenziato", "Room name" : "Nome stanza", "Create" : "Crea", + "Published" : "Pubblicato", "Open recording" : "Apri registrazione", "Copy to clipboard" : "Copia negli appunti", "Save as file" : "Salva come file", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Vuoi eliminare?", "Could not delete record" : "Impossibile eliminare il record", "Server error" : "Errore del server", - "moderator" : "moderatore", - "admin" : "amministratore", - "Share" : "Condividi", + "Could not modify publishing state" : "Impossibile modificare lo stato di pubblicazione", + "Open room" : "Stanza aperta", + "Start" : "Avvia", + "Clone room" : "Clona stanza", "Loading" : "Caricamento", "You are not allowed to change this option, because this room is shared with you." : "Non ti è consentito modificare questa opzione, poiché questa stanza è condivisa con te.", "Max. rooms" : "Num. massimo stanze", @@ -129,8 +135,12 @@ OC.L10N.register( "URL has to start with HTTPS" : "L'URL deve iniziare con HTTPS", "URL has to contain the {token} placeholder" : "L'URL deve contenere il segnaposto {token}", "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL deve iniziare con https: // e contenere {token}. Inoltre è possibile utilizzare il segnaposto {user}.", + "The file \"{filename}\" was uploaded to your room." : "Il file \"{filename}\" è stato caricato nella tua stanza.", + "The file \"{filename}\" could not be uploaded to your room." : "Il file \"{filename}\" non è stato possibile caricarlo nella tua stanza.", + "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Il file \"{filename}\" non può essere caricato nella tua stanza. Forse il tuo server BigBlueButton non supporta questa azione.", "Send file to BBB" : "Invia file a BBB", "Send to" : "Invia a", + "Start with" : "Inizia con", "Please select the room in which you like to use the file \"{filename}\"." : "Seleziona la stanza in cui vorresti usare il file \"{filename}\".", "No rooms available!" : "Nessuna stanza disponibile", "Send to BBB" : "Invia a BBB", diff --git a/l10n/it.json b/l10n/it.json index df6007a..59677d0 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -14,13 +14,13 @@ "Public" : "Pubblica", "Internal + Password protection for guests" : "Interni + Protezione con password per gli ospiti", "Internal + Waiting room for guests" : "Interni + Sala d'attesa per gli ospiti", - "Waiting room for all users" : "In attesa di tutti gli utenti", + "Waiting room for all users" : "Tutti gli utenti in Sala d'attesa", "Internal" : "Interni", "Internal restricted" : "Limitato agli interni", "API URL or secret not configured. Please contact your administrator." : "URL API o segreto non configurato. Contatta il tuo amministratore.", "BigBlueButton Integration" : "Integrazione BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integrazione 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Questa applicazione consente di creare riunioni con un'installazione esterna di [BigBlueButton](https://bigbluebutton.org).\n\n* **Configurazione stanze** Creare configurazioni di più stanze con nome, messaggio di benvenuto ...\n* **Condivisione collegamento ospite** Condividere il collegamento della stanza con tutti i propri ospiti\n **Condivisione collegamento moderatore** Invitare moderatori alla stanza\n* **Condivisione stanze** Condividere le stanze con membri, gruppi o cerchie\n* **Presentazione personalizzata** Avviare una stanza con una presentazione selezionata dal proprio gestore dei file\n* **Gestire le registrazioni** Visualizzare, condividere ed eliminare le registrazioni per le proprie stanze\n* **Restrizioni** Limitare la creazione di stanze a determinati gruppi\n* **Attività** Ottenere una panoramica delle attività delle proprie stanze\n\nGuida rapida e ulteriori informazioni nel nostro [readme](https://github.com/sualko/cloud_bbb).\nTi piace questa applicazione? Restituisci qualcosa alla comunità open source e dai un'occhiata al nostro \n[come contribuire](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nCerchiamo uno sviluppatore! Se hai tempo, potresti aiutarci a migliorare questa applicazione.\n\n*Questa applicazione integra BigBlueButton e non è sponsorizzata o certificata da BigBlueButton Inc. BigBlueButton e il logo BigBlueButton sono marchi registrati di 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.*" : "TQuesta app consente di creare riunioni con un'installazione esterna di [BigBlueButton](https://bigbluebutton.org).\n\n* **Configurazione della stanza** Crea più configurazioni di stanza con nome, messaggio di benvenuto...\n* **Condividi link ospite** Condividi il link della stanza con tutti i tuoi ospiti\n* **Condividi link moderatore** Invita moderatori nella stanza\n* **Condividi stanze** Condividi stanze con membri, gruppi o cerchie\n* **Presentazione personalizzata** Avvia una stanza con una presentazione selezionata dal tuo file browser\n* **Gestisci registrazioni** Visualizza, condividi ed elimina registrazioni per le tue stanze\n* **Restrizioni** Limita la creazione di stanze a determinati gruppi\n* **Attività** Ottieni una panoramica delle attività della tua stanza\n\nGuida rapida e ulteriori informazioni nel nostro [readme](https://github.com/littleredbutton/cloud_bbb).\nTi piace questa applicazione? Restituisci qualcosa alla comunità open source e dai un'occhiata ai nostri\n[modi per contribuire](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md).\n\nI collaboratori sono benvenuti! Se hai tempo, sarebbe fantastico se potessi aiutare a migliorare questa applicazione.\n\n*Questa app integra BigBlueButton e non è approvata o certificata da BigBlueButton Inc. BigBlueButton e il logo BigBlueButton sono marchi di BigBlueButton Inc.*", "Room not found" : "Stanza non trovata", "The room could not be found. Maybe it was deleted?" : "La stanza non può essere trovata. Forse è stata eliminata?", "Back to %s" : "Torna a %s", @@ -54,6 +54,9 @@ "Group" : "Gruppo", "Searching" : "Ricerca in corso", "No matches" : "Nessuna corrispondenza", + "admin" : "amministratore", + "moderator" : "moderatore", + "user" : "utente", "Name" : "Nome", "Access" : "Accesso", "Max" : "Massimo", @@ -67,7 +70,7 @@ "This message is shown to all users in the chat area after they joined." : "Questo messaggio è mostrato a tutti gli utenti nell'area di chat dopo il loro ingresso.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Imposta un limite sul numero di partecipanti per questa stanza. Zero significa che non ci sono limiti.", "If enabled, the moderator is able to start the recording." : "Se abilitata, il moderatore è in grado di avviare la registrazione.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pubblica: chiunque conosca il collegamento è in grado di partecipare. Password: gli ospiti devono fornire un password. Sala d'attesa: un moderatore deve accettare ogni ospite prima che possa entrare. Interna: possono partecipare solo gli utenti di Nextcloud.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Spiegazione dei diversi concetti che costituiscono l'accesso :
- Pubblico: chiunque abbia il link può partecipare.-
Interno: possono partecipare solo gli utenti Nextcloud.-
Password: possono partecipare solo gli ospiti che hanno la password..-
Sala d'attesa: un moderatore deve accettare ogni ospite prima che possa partecipare.-
Limitato: solo gli utenti e i gruppi selezionati possono accedere a questa stanza.", "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 moderatore è in grado di gestire tutti i partecipanti a una riunione, inclusa l'espulsione, il silenziamento o la selezione di un relatore. Gli utenti con il ruolo di moderatore possono anche chiudere una riunione o modificare le impostazioni predefinite.", "If enabled, normal users have to wait until a moderator is in the room." : "Se abilitata, gli utenti normali devono attendere fino a quando un moderatore è nella stanza.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Se abilitata, viene generato un URL moderatore che consente l'accesso con l'autorizzazione del moderatore.", @@ -80,6 +83,7 @@ "Room URL" : "URL della stanza", "Welcome" : "Benvenuto", "Participant limit" : "Limite di partecipanti", + "Sharing" : "Condivisione", "Every participant is moderator" : "Ogni partecipante è moderatore", "Moderator access via URL" : "Accesso moderatore tramite URL", "Miscellaneous" : "Varie", @@ -91,6 +95,7 @@ "Join meeting muted" : "Entra nella riunione silenziato", "Room name" : "Nome stanza", "Create" : "Crea", + "Published" : "Pubblicato", "Open recording" : "Apri registrazione", "Copy to clipboard" : "Copia negli appunti", "Save as file" : "Salva come file", @@ -109,9 +114,10 @@ "Delete?" : "Vuoi eliminare?", "Could not delete record" : "Impossibile eliminare il record", "Server error" : "Errore del server", - "moderator" : "moderatore", - "admin" : "amministratore", - "Share" : "Condividi", + "Could not modify publishing state" : "Impossibile modificare lo stato di pubblicazione", + "Open room" : "Stanza aperta", + "Start" : "Avvia", + "Clone room" : "Clona stanza", "Loading" : "Caricamento", "You are not allowed to change this option, because this room is shared with you." : "Non ti è consentito modificare questa opzione, poiché questa stanza è condivisa con te.", "Max. rooms" : "Num. massimo stanze", @@ -127,8 +133,12 @@ "URL has to start with HTTPS" : "L'URL deve iniziare con HTTPS", "URL has to contain the {token} placeholder" : "L'URL deve contenere il segnaposto {token}", "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "L'URL deve iniziare con https: // e contenere {token}. Inoltre è possibile utilizzare il segnaposto {user}.", + "The file \"{filename}\" was uploaded to your room." : "Il file \"{filename}\" è stato caricato nella tua stanza.", + "The file \"{filename}\" could not be uploaded to your room." : "Il file \"{filename}\" non è stato possibile caricarlo nella tua stanza.", + "The file \"{filename}\" could not be uploaded to your room. Maybe your BigBlueButton server does not support this action." : "Il file \"{filename}\" non può essere caricato nella tua stanza. Forse il tuo server BigBlueButton non supporta questa azione.", "Send file to BBB" : "Invia file a BBB", "Send to" : "Invia a", + "Start with" : "Inizia con", "Please select the room in which you like to use the file \"{filename}\"." : "Seleziona la stanza in cui vorresti usare il file \"{filename}\".", "No rooms available!" : "Nessuna stanza disponibile", "Send to BBB" : "Invia a BBB", diff --git a/l10n/ja.js b/l10n/ja.js index 73709aa..7b6ac8e 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "APIのURLまたはシークレットが設定されていません。管理者にお問い合わせください。", "BigBlueButton Integration" : "BigBlueButton統合", "BigBlueButton integration for Nextcloud" : "Nextcould向け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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "このアプリは、別にセットアップされた[BigBlueButton](https://bigbluebutton.org)を通じて会議室を作成することができます。\n\n* **会議室の開設** 会議室に名前やウェルカムメッセージなどを設定しましょう\n* **ゲスト参加のリンクを共有** すべてのゲストに会議室へのリンクをおくりましょう\n* **司会者参加のリンクを共有** 司会者として会議室に招待しましょう\n* **会議室を共有** 会議室をメンバーやグループ、サークルの仲間と共有しましょう\n* **デフォルトのプレゼン** ファイルブラウザから自分のプレゼンファイルを事前登録して会議を始めましょう\n* **会議録画の操作** 会議室の録画を視聴したり、共有したり、消去したりしましょう\n* **会議室の限定開設** 会議室の開設をあるグループに限定しましょう\n* **アクティビティ** 会議室のアクティビティをざっくりとらえましょう\n\nクイックスタートガイドと詳しい情報はこちらの [お読みください](https://github.com/sualko/cloud_bbb)にあります。\nこのアプリはいかがでしたか? 下の情報を参考に、オープンソースコミュニティに貢献しませんか?\n[貢献するには](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md)\n\n開発者求む!もし時間があれば、このアプリの改善に力を貸してください。\n\n*このアプリはBigBlueButtonを統合していますが、BigBlueButton Inc.に公式に承認されているわけでも、保証があるわけでもありません。 BigBlueButtonとBigBlueButtonロゴはBigBlueButton Inc.の商標です。*", "Room not found" : "会議室が見つかりません", "The room could not be found. Maybe it was deleted?" : "会議室が見つかりませんでした。もしかすると削除されたかもしれません。", "Back to %s" : "%s に戻る", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "グループ", "Searching" : "検索中", "No matches" : "一致なし", + "admin" : "管理者", + "moderator" : "モデレータ", "Name" : "名前", "Access" : "アクセス", "Max" : "最大", @@ -69,7 +70,6 @@ OC.L10N.register( "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." : "この会議室の参加者数の制限を設定します。ゼロは制限がないことを意味します。", "If enabled, the moderator is able to start the recording." : "有効にすると、モデレーターは記録を開始することができます。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公開 : リンクを知っている人は誰でも参加できます。パスワード : ゲストはパスワードを提供する必要があります。待合室 : モデレーターはゲストが参加する前にすべてのゲストの入室を許可しなければなりません。内部 : Nextcloudユーザーのみが参加できます。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "モデレーターは、キック、ミュート、プレゼンターの選択など、会議の参加者全員を管理することができます。モデレーターの役割を持つユーザーは、会議を閉じたり、デフォルトの設定を変更したりすることもできます。", "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が作成され、会議室に入るのに司会者の許可が必要になります。", @@ -82,6 +82,7 @@ OC.L10N.register( "Room URL" : "会議室URL", "Welcome" : "ようこそ", "Participant limit" : "参加者上限", + "Sharing" : "共有", "Every participant is moderator" : "全参加者がモデレーター", "Moderator access via URL" : "司会者URLアクセス", "Miscellaneous" : "その他", @@ -93,6 +94,7 @@ OC.L10N.register( "Join meeting muted" : "会議にミュートで参加", "Room name" : "会議室名", "Create" : "作成", + "Published" : "公開", "Open recording" : "録画を開く", "Copy to clipboard" : "クリップボードにコピー", "Save as file" : "別名で保存", @@ -111,9 +113,7 @@ OC.L10N.register( "Delete?" : "削除しますか?", "Could not delete record" : "記録を削除できませんでした", "Server error" : "サーバーエラー", - "moderator" : "モデレータ", - "admin" : "管理者", - "Share" : "共有", + "Start" : "開始する", "Loading" : "読み込み中", "You are not allowed to change this option, because this room is shared with you." : "あなたはこの会議室を共有されているため、このオプションを変更する権限がありません。", "Max. rooms" : "最大会議室数", diff --git a/l10n/ja.json b/l10n/ja.json index 4d61b2b..20a6107 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "APIのURLまたはシークレットが設定されていません。管理者にお問い合わせください。", "BigBlueButton Integration" : "BigBlueButton統合", "BigBlueButton integration for Nextcloud" : "Nextcould向け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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "このアプリは、別にセットアップされた[BigBlueButton](https://bigbluebutton.org)を通じて会議室を作成することができます。\n\n* **会議室の開設** 会議室に名前やウェルカムメッセージなどを設定しましょう\n* **ゲスト参加のリンクを共有** すべてのゲストに会議室へのリンクをおくりましょう\n* **司会者参加のリンクを共有** 司会者として会議室に招待しましょう\n* **会議室を共有** 会議室をメンバーやグループ、サークルの仲間と共有しましょう\n* **デフォルトのプレゼン** ファイルブラウザから自分のプレゼンファイルを事前登録して会議を始めましょう\n* **会議録画の操作** 会議室の録画を視聴したり、共有したり、消去したりしましょう\n* **会議室の限定開設** 会議室の開設をあるグループに限定しましょう\n* **アクティビティ** 会議室のアクティビティをざっくりとらえましょう\n\nクイックスタートガイドと詳しい情報はこちらの [お読みください](https://github.com/sualko/cloud_bbb)にあります。\nこのアプリはいかがでしたか? 下の情報を参考に、オープンソースコミュニティに貢献しませんか?\n[貢献するには](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md)\n\n開発者求む!もし時間があれば、このアプリの改善に力を貸してください。\n\n*このアプリはBigBlueButtonを統合していますが、BigBlueButton Inc.に公式に承認されているわけでも、保証があるわけでもありません。 BigBlueButtonとBigBlueButtonロゴはBigBlueButton Inc.の商標です。*", "Room not found" : "会議室が見つかりません", "The room could not be found. Maybe it was deleted?" : "会議室が見つかりませんでした。もしかすると削除されたかもしれません。", "Back to %s" : "%s に戻る", @@ -54,6 +53,8 @@ "Group" : "グループ", "Searching" : "検索中", "No matches" : "一致なし", + "admin" : "管理者", + "moderator" : "モデレータ", "Name" : "名前", "Access" : "アクセス", "Max" : "最大", @@ -67,7 +68,6 @@ "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." : "この会議室の参加者数の制限を設定します。ゼロは制限がないことを意味します。", "If enabled, the moderator is able to start the recording." : "有効にすると、モデレーターは記録を開始することができます。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公開 : リンクを知っている人は誰でも参加できます。パスワード : ゲストはパスワードを提供する必要があります。待合室 : モデレーターはゲストが参加する前にすべてのゲストの入室を許可しなければなりません。内部 : Nextcloudユーザーのみが参加できます。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "モデレーターは、キック、ミュート、プレゼンターの選択など、会議の参加者全員を管理することができます。モデレーターの役割を持つユーザーは、会議を閉じたり、デフォルトの設定を変更したりすることもできます。", "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が作成され、会議室に入るのに司会者の許可が必要になります。", @@ -80,6 +80,7 @@ "Room URL" : "会議室URL", "Welcome" : "ようこそ", "Participant limit" : "参加者上限", + "Sharing" : "共有", "Every participant is moderator" : "全参加者がモデレーター", "Moderator access via URL" : "司会者URLアクセス", "Miscellaneous" : "その他", @@ -91,6 +92,7 @@ "Join meeting muted" : "会議にミュートで参加", "Room name" : "会議室名", "Create" : "作成", + "Published" : "公開", "Open recording" : "録画を開く", "Copy to clipboard" : "クリップボードにコピー", "Save as file" : "別名で保存", @@ -109,9 +111,7 @@ "Delete?" : "削除しますか?", "Could not delete record" : "記録を削除できませんでした", "Server error" : "サーバーエラー", - "moderator" : "モデレータ", - "admin" : "管理者", - "Share" : "共有", + "Start" : "開始する", "Loading" : "読み込み中", "You are not allowed to change this option, because this room is shared with you." : "あなたはこの会議室を共有されているため、このオプションを変更する権限がありません。", "Max. rooms" : "最大会議室数", diff --git a/l10n/ka.js b/l10n/ka.js index 0a262a2..8be722b 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -11,17 +11,19 @@ OC.L10N.register( "Hello %s" : "Hello %s", "Group" : "Group", "No matches" : "No matches", + "moderator" : "moderator", "Name" : "Name", "Edit" : "Edit", "Welcome" : "Welcome", + "Sharing" : "Sharing", "Miscellaneous" : "Miscellaneous", "Recording" : "Recording", "Create" : "Create", + "Published" : "Published", "Copy to clipboard" : "Copy to clipboard", "Delete" : "Delete", "Error" : "Error", - "moderator" : "moderator", - "Share" : "Share", + "Start" : "Start", "Loading" : "Loading", "Settings saved" : "Settings saved" }, diff --git a/l10n/ka.json b/l10n/ka.json index c55aa6a..99f18f8 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -9,17 +9,19 @@ "Hello %s" : "Hello %s", "Group" : "Group", "No matches" : "No matches", + "moderator" : "moderator", "Name" : "Name", "Edit" : "Edit", "Welcome" : "Welcome", + "Sharing" : "Sharing", "Miscellaneous" : "Miscellaneous", "Recording" : "Recording", "Create" : "Create", + "Published" : "Published", "Copy to clipboard" : "Copy to clipboard", "Delete" : "Delete", "Error" : "Error", - "moderator" : "moderator", - "Share" : "Share", + "Start" : "Start", "Loading" : "Loading", "Settings saved" : "Settings saved" },"pluralForm" :"nplurals=2; plural=(n!=1);" diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js index 4483b0f..306b04d 100644 --- a/l10n/ka_GE.js +++ b/l10n/ka_GE.js @@ -7,18 +7,18 @@ OC.L10N.register( "Password" : "პაროლი", "Hello %s" : "გამარჯობა, %s", "Group" : "ჯგუფი", + "moderator" : "მოდერატორი", "Name" : "სახელი", "Access" : "წვდომა", "Edit" : "ცვლილება", "Welcome" : "კეთილი იყოს თქვენი მობრძანება", + "Sharing" : "გაზიარება", "Room name" : "ოთახის სახელი", "Create" : "შექმნა", "Copy to clipboard" : "კოპირება ბუფერში", "Delete" : "წაშლა", "Error" : "შეცდომა", "Server error" : "სერვერის შეცდომა", - "moderator" : "მოდერატორი", - "Share" : "გაზიარება", "Loading" : "იტვირთება", "Settings saved" : "პარამეტრები შენახულია" }, diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json index 1dd9353..439d1cc 100644 --- a/l10n/ka_GE.json +++ b/l10n/ka_GE.json @@ -5,18 +5,18 @@ "Password" : "პაროლი", "Hello %s" : "გამარჯობა, %s", "Group" : "ჯგუფი", + "moderator" : "მოდერატორი", "Name" : "სახელი", "Access" : "წვდომა", "Edit" : "ცვლილება", "Welcome" : "კეთილი იყოს თქვენი მობრძანება", + "Sharing" : "გაზიარება", "Room name" : "ოთახის სახელი", "Create" : "შექმნა", "Copy to clipboard" : "კოპირება ბუფერში", "Delete" : "წაშლა", "Error" : "შეცდომა", "Server error" : "სერვერის შეცდომა", - "moderator" : "მოდერატორი", - "Share" : "გაზიარება", "Loading" : "იტვირთება", "Settings saved" : "პარამეტრები შენახულია" },"pluralForm" :"nplurals=2; plural=(n!=1);" diff --git a/l10n/kab.js b/l10n/kab.js index 1bbaf0e..7c37432 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -10,10 +10,11 @@ OC.L10N.register( "Group" : "Agraw", "Name" : "Nom", "Edit" : "Ẓreg", + "Sharing" : "Beṭṭu", "Create" : "Snulfu-d", + "Published" : "Yeffeɣ-d", "Copy to clipboard" : "Copier dans le presse-papiers", "Delete" : "Kkes", - "Error" : "Erreur", - "Share" : "Bḍu" + "Error" : "Erreur" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/kab.json b/l10n/kab.json index 523b92b..03e63ac 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -8,10 +8,11 @@ "Group" : "Agraw", "Name" : "Nom", "Edit" : "Ẓreg", + "Sharing" : "Beṭṭu", "Create" : "Snulfu-d", + "Published" : "Yeffeɣ-d", "Copy to clipboard" : "Copier dans le presse-papiers", "Delete" : "Kkes", - "Error" : "Erreur", - "Share" : "Bḍu" + "Error" : "Erreur" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/km.js b/l10n/km.js index 70e8406..1392816 100644 --- a/l10n/km.js +++ b/l10n/km.js @@ -7,10 +7,10 @@ OC.L10N.register( "Group" : "Group", "Name" : "ឈ្មោះ", "Edit" : "កែប្រែ", + "Sharing" : "ការ​ចែក​រំលែក", "Create" : "បង្កើត", "Delete" : "លុប", "Error" : "កំហុស", - "Share" : "ចែក​រំលែក", "Loading" : "Loading" }, "nplurals=1; plural=0;"); diff --git a/l10n/km.json b/l10n/km.json index bd31a2e..2483eb2 100644 --- a/l10n/km.json +++ b/l10n/km.json @@ -5,10 +5,10 @@ "Group" : "Group", "Name" : "ឈ្មោះ", "Edit" : "កែប្រែ", + "Sharing" : "ការ​ចែក​រំលែក", "Create" : "បង្កើត", "Delete" : "លុប", "Error" : "កំហុស", - "Share" : "ចែក​រំលែក", "Loading" : "Loading" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/kn.js b/l10n/kn.js index 0b8c96f..9f47c79 100644 --- a/l10n/kn.js +++ b/l10n/kn.js @@ -6,10 +6,10 @@ OC.L10N.register( "Group" : "ಗುಂಪು", "Name" : "ಹೆಸರು", "Edit" : "ಸಂಪಾದಿಸು", + "Sharing" : "ಹಂಚಿಕೆ", "Create" : "ಸೃಷ್ಟಿಸಿ", "Delete" : "ಅಳಿಸಿ", "Error" : "ತಪ್ಪಾಗಿದೆ", - "Share" : "ಹಂಚಿಕೊಳ್ಳಿ", "Loading" : "Loading" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/kn.json b/l10n/kn.json index f3edcfe..3e7e646 100644 --- a/l10n/kn.json +++ b/l10n/kn.json @@ -4,10 +4,10 @@ "Group" : "ಗುಂಪು", "Name" : "ಹೆಸರು", "Edit" : "ಸಂಪಾದಿಸು", + "Sharing" : "ಹಂಚಿಕೆ", "Create" : "ಸೃಷ್ಟಿಸಿ", "Delete" : "ಅಳಿಸಿ", "Error" : "ತಪ್ಪಾಗಿದೆ", - "Share" : "ಹಂಚಿಕೊಳ್ಳಿ", "Loading" : "Loading" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/ko.js b/l10n/ko.js index c15229d..fe55b4a 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -18,66 +18,125 @@ OC.L10N.register( "Internal + Waiting room for guests" : "내부용 + 손님 대상으로는 허가제 적용", "Waiting room for all users" : "모든 사용자에게 허가제 적용", "Internal" : "내부", + "Internal restricted" : "내부 제한", + "API URL or secret not configured. Please contact your administrator." : "API URL 또는 비밀번호가 구성되지 않았습니다. 관리자에게 문의하세요.", + "BigBlueButton Integration" : "BigBlueButton 통합", + "BigBlueButton integration for Nextcloud" : "Nextcloud를 위한 BigBlueButton 통합", "Room not found" : "대화방을 찾을 수 없음", "The room could not be found. Maybe it was deleted?" : "대화방을 찾을 수 없습니다. 삭제된 것 같습니다.", "Back to %s" : "%s(으)로 돌아가기", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "BigBlueButton 서버에서 \"sudo bbb-conf --secret\"을 실행하여 API URL과 개인키를 얻으세요.", + "API URL" : "API URL", + "API secret" : "API 개인키", "Save" : "저장", "Show room manager in app navigation instead of settings page." : "대화방 관리를 설정 페이지 대신 앱 내비게이션 메뉴에서 표시", + "Use Nextcloud theme in BigBlueButton." : "BigBlueButton에서 Nextcloud 테마를 사용하세요.", "Default Room Settings" : "기본 대화방 설정", "Below you can change some default values, which are used to create a new room." : "아래에서 새 대화방의 기본 설정값을 변경할 수 있습니다", + "Perform media check before usage" : "사용 전 미디어 체크 수행", "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을 사용하려면 아래에 전달 프록시를 입력하세요.", + "URL shortener" : "URL 단축기", + "Restrictions" : "제한", "You will be forwarded to the room in the next few seconds." : "잠시 후 대화방으로 이동합니다.", + "Let's go!" : "갑시다!", "Please enter your name!" : "이름을 입력하세요!", + "The name must be at least 3 characters long." : "이름은 3자 이상이어야 합니다.", + "You have to provide the correct password to join the meeting." : "회의에 참여하려면 올바른 비밀번호를 입력해야 합니다.", "Display name" : "표시 이름", "Password" : "암호", "Join" : "참가", "Have an account? Log in." : "계정이 있습니까? 로그인 하십시오.", "Hello %s" : "%s님 안녕하세요.", + "Name, group …" : "이름, 그룹…", "Group" : "그룹", + "Searching" : "검색", "No matches" : "일치 항목 없음", + "admin" : "관리자", + "moderator" : "중재자", "Name" : "이름", "Access" : "접근 권한", "Max" : "최대치", "Record" : "기록", + "Recordings" : "녹화", "You are not permitted to create a room." : "대화방을 생성할 권한이 없습니다", "You exceeded the maximum number of rooms." : "최대 대화방 수를 초과했습니다", + "Room quota:" : "방 할당량:", "Edit" : "편집", "Descriptive name of this room." : "이 대화방에 대한 설명", + "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." : "이 대화방의 최대 인원수를 설정합니다. 0은 무제한입니다.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "공개: 링크를 알고 있는 모두가 참가할 수 있습니다. 암호: 손님이 암호를 입력해야 합니다. 대기실: 손님이 참가하기 전 중재자가 수락해야 합니다. 내부용: Nextcloud 사용자만 참가할 수 있습니다.", + "If enabled, the moderator is able to start the recording." : "활성화되면 진행자는 녹화를 시작할 수 있습니다.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "액세스 옵션을 구성하는 다양한 개념에 대한 설명:
- 공개 : 링크가 있는 사람이라면 누구나 참여할 수 있습니다.-
내부 : Nextcloud 사용자만 가입 가능합니다.-
비밀번호 : 비밀번호를 가지고 있는 게스트만 입장이 가능합니다.-
대기실: 각 게스트가 입장하기 전에 진행자의 수락이 필요합니다.-
제한됨 : 허용된 사용자 및 그룹만 이 방에 접근할 수 있습니다.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "중재자는 모든 참가자에게 추방, 음소거, 발표자로 지정하는 등의 관리를 할 수 있습니다. 중재자 역할의 사용자는 모임을 끝내거나 기본 설정을 바꿀 수도 있습니다.", "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이 생성됩니다.", "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}\" 편집", "Room URL" : "대화방 URL", "Welcome" : "환영합니다.", + "Participant limit" : "참가자 제한", + "Sharing" : "공유", "Every participant is moderator" : "모든 참가자가 중재자입니다.", "Moderator access via URL" : "URL을 통해 중재자로 접근", + "Miscellaneous" : "기타", "Recording" : "녹음/녹화 중", "Require moderator to start room" : "대화방을 시작하기 위해 중재자 요청", + "Listen only option" : "듣기만 설정", + "Skip media check before usage" : "사용 전 미디어 체크 건너뛰기", + "Clean layout" : "깔끔한 레이아웃", "Join meeting muted" : "음소거된 상태로 참가", "Room name" : "방 번호", "Create" : "생성", + "Open recording" : "녹화 공개", "Copy to clipboard" : "클립보드로 복사", + "Save as file" : "파일로 저장", "_%n participant_::_%n participants_" : ["%n명의 참가자"], "Delete" : "삭제", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "정말로 \"{name}\"을(를) 삭제하시겠습니까? 이 작업은 취소할 수 없습니다.", + "Delete \"{name}\"?" : "\"{name}\"을(를) 삭제하시겠습니까?", "Select target folder" : "지정 폴더 열기", "Room URL was stored in \"{path}\" as \"{filename}\"." : "대화방 URL이 \"{path}\"에 \"{filename}\"(으)로 저장됨", + "Link stored" : "링크가 저장됨", "URL to room could not be stored." : "대화방 URL을 저장할 수 없음", "Error" : "오류", + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "프레젠테이션의 URL이 \"{filename}\"으로 \"{path}\"에 저장되었습니다.", + "URL to presentation could not be stored." : "프레젠테이션 URL을 저장할 수 없습니다.", + "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "\"{startDate}\"의 녹음을 삭제하시겠습니까? 이 작업은 취소할 수 없습니다.", + "Delete?" : "삭제합니까?", "Could not delete record" : "기록을 지울 수 없습니다.", "Server error" : "서버 오류", - "moderator" : "중재자", - "Share" : "공유", "Loading" : "불러오는 중", "You are not allowed to change this option, because this room is shared with you." : "공유된 대화방의 설정을 변경할 수 없습니다", "Max. rooms" : "최대 대화방 수", + "Max. participants" : "최대. 참가자", + "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." : "제한 사항은 기존 회의실에 영향을 미치지 않습니다. -1은 값이 무제한임을 의미합니다. 여러 제한 사항이 적용되는 경우 모든 사용자에 대해 가장 덜 제한적인 옵션이 선택됩니다.", + "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "\"{name}\" 그룹에 대한 제한 사항을 삭제하시겠습니까? 이 작업은 취소할 수 없습니다.", + "Delete restrictions for \"{name}\"?" : "\"{name}\"에 대한 제한을 삭제하시겠습니까?", "Settings saved" : "설정 저장됨", - "Unexpected error occurred" : "예상치 못한 에러가 발생했습니다.", + "Unexpected error occurred" : "예상치 못한 오류가 발생했습니다.", "API URL is invalid" : "무효한 API URL", + "API secret is invalid" : "API 개인키가 유효하지 않음", + "URL has to start with HTTPS" : "URL은 HTTPS로 시작해야 함", + "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} 자리 표시자를 사용할 수 있습니다.", + "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 서버가 이 작업을 지원하지 않을 수도 있습니다.", + "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초 후에 다시 시도합니다. 잠시만 기다려주십시오."] }, "nplurals=1; plural=0;"); diff --git a/l10n/ko.json b/l10n/ko.json index c9c45a5..3efa7df 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -16,66 +16,125 @@ "Internal + Waiting room for guests" : "내부용 + 손님 대상으로는 허가제 적용", "Waiting room for all users" : "모든 사용자에게 허가제 적용", "Internal" : "내부", + "Internal restricted" : "내부 제한", + "API URL or secret not configured. Please contact your administrator." : "API URL 또는 비밀번호가 구성되지 않았습니다. 관리자에게 문의하세요.", + "BigBlueButton Integration" : "BigBlueButton 통합", + "BigBlueButton integration for Nextcloud" : "Nextcloud를 위한 BigBlueButton 통합", "Room not found" : "대화방을 찾을 수 없음", "The room could not be found. Maybe it was deleted?" : "대화방을 찾을 수 없습니다. 삭제된 것 같습니다.", "Back to %s" : "%s(으)로 돌아가기", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "BigBlueButton 서버에서 \"sudo bbb-conf --secret\"을 실행하여 API URL과 개인키를 얻으세요.", + "API URL" : "API URL", + "API secret" : "API 개인키", "Save" : "저장", "Show room manager in app navigation instead of settings page." : "대화방 관리를 설정 페이지 대신 앱 내비게이션 메뉴에서 표시", + "Use Nextcloud theme in BigBlueButton." : "BigBlueButton에서 Nextcloud 테마를 사용하세요.", "Default Room Settings" : "기본 대화방 설정", "Below you can change some default values, which are used to create a new room." : "아래에서 새 대화방의 기본 설정값을 변경할 수 있습니다", + "Perform media check before usage" : "사용 전 미디어 체크 수행", "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을 사용하려면 아래에 전달 프록시를 입력하세요.", + "URL shortener" : "URL 단축기", + "Restrictions" : "제한", "You will be forwarded to the room in the next few seconds." : "잠시 후 대화방으로 이동합니다.", + "Let's go!" : "갑시다!", "Please enter your name!" : "이름을 입력하세요!", + "The name must be at least 3 characters long." : "이름은 3자 이상이어야 합니다.", + "You have to provide the correct password to join the meeting." : "회의에 참여하려면 올바른 비밀번호를 입력해야 합니다.", "Display name" : "표시 이름", "Password" : "암호", "Join" : "참가", "Have an account? Log in." : "계정이 있습니까? 로그인 하십시오.", "Hello %s" : "%s님 안녕하세요.", + "Name, group …" : "이름, 그룹…", "Group" : "그룹", + "Searching" : "검색", "No matches" : "일치 항목 없음", + "admin" : "관리자", + "moderator" : "중재자", "Name" : "이름", "Access" : "접근 권한", "Max" : "최대치", "Record" : "기록", + "Recordings" : "녹화", "You are not permitted to create a room." : "대화방을 생성할 권한이 없습니다", "You exceeded the maximum number of rooms." : "최대 대화방 수를 초과했습니다", + "Room quota:" : "방 할당량:", "Edit" : "편집", "Descriptive name of this room." : "이 대화방에 대한 설명", + "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." : "이 대화방의 최대 인원수를 설정합니다. 0은 무제한입니다.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "공개: 링크를 알고 있는 모두가 참가할 수 있습니다. 암호: 손님이 암호를 입력해야 합니다. 대기실: 손님이 참가하기 전 중재자가 수락해야 합니다. 내부용: Nextcloud 사용자만 참가할 수 있습니다.", + "If enabled, the moderator is able to start the recording." : "활성화되면 진행자는 녹화를 시작할 수 있습니다.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "액세스 옵션을 구성하는 다양한 개념에 대한 설명:
- 공개 : 링크가 있는 사람이라면 누구나 참여할 수 있습니다.-
내부 : Nextcloud 사용자만 가입 가능합니다.-
비밀번호 : 비밀번호를 가지고 있는 게스트만 입장이 가능합니다.-
대기실: 각 게스트가 입장하기 전에 진행자의 수락이 필요합니다.-
제한됨 : 허용된 사용자 및 그룹만 이 방에 접근할 수 있습니다.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "중재자는 모든 참가자에게 추방, 음소거, 발표자로 지정하는 등의 관리를 할 수 있습니다. 중재자 역할의 사용자는 모임을 끝내거나 기본 설정을 바꿀 수도 있습니다.", "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이 생성됩니다.", "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}\" 편집", "Room URL" : "대화방 URL", "Welcome" : "환영합니다.", + "Participant limit" : "참가자 제한", + "Sharing" : "공유", "Every participant is moderator" : "모든 참가자가 중재자입니다.", "Moderator access via URL" : "URL을 통해 중재자로 접근", + "Miscellaneous" : "기타", "Recording" : "녹음/녹화 중", "Require moderator to start room" : "대화방을 시작하기 위해 중재자 요청", + "Listen only option" : "듣기만 설정", + "Skip media check before usage" : "사용 전 미디어 체크 건너뛰기", + "Clean layout" : "깔끔한 레이아웃", "Join meeting muted" : "음소거된 상태로 참가", "Room name" : "방 번호", "Create" : "생성", + "Open recording" : "녹화 공개", "Copy to clipboard" : "클립보드로 복사", + "Save as file" : "파일로 저장", "_%n participant_::_%n participants_" : ["%n명의 참가자"], "Delete" : "삭제", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "정말로 \"{name}\"을(를) 삭제하시겠습니까? 이 작업은 취소할 수 없습니다.", + "Delete \"{name}\"?" : "\"{name}\"을(를) 삭제하시겠습니까?", "Select target folder" : "지정 폴더 열기", "Room URL was stored in \"{path}\" as \"{filename}\"." : "대화방 URL이 \"{path}\"에 \"{filename}\"(으)로 저장됨", + "Link stored" : "링크가 저장됨", "URL to room could not be stored." : "대화방 URL을 저장할 수 없음", "Error" : "오류", + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "프레젠테이션의 URL이 \"{filename}\"으로 \"{path}\"에 저장되었습니다.", + "URL to presentation could not be stored." : "프레젠테이션 URL을 저장할 수 없습니다.", + "Are you sure you want to delete the recording from \"{startDate}\"? This operation cannot be undone." : "\"{startDate}\"의 녹음을 삭제하시겠습니까? 이 작업은 취소할 수 없습니다.", + "Delete?" : "삭제합니까?", "Could not delete record" : "기록을 지울 수 없습니다.", "Server error" : "서버 오류", - "moderator" : "중재자", - "Share" : "공유", "Loading" : "불러오는 중", "You are not allowed to change this option, because this room is shared with you." : "공유된 대화방의 설정을 변경할 수 없습니다", "Max. rooms" : "최대 대화방 수", + "Max. participants" : "최대. 참가자", + "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." : "제한 사항은 기존 회의실에 영향을 미치지 않습니다. -1은 값이 무제한임을 의미합니다. 여러 제한 사항이 적용되는 경우 모든 사용자에 대해 가장 덜 제한적인 옵션이 선택됩니다.", + "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "\"{name}\" 그룹에 대한 제한 사항을 삭제하시겠습니까? 이 작업은 취소할 수 없습니다.", + "Delete restrictions for \"{name}\"?" : "\"{name}\"에 대한 제한을 삭제하시겠습니까?", "Settings saved" : "설정 저장됨", - "Unexpected error occurred" : "예상치 못한 에러가 발생했습니다.", + "Unexpected error occurred" : "예상치 못한 오류가 발생했습니다.", "API URL is invalid" : "무효한 API URL", + "API secret is invalid" : "API 개인키가 유효하지 않음", + "URL has to start with HTTPS" : "URL은 HTTPS로 시작해야 함", + "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} 자리 표시자를 사용할 수 있습니다.", + "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 서버가 이 작업을 지원하지 않을 수도 있습니다.", + "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초 후에 다시 시도합니다. 잠시만 기다려주십시오."] },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/lb.js b/l10n/lb.js index 76aaa62..5a32001 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -6,10 +6,10 @@ OC.L10N.register( "Group" : "Grupp", "Name" : "Numm", "Edit" : "Änneren", + "Sharing" : "Gedeelt", "Create" : "Erstellen", "Delete" : "Läschen", "Error" : "Fehler", - "Share" : "Deelen", "Loading" : "Loading" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/lb.json b/l10n/lb.json index 07b11f6..73ec37b 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -4,10 +4,10 @@ "Group" : "Grupp", "Name" : "Numm", "Edit" : "Änneren", + "Sharing" : "Gedeelt", "Create" : "Erstellen", "Delete" : "Läschen", "Error" : "Fehler", - "Share" : "Deelen", "Loading" : "Loading" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/lo.js b/l10n/lo.js index 06fdb2b..496e111 100644 --- a/l10n/lo.js +++ b/l10n/lo.js @@ -9,10 +9,10 @@ OC.L10N.register( "Group" : "ກຸ່ມ", "Name" : "ຊື່", "Edit" : "ແກ້ໄຂ", + "Sharing" : "ການແບ່ງປັນ", "Create" : "ສ້າງ", "Delete" : "ລຶບ", "Error" : "ຜິດພາດ", - "Share" : "ແບ່ງປັນ", "Loading" : "ການໂຫຼດ" }, "nplurals=1; plural=0;"); diff --git a/l10n/lo.json b/l10n/lo.json index a5c7e03..5d3e29b 100644 --- a/l10n/lo.json +++ b/l10n/lo.json @@ -7,10 +7,10 @@ "Group" : "ກຸ່ມ", "Name" : "ຊື່", "Edit" : "ແກ້ໄຂ", + "Sharing" : "ການແບ່ງປັນ", "Create" : "ສ້າງ", "Delete" : "ລຶບ", "Error" : "ຜິດພາດ", - "Share" : "ແບ່ງປັນ", "Loading" : "ການໂຫຼດ" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index b6ae2b8..bb5db28 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -23,14 +23,17 @@ OC.L10N.register( "Hello %s" : "Sveiki, %s", "Name, group …" : "Vardas, grupė…", "Group" : "Grupė", + "moderator" : "moderatorius", "Name" : "Pavadinimas", "Access" : "Prieiga", "You are not permitted to create a room." : "Jums neleidžiama sukurti kambario.", "Edit" : "Taisyti", "Welcome" : "Sveiki", + "Sharing" : "Bendrinimas", "Miscellaneous" : "Įvairūs", "Room name" : "Kambario pavadinimas", "Create" : "Sukurti", + "Published" : "Paskelbtas", "Copy to clipboard" : "Kopijuoti į iškarpinę", "Save as file" : "Įrašyti kaip failą", "Delete" : "Ištrinti", @@ -38,8 +41,7 @@ OC.L10N.register( "Error" : "Klaida", "Delete?" : "Ištrinti?", "Server error" : "Serverio klaida", - "moderator" : "moderatorius", - "Share" : "Bendrinti", + "Start" : "Pradėti", "Loading" : "Įkeliama", "Group …" : "Grupė…", "Settings saved" : "Nustatymai įrašyti", diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 3dfb5ae..fed2bdd 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -21,14 +21,17 @@ "Hello %s" : "Sveiki, %s", "Name, group …" : "Vardas, grupė…", "Group" : "Grupė", + "moderator" : "moderatorius", "Name" : "Pavadinimas", "Access" : "Prieiga", "You are not permitted to create a room." : "Jums neleidžiama sukurti kambario.", "Edit" : "Taisyti", "Welcome" : "Sveiki", + "Sharing" : "Bendrinimas", "Miscellaneous" : "Įvairūs", "Room name" : "Kambario pavadinimas", "Create" : "Sukurti", + "Published" : "Paskelbtas", "Copy to clipboard" : "Kopijuoti į iškarpinę", "Save as file" : "Įrašyti kaip failą", "Delete" : "Ištrinti", @@ -36,8 +39,7 @@ "Error" : "Klaida", "Delete?" : "Ištrinti?", "Server error" : "Serverio klaida", - "moderator" : "moderatorius", - "Share" : "Bendrinti", + "Start" : "Pradėti", "Loading" : "Įkeliama", "Group …" : "Grupė…", "Settings saved" : "Nustatymai įrašyti", diff --git a/l10n/lv.js b/l10n/lv.js index 3052af2..319ec2b 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -9,17 +9,20 @@ OC.L10N.register( "Community" : "Kopiena", "Please enter your name!" : "Ludzu ieraksties savu vārdu@", "The name must be at least 3 characters long." : "Vārdam jābūt vismaz 3 rakstzīmes garam.", - "Display name" : "Ekrāna vārds", + "Display name" : "Attēlojamais vārds", "Password" : "Parole", "Join" : "Pievienoties", "Hello %s" : "Sveiki, %s", "Group" : "Grupa", + "Searching" : "Meklē", + "moderator" : "moderators", "Name" : "Vārds", - "Max" : "Maksimāli", + "Max" : "Vislielākais", "Record" : "Ierakstīt", "Recordings" : "Ieraksta", - "Edit" : "Rediģēt", + "Edit" : "Labot", "Welcome" : "Laipni lūdzam!", + "Sharing" : "Koplietošana", "Miscellaneous" : "Dažādi", "Room name" : "Sapulču telpas nosaukums", "Create" : "Izveidot", @@ -37,8 +40,7 @@ OC.L10N.register( "Delete?" : "Dzēst?", "Could not delete record" : "Nevar dzēst ierakstu", "Server error" : "Servera kļūda", - "moderator" : "moderators", - "Share" : "Koplietot", + "Start" : "Sākums", "Loading" : "Ielādē", "Settings saved" : "Iestatījumi saglabāti", "Unexpected error occurred" : "Neparedzēta kļūda", diff --git a/l10n/lv.json b/l10n/lv.json index 80131a7..e2e886e 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -7,17 +7,20 @@ "Community" : "Kopiena", "Please enter your name!" : "Ludzu ieraksties savu vārdu@", "The name must be at least 3 characters long." : "Vārdam jābūt vismaz 3 rakstzīmes garam.", - "Display name" : "Ekrāna vārds", + "Display name" : "Attēlojamais vārds", "Password" : "Parole", "Join" : "Pievienoties", "Hello %s" : "Sveiki, %s", "Group" : "Grupa", + "Searching" : "Meklē", + "moderator" : "moderators", "Name" : "Vārds", - "Max" : "Maksimāli", + "Max" : "Vislielākais", "Record" : "Ierakstīt", "Recordings" : "Ieraksta", - "Edit" : "Rediģēt", + "Edit" : "Labot", "Welcome" : "Laipni lūdzam!", + "Sharing" : "Koplietošana", "Miscellaneous" : "Dažādi", "Room name" : "Sapulču telpas nosaukums", "Create" : "Izveidot", @@ -35,8 +38,7 @@ "Delete?" : "Dzēst?", "Could not delete record" : "Nevar dzēst ierakstu", "Server error" : "Servera kļūda", - "moderator" : "moderators", - "Share" : "Koplietot", + "Start" : "Sākums", "Loading" : "Ielādē", "Settings saved" : "Iestatījumi saglabāti", "Unexpected error occurred" : "Neparedzēta kļūda", diff --git a/l10n/mk.js b/l10n/mk.js index 0e5cf78..c348319 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -11,19 +11,20 @@ OC.L10N.register( "Hello %s" : "Здраво %s", "Group" : "Група", "No matches" : "Нема совпаѓања", + "moderator" : "модератор", "Name" : "Име", "Access" : "Пристап", "Edit" : "Уреди", "Welcome" : "Добредојде", + "Sharing" : "Споделување", "Miscellaneous" : "Разно", "Create" : "Креирај", + "Published" : "Објавено", "Copy to clipboard" : "Копирај во клипборд", "_%n participant_::_%n participants_" : ["%n учесник","%n учесници"], "Delete" : "Избриши", "Error" : "Грешка", "Server error" : "Грешка на серверот", - "moderator" : "модератор", - "Share" : "Сподели", "Loading" : "Се вчитува", "Settings saved" : "Параматрите се зачувани" }, diff --git a/l10n/mk.json b/l10n/mk.json index 7ac45ca..f0d4062 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -9,19 +9,20 @@ "Hello %s" : "Здраво %s", "Group" : "Група", "No matches" : "Нема совпаѓања", + "moderator" : "модератор", "Name" : "Име", "Access" : "Пристап", "Edit" : "Уреди", "Welcome" : "Добредојде", + "Sharing" : "Споделување", "Miscellaneous" : "Разно", "Create" : "Креирај", + "Published" : "Објавено", "Copy to clipboard" : "Копирај во клипборд", "_%n participant_::_%n participants_" : ["%n учесник","%n учесници"], "Delete" : "Избриши", "Error" : "Грешка", "Server error" : "Грешка на серверот", - "moderator" : "модератор", - "Share" : "Сподели", "Loading" : "Се вчитува", "Settings saved" : "Параматрите се зачувани" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" diff --git a/l10n/mn.js b/l10n/mn.js index 2c4732d..3199d9c 100644 --- a/l10n/mn.js +++ b/l10n/mn.js @@ -10,11 +10,12 @@ OC.L10N.register( "Name" : "Нэр", "Edit" : "засварлах", "Welcome" : "Тавтай морил", + "Sharing" : "Түгээх", "Create" : "Үүсгэх", "Delete" : "Устгах", "Error" : "Алдаа", "Server error" : "серверийн алдаа", - "Share" : "Түгээх", + "Start" : "эхлэх", "Loading" : "Loading", "Settings saved" : "Тохиргоо хадгалагдлаа" }, diff --git a/l10n/mn.json b/l10n/mn.json index 9206a72..83fc121 100644 --- a/l10n/mn.json +++ b/l10n/mn.json @@ -8,11 +8,12 @@ "Name" : "Нэр", "Edit" : "засварлах", "Welcome" : "Тавтай морил", + "Sharing" : "Түгээх", "Create" : "Үүсгэх", "Delete" : "Устгах", "Error" : "Алдаа", "Server error" : "серверийн алдаа", - "Share" : "Түгээх", + "Start" : "эхлэх", "Loading" : "Loading", "Settings saved" : "Тохиргоо хадгалагдлаа" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/ms_MY.js b/l10n/ms_MY.js index dcd5136..4fd1a9d 100644 --- a/l10n/ms_MY.js +++ b/l10n/ms_MY.js @@ -10,7 +10,6 @@ OC.L10N.register( "Create" : "Buat", "Delete" : "Padam", "Error" : "Ralat", - "Share" : "Kongsi", "Loading" : "Loading" }, "nplurals=1; plural=0;"); diff --git a/l10n/ms_MY.json b/l10n/ms_MY.json index dc455c9..ca161a4 100644 --- a/l10n/ms_MY.json +++ b/l10n/ms_MY.json @@ -8,7 +8,6 @@ "Create" : "Buat", "Delete" : "Padam", "Error" : "Ralat", - "Share" : "Kongsi", "Loading" : "Loading" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/nb.js b/l10n/nb.js index c2e45fa..69b43b9 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API URL eller hemmelighet ikke konfigurert. Kontakt administratoren din.", "BigBlueButton Integration" : "BigBlueButton-integrasjon", "BigBlueButton integration for Nextcloud" : "BigBlueButton-integrasjon for Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Denne appen lar deg opprette møter med en ekstern installasjon av [BigBlueButton](https://bigbluebutton.org).\n\n* **Romoppsett** Lag flere romkonfigurasjoner med navn, velkomstmelding …\n* **Del gjestelink** Del romlenken med alle gjestene dine\n* **Del moderatorlink** Inviter moderatorer til rommet\n* **Del rom** Del rom med medlemmer, grupper eller kretser\n* **Egendefinert presentasjon** Start et rom med en valgt presentasjon fra filnettleseren\n* **Administrer opptak** Se, del og slett opptak for rommene dine\n* **Restriksjoner** Begrens romoppretting til visse grupper\n* **Aktiviteter** Få en oversikt over romaktivitetene dine\n\nHurtigstartguide og mer informasjon i vår [readme](https://github.com/sualko/cloud_bbb).\nLiker du denne applikasjonen? Gi noe tilbake til åpen kildekode-fellesskapet og sjekk ut vår\n[måter å bidra på](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nUtvikler søkes! Hvis du har tid ville det vært kjempebra om du kunne bidra til å forbedre denne applikasjonen.\n\n*Denne appen integrerer BigBlueButton og er ikke godkjent eller sertifisert av BigBlueButton Inc. BigBlueButton og BigBlueButton-logoen er varemerker for BigBlueButton Inc.*", "Room not found" : "Rom ikke funnet", "The room could not be found. Maybe it was deleted?" : "Rommet ble ikke funnet. Kanskje den ble slettet?", "Back to %s" : "Tilbake til %s", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "Gruppe", "Searching" : "Søker", "No matches" : "Ingen treff", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Navn", "Access" : "Tilgang", "Max" : "Maks", @@ -69,7 +70,7 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Denne meldingen vises til alle brukere i chatteområdet etter at de ble med.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Setter en grense for antall deltakere for dette rommet. Null betyr at det ikke er noen grense.", "If enabled, the moderator is able to start the recording." : "Hvis aktivert, kan moderatoren starte opptaket.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Offentlig: Alle som kjenner lenken kan bli med. Passord: Gjestene må oppgi et passord. Venterom: En moderator må godta hver gjest før de kan bli med. Internt: Bare Nextcloud-brukere kan bli med.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Forklaring av de ulike begrepene som utgjør tilgangsalternativer :
- Offentlig: Alle med lenken kan bli med.-
Intern: Kun Nextcloud-brukere kan bli med.-
Passord: Kun gjester med passordet kan bli med..-
Venterom: En moderator må godta hver gjest før de kan bli med.-
Begrenset : Bare utvalgte brukere og grupper har tilgang til dette rommet.", "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." : "En moderator kan administrere alle deltakerne i et møte, inkludert sparking, demping eller valg av presentatør. Brukere med rollen moderator kan også lukke et møte eller endre standardinnstillingene.", "If enabled, normal users have to wait until a moderator is in the room." : "Hvis aktivert, må vanlige brukere vente til en moderator er i rommet.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Hvis aktivert, genereres en moderator-URL som gir tilgang med moderatortillatelse.", @@ -82,6 +83,7 @@ OC.L10N.register( "Room URL" : "Rom URL", "Welcome" : "Velkommen", "Participant limit" : "Deltakergrense", + "Sharing" : "Deling", "Every participant is moderator" : "Hver deltaker er moderator", "Moderator access via URL" : "Moderatortilgang via URL", "Miscellaneous" : "Diverse", @@ -93,6 +95,7 @@ OC.L10N.register( "Join meeting muted" : "Bli med i møte med lyden", "Room name" : "Romnavn", "Create" : "Ny", + "Published" : "Publisert", "Open recording" : "Åpne opptak", "Copy to clipboard" : "Kopiert til utklippstavlen", "Save as file" : "Lagre som fil", @@ -111,9 +114,7 @@ OC.L10N.register( "Delete?" : "Vil du slette?", "Could not delete record" : "Kunne ikke slette posten", "Server error" : "Tjenerfeil", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Del", + "Start" : "Start", "Loading" : "Laster", "You are not allowed to change this option, because this room is shared with you." : "Du har ikke lov til å endre dette alternativet, fordi dette rommet er delt med deg.", "Max. rooms" : "Maks. rom", diff --git a/l10n/nb.json b/l10n/nb.json index 0c15389..c550c6c 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "API URL eller hemmelighet ikke konfigurert. Kontakt administratoren din.", "BigBlueButton Integration" : "BigBlueButton-integrasjon", "BigBlueButton integration for Nextcloud" : "BigBlueButton-integrasjon for Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Denne appen lar deg opprette møter med en ekstern installasjon av [BigBlueButton](https://bigbluebutton.org).\n\n* **Romoppsett** Lag flere romkonfigurasjoner med navn, velkomstmelding …\n* **Del gjestelink** Del romlenken med alle gjestene dine\n* **Del moderatorlink** Inviter moderatorer til rommet\n* **Del rom** Del rom med medlemmer, grupper eller kretser\n* **Egendefinert presentasjon** Start et rom med en valgt presentasjon fra filnettleseren\n* **Administrer opptak** Se, del og slett opptak for rommene dine\n* **Restriksjoner** Begrens romoppretting til visse grupper\n* **Aktiviteter** Få en oversikt over romaktivitetene dine\n\nHurtigstartguide og mer informasjon i vår [readme](https://github.com/sualko/cloud_bbb).\nLiker du denne applikasjonen? Gi noe tilbake til åpen kildekode-fellesskapet og sjekk ut vår\n[måter å bidra på](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nUtvikler søkes! Hvis du har tid ville det vært kjempebra om du kunne bidra til å forbedre denne applikasjonen.\n\n*Denne appen integrerer BigBlueButton og er ikke godkjent eller sertifisert av BigBlueButton Inc. BigBlueButton og BigBlueButton-logoen er varemerker for BigBlueButton Inc.*", "Room not found" : "Rom ikke funnet", "The room could not be found. Maybe it was deleted?" : "Rommet ble ikke funnet. Kanskje den ble slettet?", "Back to %s" : "Tilbake til %s", @@ -54,6 +53,8 @@ "Group" : "Gruppe", "Searching" : "Søker", "No matches" : "Ingen treff", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Navn", "Access" : "Tilgang", "Max" : "Maks", @@ -67,7 +68,7 @@ "This message is shown to all users in the chat area after they joined." : "Denne meldingen vises til alle brukere i chatteområdet etter at de ble med.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Setter en grense for antall deltakere for dette rommet. Null betyr at det ikke er noen grense.", "If enabled, the moderator is able to start the recording." : "Hvis aktivert, kan moderatoren starte opptaket.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Offentlig: Alle som kjenner lenken kan bli med. Passord: Gjestene må oppgi et passord. Venterom: En moderator må godta hver gjest før de kan bli med. Internt: Bare Nextcloud-brukere kan bli med.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Forklaring av de ulike begrepene som utgjør tilgangsalternativer :
- Offentlig: Alle med lenken kan bli med.-
Intern: Kun Nextcloud-brukere kan bli med.-
Passord: Kun gjester med passordet kan bli med..-
Venterom: En moderator må godta hver gjest før de kan bli med.-
Begrenset : Bare utvalgte brukere og grupper har tilgang til dette rommet.", "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." : "En moderator kan administrere alle deltakerne i et møte, inkludert sparking, demping eller valg av presentatør. Brukere med rollen moderator kan også lukke et møte eller endre standardinnstillingene.", "If enabled, normal users have to wait until a moderator is in the room." : "Hvis aktivert, må vanlige brukere vente til en moderator er i rommet.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Hvis aktivert, genereres en moderator-URL som gir tilgang med moderatortillatelse.", @@ -80,6 +81,7 @@ "Room URL" : "Rom URL", "Welcome" : "Velkommen", "Participant limit" : "Deltakergrense", + "Sharing" : "Deling", "Every participant is moderator" : "Hver deltaker er moderator", "Moderator access via URL" : "Moderatortilgang via URL", "Miscellaneous" : "Diverse", @@ -91,6 +93,7 @@ "Join meeting muted" : "Bli med i møte med lyden", "Room name" : "Romnavn", "Create" : "Ny", + "Published" : "Publisert", "Open recording" : "Åpne opptak", "Copy to clipboard" : "Kopiert til utklippstavlen", "Save as file" : "Lagre som fil", @@ -109,9 +112,7 @@ "Delete?" : "Vil du slette?", "Could not delete record" : "Kunne ikke slette posten", "Server error" : "Tjenerfeil", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Del", + "Start" : "Start", "Loading" : "Laster", "You are not allowed to change this option, because this room is shared with you." : "Du har ikke lov til å endre dette alternativet, fordi dette rommet er delt med deg.", "Max. rooms" : "Maks. rom", diff --git a/l10n/nl.js b/l10n/nl.js index 51cbf43..422ea04 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -21,7 +21,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API URL of geheim niet geconfigureerd. Neem contact op met uw beheerder.", "BigBlueButton Integration" : "BigBlueButton Integratie", "BigBlueButton integration for Nextcloud" : "BigBlueButton integratie voor Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Deze app maakt het mogelijk om vergaderingen te beleggen met een externe installatie van [BigBlueButton] (https://bigbluebutton.org).\n\n* ** Kameropstelling ** Maak meerdere kameropstellingen met naam, welkomstbericht ...\n* ** Gastlink delen ** Deel de link naar de kamer met al je gasten\n* ** Deel moderatorlink ** Nodig moderators uit in de ruimte\n* ** Kamers delen ** Kamers delen met leden, groepen of kringen\n* ** Aangepaste presentatie ** Start een ruimte met een geselecteerde presentatie vanuit je bestandsbrowser\n* ** Beheer opnames ** Bekijk, deel en verwijder opnames voor je kamers\n* ** Beperkingen ** Beperk het maken van kamers tot bepaalde groepen\n* ** Activiteiten ** Krijg een overzicht van je kameractiviteiten\n\nSnelstartgids en meer informatie in onze [readme] (https://github.com/sualko/cloud_bbb).\nVind je deze applicatie leuk? Geef iets terug aan de open source-gemeenschap en bekijk onze\n[manieren om bij te dragen] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nOntwikkelaar gezocht! Als je tijd hebt, zou het geweldig zijn als je zou kunnen helpen om deze applicatie te verbeteren.\n\n* Deze app integreert BigBlueButton en wordt niet erkend of gecertificeerd door BigBlueButton Inc. BigBlueButton en het BigBlueButton-logo zijn handelsmerken van BigBlueButton Inc. *", "Room not found" : "Ruimte niet gevonden", "The room could not be found. Maybe it was deleted?" : "De ruimte kon niet gevonden worden. Misschien is die recent verwijderd?", "Back to %s" : "Terug naar %s", @@ -55,6 +54,8 @@ OC.L10N.register( "Group" : "Groep", "Searching" : "Zoeken", "No matches" : "Geen overeenkomsten", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Naam", "Access" : "Toegang", "Max" : "Max", @@ -68,7 +69,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Dit bericht wordt getoond aan alle gebruikers in chat nadat ze zich hebben aangemeld.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Stelt een limiet in voor het aantal deelnemers in deze kamer. Nul betekent dat er geen limiet is.", "If enabled, the moderator is able to start the recording." : "Als dit is ingeschakeld, kan de moderator de opname starten.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Openbaar: iedereen die de link kent, kan deelnemen. Wachtwoord: gasten moeten een wachtwoord opgeven. Wachtkamer: een moderator moet elke gast accepteren voordat ze kunnen deelnemen. Intern: alleen Nextcloud-gebruikers kunnen lid worden.", "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." : "Een moderator kan alle deelnemers aan een vergadering beheren, inclusief schoppen, dempen of het selecteren van een presentator. Gebruikers met de rolmoderator kunnen ook een vergadering sluiten of de standaardinstellingen wijzigen.", "If enabled, normal users have to wait until a moderator is in the room." : "Wanneer ingeschakeld, moeten gewone gebruikers wachten tot er een moderator is.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Wanneer ingeschakeld, wordt een moderator-URL gegenereerd die toegang mogelijk maakt met moderatormachtiging.", @@ -81,6 +81,7 @@ OC.L10N.register( "Room URL" : "Kamer URL", "Welcome" : "Welkom", "Participant limit" : "Deelnamelimiet", + "Sharing" : "Delen", "Every participant is moderator" : "Elke deelnemer is moderator", "Moderator access via URL" : "Moderator-toegang via URL", "Miscellaneous" : "Diversen", @@ -92,6 +93,7 @@ OC.L10N.register( "Join meeting muted" : "Neem gedempt aan vergadering deel", "Room name" : "Kamernaam", "Create" : "Creëren", + "Published" : "Gepubliceerd", "Open recording" : "Open opname", "Copy to clipboard" : "Kopiëren naar het klembord", "Save as file" : "Opslaan als bestand", @@ -110,9 +112,7 @@ OC.L10N.register( "Delete?" : "Verwijderen?", "Could not delete record" : "Kon record niet verwijderen", "Server error" : "Serverfout", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Delen", + "Start" : "Start", "Loading" : "Laden", "You are not allowed to change this option, because this room is shared with you." : "U mag deze optie niet wijzigen, omdat deze kamer met u wordt gedeeld.", "Max. rooms" : "Max. ruimtes", diff --git a/l10n/nl.json b/l10n/nl.json index b596ae8..ac1a36f 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -19,7 +19,6 @@ "API URL or secret not configured. Please contact your administrator." : "API URL of geheim niet geconfigureerd. Neem contact op met uw beheerder.", "BigBlueButton Integration" : "BigBlueButton Integratie", "BigBlueButton integration for Nextcloud" : "BigBlueButton integratie voor Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Deze app maakt het mogelijk om vergaderingen te beleggen met een externe installatie van [BigBlueButton] (https://bigbluebutton.org).\n\n* ** Kameropstelling ** Maak meerdere kameropstellingen met naam, welkomstbericht ...\n* ** Gastlink delen ** Deel de link naar de kamer met al je gasten\n* ** Deel moderatorlink ** Nodig moderators uit in de ruimte\n* ** Kamers delen ** Kamers delen met leden, groepen of kringen\n* ** Aangepaste presentatie ** Start een ruimte met een geselecteerde presentatie vanuit je bestandsbrowser\n* ** Beheer opnames ** Bekijk, deel en verwijder opnames voor je kamers\n* ** Beperkingen ** Beperk het maken van kamers tot bepaalde groepen\n* ** Activiteiten ** Krijg een overzicht van je kameractiviteiten\n\nSnelstartgids en meer informatie in onze [readme] (https://github.com/sualko/cloud_bbb).\nVind je deze applicatie leuk? Geef iets terug aan de open source-gemeenschap en bekijk onze\n[manieren om bij te dragen] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nOntwikkelaar gezocht! Als je tijd hebt, zou het geweldig zijn als je zou kunnen helpen om deze applicatie te verbeteren.\n\n* Deze app integreert BigBlueButton en wordt niet erkend of gecertificeerd door BigBlueButton Inc. BigBlueButton en het BigBlueButton-logo zijn handelsmerken van BigBlueButton Inc. *", "Room not found" : "Ruimte niet gevonden", "The room could not be found. Maybe it was deleted?" : "De ruimte kon niet gevonden worden. Misschien is die recent verwijderd?", "Back to %s" : "Terug naar %s", @@ -53,6 +52,8 @@ "Group" : "Groep", "Searching" : "Zoeken", "No matches" : "Geen overeenkomsten", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Naam", "Access" : "Toegang", "Max" : "Max", @@ -66,7 +67,6 @@ "This message is shown to all users in the chat area after they joined." : "Dit bericht wordt getoond aan alle gebruikers in chat nadat ze zich hebben aangemeld.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Stelt een limiet in voor het aantal deelnemers in deze kamer. Nul betekent dat er geen limiet is.", "If enabled, the moderator is able to start the recording." : "Als dit is ingeschakeld, kan de moderator de opname starten.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Openbaar: iedereen die de link kent, kan deelnemen. Wachtwoord: gasten moeten een wachtwoord opgeven. Wachtkamer: een moderator moet elke gast accepteren voordat ze kunnen deelnemen. Intern: alleen Nextcloud-gebruikers kunnen lid worden.", "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." : "Een moderator kan alle deelnemers aan een vergadering beheren, inclusief schoppen, dempen of het selecteren van een presentator. Gebruikers met de rolmoderator kunnen ook een vergadering sluiten of de standaardinstellingen wijzigen.", "If enabled, normal users have to wait until a moderator is in the room." : "Wanneer ingeschakeld, moeten gewone gebruikers wachten tot er een moderator is.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Wanneer ingeschakeld, wordt een moderator-URL gegenereerd die toegang mogelijk maakt met moderatormachtiging.", @@ -79,6 +79,7 @@ "Room URL" : "Kamer URL", "Welcome" : "Welkom", "Participant limit" : "Deelnamelimiet", + "Sharing" : "Delen", "Every participant is moderator" : "Elke deelnemer is moderator", "Moderator access via URL" : "Moderator-toegang via URL", "Miscellaneous" : "Diversen", @@ -90,6 +91,7 @@ "Join meeting muted" : "Neem gedempt aan vergadering deel", "Room name" : "Kamernaam", "Create" : "Creëren", + "Published" : "Gepubliceerd", "Open recording" : "Open opname", "Copy to clipboard" : "Kopiëren naar het klembord", "Save as file" : "Opslaan als bestand", @@ -108,9 +110,7 @@ "Delete?" : "Verwijderen?", "Could not delete record" : "Kon record niet verwijderen", "Server error" : "Serverfout", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Delen", + "Start" : "Start", "Loading" : "Laden", "You are not allowed to change this option, because this room is shared with you." : "U mag deze optie niet wijzigen, omdat deze kamer met u wordt gedeeld.", "Max. rooms" : "Max. ruimtes", diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index f3b9387..f850aff 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -7,10 +7,11 @@ OC.L10N.register( "Group" : "Gruppe", "Name" : "Namn", "Edit" : "Endra", + "Sharing" : "Deling", "Create" : "Lag", + "Published" : "Publisert", "Delete" : "Ta bort", "Error" : "Feil", - "Share" : "Del", "Loading" : "Loading" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index cdad964..7c8fa2a 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -5,10 +5,11 @@ "Group" : "Gruppe", "Name" : "Namn", "Edit" : "Endra", + "Sharing" : "Deling", "Create" : "Lag", + "Published" : "Publisert", "Delete" : "Ta bort", "Error" : "Feil", - "Share" : "Del", "Loading" : "Loading" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/oc.js b/l10n/oc.js index 75a1277..d4c060f 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -16,12 +16,14 @@ OC.L10N.register( "Group" : "Grop", "Searching" : "Recèrca", "No matches" : "Cap de resultat correspond pas", + "moderator" : "moderator", "Name" : "Nom", "Max" : "Max", "Record" : "Enregistrar", "Recordings" : "Enregistraments", "Edit" : "Modificar", "Welcome" : "Benvengut", + "Sharing" : "Partiment", "Recording" : "Enregistrament", "Room name" : "Nom de la sala", "Create" : "Crear", @@ -33,8 +35,6 @@ OC.L10N.register( "Delete?" : "Suprimir ?", "Could not delete record" : "Supression de l’enregistrament impossibla", "Server error" : "Error del servidor", - "moderator" : "moderator", - "Share" : "Partejar", "Loading" : "Loading", "Settings saved" : "Paramètres enregistrats", "API secret is invalid" : "Secret API invalid" diff --git a/l10n/oc.json b/l10n/oc.json index d57e741..f39a9b4 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -14,12 +14,14 @@ "Group" : "Grop", "Searching" : "Recèrca", "No matches" : "Cap de resultat correspond pas", + "moderator" : "moderator", "Name" : "Nom", "Max" : "Max", "Record" : "Enregistrar", "Recordings" : "Enregistraments", "Edit" : "Modificar", "Welcome" : "Benvengut", + "Sharing" : "Partiment", "Recording" : "Enregistrament", "Room name" : "Nom de la sala", "Create" : "Crear", @@ -31,8 +33,6 @@ "Delete?" : "Suprimir ?", "Could not delete record" : "Supression de l’enregistrament impossibla", "Server error" : "Error del servidor", - "moderator" : "moderator", - "Share" : "Partejar", "Loading" : "Loading", "Settings saved" : "Paramètres enregistrats", "API secret is invalid" : "Secret API invalid" diff --git a/l10n/pl.js b/l10n/pl.js index fdd2a25..70a361a 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "Adres URL interfejsu API lub tajny klucz nie jest skonfigurowany. Skontaktuj się z administratorem.", "BigBlueButton Integration" : "BigBlueButton Integration", "BigBlueButton integration for Nextcloud" : "Integracja BigBlueButton dla Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Aplikacja pozwala na tworzenie spotkań z zewnętrzną instalacją [BigBlueButton](https://bigbluebutton.org).\n\n* **Konfiguracja pokoju** Utwórz wiele konfiguracji pokoju z nazwą, wiadomością powitalną…\n* **Udostępnij link dla gościa** Udostępnij link do pokoju wszystkim swoim gościom\n* **Udostępnij link moderatora** Zaproś moderatorów do pokoju\n* **Udostępnianie pokoi** Udostępnianie pokoi członkom, grupom lub kręgom\n* **Własna prezentacja** Rozpocznij pokój z wybraną prezentacją w przeglądarce plików\n* **Zarządzaj nagraniami** Przeglądaj, udostępniaj i usuwaj nagrania do swoich pokoi\n* **Ograniczenia** Ogranicz tworzenie pokoi dla określonych grup\n* **Zajęcia** Przejrzyj ogólny zarys swoich zajęć w pokoju\n\nSkrócony przewodnik i dalsze informacje w naszym [readme](https://github.com/sualko/cloud_bbb)\nPodoba się Tobie aplikacja? Daj coś społeczności otwartego źródła i sprawdź nasze\n[sposoby współtworzenia](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nPoszukiwany deweloper! Jeśli masz czas, byłoby wspaniale, gdybyś mógł pomóc ulepszyć aplikację.\n\n*Ta aplikacja integruje BigBlueButton i nie jest zatwierdzona ani certyfikowana przez BigBlueButton Inc. BigBlueButton i logo BigBlueButton są znakami towarowymi firmy BigBlueButton Inc.*", "Room not found" : "Nie znaleziono pokoju", "The room could not be found. Maybe it was deleted?" : "Nie można znaleźć pokoju. Może został usunięty?", "Back to %s" : "Powrót do %s", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "Grupa", "Searching" : "Wyszukiwanie", "No matches" : "Nie pasuje", + "admin" : "administrator", + "moderator" : "moderator", "Name" : "Nazwa", "Access" : "Dostęp", "Max" : "Maks.", @@ -69,7 +70,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Ta wiadomość jest wyświetlana wszystkim użytkownikom w obszarze rozmowy po dołączeniu.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Ustawia limit liczby uczestników w tym pokoju. Zero oznacza o braku limitu.", "If enabled, the moderator is able to start the recording." : "Jeśli jest włączone, moderator może rozpocząć nagrywanie.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publiczny: każdy, kto zna link, może dołączyć. Hasło: Goście muszą podać hasło. Poczekalnia: moderator musi zaakceptować każdego gościa, aby mógł dołączyć. Wewnętrzny: tylko użytkownicy Nextcloud mogą dołączyć.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderator może zarządzać wszystkimi uczestnikami spotkania, w tym blokować, wyciszać lub wybierać prowadzącego dyskusję. Użytkownicy za pomocą moderatora mogą również zamknąć spotkanie lub zmienić ustawienia domyślne.", "If enabled, normal users have to wait until a moderator is in the room." : "Jeśli jest włączone, zwykli użytkownicy muszą czekać, aż moderator pojawi się w pokoju.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Jeśli jest włączone, generowany jest adres URL moderatora, który umożliwia dostęp za jego zgodą.", @@ -82,6 +82,7 @@ OC.L10N.register( "Room URL" : "Adres URL pokoju", "Welcome" : "Witaj", "Participant limit" : "Limit uczestnika", + "Sharing" : "Udostępnianie", "Every participant is moderator" : "Każdy uczestnik jest moderatorem", "Moderator access via URL" : "Dostęp moderatora przez adres URL", "Miscellaneous" : "Różne", @@ -93,6 +94,7 @@ OC.L10N.register( "Join meeting muted" : "Dołącz do spotkania jako wyciszony", "Room name" : "Nazwa pokoju", "Create" : "Utwórz", + "Published" : "Opublikowane", "Open recording" : "Otwórz nagranie", "Copy to clipboard" : "Kopiuj do schowka", "Save as file" : "Zapisz jako plik", @@ -111,9 +113,7 @@ OC.L10N.register( "Delete?" : "Usunąć?", "Could not delete record" : "Nie można usunąć nagrania", "Server error" : "Błąd serwera", - "moderator" : "moderator", - "admin" : "administrator", - "Share" : "Udostępnij", + "Start" : "Start", "Loading" : "Wczytywanie", "You are not allowed to change this option, because this room is shared with you." : "Nie możesz zmienić tej opcji, ponieważ ten pokój jest Tobie udostępniony.", "Max. rooms" : "Maks. pokoji", diff --git a/l10n/pl.json b/l10n/pl.json index a92dcc8..87048f6 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "Adres URL interfejsu API lub tajny klucz nie jest skonfigurowany. Skontaktuj się z administratorem.", "BigBlueButton Integration" : "BigBlueButton Integration", "BigBlueButton integration for Nextcloud" : "Integracja BigBlueButton dla Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Aplikacja pozwala na tworzenie spotkań z zewnętrzną instalacją [BigBlueButton](https://bigbluebutton.org).\n\n* **Konfiguracja pokoju** Utwórz wiele konfiguracji pokoju z nazwą, wiadomością powitalną…\n* **Udostępnij link dla gościa** Udostępnij link do pokoju wszystkim swoim gościom\n* **Udostępnij link moderatora** Zaproś moderatorów do pokoju\n* **Udostępnianie pokoi** Udostępnianie pokoi członkom, grupom lub kręgom\n* **Własna prezentacja** Rozpocznij pokój z wybraną prezentacją w przeglądarce plików\n* **Zarządzaj nagraniami** Przeglądaj, udostępniaj i usuwaj nagrania do swoich pokoi\n* **Ograniczenia** Ogranicz tworzenie pokoi dla określonych grup\n* **Zajęcia** Przejrzyj ogólny zarys swoich zajęć w pokoju\n\nSkrócony przewodnik i dalsze informacje w naszym [readme](https://github.com/sualko/cloud_bbb)\nPodoba się Tobie aplikacja? Daj coś społeczności otwartego źródła i sprawdź nasze\n[sposoby współtworzenia](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nPoszukiwany deweloper! Jeśli masz czas, byłoby wspaniale, gdybyś mógł pomóc ulepszyć aplikację.\n\n*Ta aplikacja integruje BigBlueButton i nie jest zatwierdzona ani certyfikowana przez BigBlueButton Inc. BigBlueButton i logo BigBlueButton są znakami towarowymi firmy BigBlueButton Inc.*", "Room not found" : "Nie znaleziono pokoju", "The room could not be found. Maybe it was deleted?" : "Nie można znaleźć pokoju. Może został usunięty?", "Back to %s" : "Powrót do %s", @@ -54,6 +53,8 @@ "Group" : "Grupa", "Searching" : "Wyszukiwanie", "No matches" : "Nie pasuje", + "admin" : "administrator", + "moderator" : "moderator", "Name" : "Nazwa", "Access" : "Dostęp", "Max" : "Maks.", @@ -67,7 +68,6 @@ "This message is shown to all users in the chat area after they joined." : "Ta wiadomość jest wyświetlana wszystkim użytkownikom w obszarze rozmowy po dołączeniu.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Ustawia limit liczby uczestników w tym pokoju. Zero oznacza o braku limitu.", "If enabled, the moderator is able to start the recording." : "Jeśli jest włączone, moderator może rozpocząć nagrywanie.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Publiczny: każdy, kto zna link, może dołączyć. Hasło: Goście muszą podać hasło. Poczekalnia: moderator musi zaakceptować każdego gościa, aby mógł dołączyć. Wewnętrzny: tylko użytkownicy Nextcloud mogą dołączyć.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderator może zarządzać wszystkimi uczestnikami spotkania, w tym blokować, wyciszać lub wybierać prowadzącego dyskusję. Użytkownicy za pomocą moderatora mogą również zamknąć spotkanie lub zmienić ustawienia domyślne.", "If enabled, normal users have to wait until a moderator is in the room." : "Jeśli jest włączone, zwykli użytkownicy muszą czekać, aż moderator pojawi się w pokoju.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Jeśli jest włączone, generowany jest adres URL moderatora, który umożliwia dostęp za jego zgodą.", @@ -80,6 +80,7 @@ "Room URL" : "Adres URL pokoju", "Welcome" : "Witaj", "Participant limit" : "Limit uczestnika", + "Sharing" : "Udostępnianie", "Every participant is moderator" : "Każdy uczestnik jest moderatorem", "Moderator access via URL" : "Dostęp moderatora przez adres URL", "Miscellaneous" : "Różne", @@ -91,6 +92,7 @@ "Join meeting muted" : "Dołącz do spotkania jako wyciszony", "Room name" : "Nazwa pokoju", "Create" : "Utwórz", + "Published" : "Opublikowane", "Open recording" : "Otwórz nagranie", "Copy to clipboard" : "Kopiuj do schowka", "Save as file" : "Zapisz jako plik", @@ -109,9 +111,7 @@ "Delete?" : "Usunąć?", "Could not delete record" : "Nie można usunąć nagrania", "Server error" : "Błąd serwera", - "moderator" : "moderator", - "admin" : "administrator", - "Share" : "Udostępnij", + "Start" : "Start", "Loading" : "Wczytywanie", "You are not allowed to change this option, because this room is shared with you." : "Nie możesz zmienić tej opcji, ponieważ ten pokój jest Tobie udostępniony.", "Max. rooms" : "Maks. pokoji", diff --git a/l10n/ps.js b/l10n/ps.js deleted file mode 100644 index d341dc5..0000000 --- a/l10n/ps.js +++ /dev/null @@ -1,13 +0,0 @@ -OC.L10N.register( - "bbb", - { - "Back to %s" : "بېرته %s ته", - "Save" : "ساتل", - "Password" : "پاسورډ", - "Hello %s" : "سلامونه %s", - "Name" : "نوم", - "Delete" : "ړنګول", - "Error" : "شسیب", - "Share" : "شریکول" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ps.json b/l10n/ps.json deleted file mode 100644 index 6bbc070..0000000 --- a/l10n/ps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ "translations": { - "Back to %s" : "بېرته %s ته", - "Save" : "ساتل", - "Password" : "پاسورډ", - "Hello %s" : "سلامونه %s", - "Name" : "نوم", - "Delete" : "ړنګول", - "Error" : "شسیب", - "Share" : "شریکول" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 5d4efdd..a339426 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "URL ou senha da API não configurada. Entre em contato com o administrador.", "BigBlueButton Integration" : "Integração BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integração 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Este aplicativo permite criar reuniões com uma instalação externa de [BigBlueButton] (https://bigbluebutton.org). \n\n* **Configuração da sala** Crie várias configurações de sala com nome, mensagem de boas-vindas ...\n* **Compartilhe o link de convidado** Compartilhe o link da sala com todos os seus convidados\n* **Compartilhe o link de moderador** Convide moderadores para a sala\n* **Compartilhe salas** Compartilhe salas com membros, grupos ou círculos\n* **Apresentação personalizada** Comece uma sala com uma apresentação selecionada em seu navegador de arquivos\n* **Gerencie as gravações** Visualize, compartilhe e exclua as gravações das suas salas\n* **Restrições** Restrinja a criação de salas a certos grupos\n* **Atividades** Obtenha uma visão geral de suas atividades de sala\n\nGuia de início rápido e mais informações em nosso [leiame] (https://github.com/sualko/cloud_bbb).\nVocê gosta deste aplicativo? Dê algo em troca para a comunidade de código aberto e confira nosso guia \n[formas de contribuir] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nProcura-se desenvolvedor! Se tiver tempo, seria incrível se você pudesse ajudar a melhorar este aplicativo.\n\n* Este aplicativo integra BigBlueButton e não é endossado ou certificado por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton são marcas registradas 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.*" : "Este aplicativo permite criar reuniões com uma instalação externa de [bigbluebutton] (https://bigbluebutton.org) .\n\n*** Configuração da sala ** Crie várias configurações de salas com nome, mensagem de boas -vindas… \n*** Compartilhe o link do convidado ** Compartilhe o link da sala com todos os seus convidados\n*** Link do moderador de compartilhamento ** Convide moderadores para a sala\n*** Compartilhe quartos ** Compartilhe quartos com membros, grupos ou círculos\n*** Apresentação personalizada ** Inicie uma sala com uma apresentação selecionada do seu navegador de arquivos\n*** Gerenciar gravações ** Visualizar, compartilhar e excluir gravações para seus quartos\n*** Restrições ** Restrinja a criação da sala a certos grupos\n*** Atividades ** Obtenha uma visão geral das atividades do seu quarto\n\nGuia de início rápido e informações adicionais em nosso [ReadMe] (https://github.com/littleredbutton/cloud_bbb).\nVocê gosta deste aplicativo? Devolver algo à comunidade de código aberto e check -out nossa \n[maneiras de contribuir] (https://github.com/littleredbutton/cloud_bb/blob/master/.github/contributing.md) .\n\nOs colaboradores são bem -vindos! Se você tiver tempo, seria incrível se você pudesse ajudar a aprimorar este aplicativo.\n\n*Este aplicativo integra o BigBluebutton e não é endossado ou certificado pelo BigBluebutton Inc. BigBluebutton e o logotipo BigBluebutton são marcas comerciais da BigBluebutton Inc.*", "Room not found" : "Sala não encontrada", "The room could not be found. Maybe it was deleted?" : "A sala não foi encontrada. Foi excluída?", "Back to %s" : "Voltar para %s", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Grupo", "Searching" : "Pesquisando", "No matches" : "Sem correspondência", + "admin" : "admin", + "moderator" : "moderador", + "user" : "usuário", "Name" : "Nome", "Access" : "Acesso", "Max" : "Máx", @@ -69,7 +72,7 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Esta mensagem é mostrada a todos os usuários na área de bate-papo após a adesão.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Define um limite do número de participantes para esta sala. Zero significa sem limite.", "If enabled, the moderator is able to start the recording." : "Se ativado, o moderador poderá iniciar a gravação.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: Todos que têm o link podem participar. Senha: Os convidados devem fornecer uma senha. Sala de espera: Um moderador deve aceitar cada convidado para que possa participar. Interno: Somente usuários Nextcloud podem participar.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explicação dos diferentes conceitos que constituem opções de acesso:
- Público: Qualquer pessoa que tenha o link pode participar.-
Interno: apenas usuários Nextcloud podem ingressar.-
Senha: Somente convidados que possuem a senha podem entrar..-
Sala de espera: um moderador deve aceitar cada convidado antes que eles possam entrar.-
Restrito: somente usuários e grupos selecionados podem acessar 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." : "Um moderador é capaz de gerenciar todos os participantes de uma reunião, incluindo remover, silenciar ou selecionar um apresentador. Os usuários com a função de moderador também podem fechar uma reunião ou alterar as configurações padrão.", "If enabled, normal users have to wait until a moderator is in the room." : "Se ativado, os usuários normais têm que esperar até que um moderador esteja na sala.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Se ativado, uma URL de moderador é gerada, liberando o acesso com permissão do moderador.", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "URL da sala ", "Welcome" : "Bem-vindo", "Participant limit" : "Limite de participantes", + "Sharing" : "Compartilhando", "Every participant is moderator" : "Todo participante é moderador", "Moderator access via URL" : "Acesso de moderador via URL", "Miscellaneous" : "Diversos", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "Entrar na reunião sem som", "Room name" : "Nome da sala", "Create" : "Criar", + "Published" : "Publicado", "Open recording" : "Abrir gravação", "Copy to clipboard" : "Copiar para a área de transferência", "Save as file" : "Salvar como arquivo", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Excluir?", "Could not delete record" : "Não foi possível excluir a gravação", "Server error" : "Erro no servidor", - "moderator" : "moderador", - "admin" : "admin", - "Share" : "Compartilhar", + "Could not modify publishing state" : "Não foi possível modificar o estado de publicação", + "Open room" : "Abrir sala", + "Start" : "Iniciar", + "Clone room" : "Clonar sala", "Loading" : "Carregando", "You are not allowed to change this option, because this room is shared with you." : "Você não tem permissão para alterar esta opção, porque esta sala é compartilhada com você.", "Max. rooms" : "Máximo de salas", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index fd1ab45..018e014 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "URL ou senha da API não configurada. Entre em contato com o administrador.", "BigBlueButton Integration" : "Integração BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integração 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Este aplicativo permite criar reuniões com uma instalação externa de [BigBlueButton] (https://bigbluebutton.org). \n\n* **Configuração da sala** Crie várias configurações de sala com nome, mensagem de boas-vindas ...\n* **Compartilhe o link de convidado** Compartilhe o link da sala com todos os seus convidados\n* **Compartilhe o link de moderador** Convide moderadores para a sala\n* **Compartilhe salas** Compartilhe salas com membros, grupos ou círculos\n* **Apresentação personalizada** Comece uma sala com uma apresentação selecionada em seu navegador de arquivos\n* **Gerencie as gravações** Visualize, compartilhe e exclua as gravações das suas salas\n* **Restrições** Restrinja a criação de salas a certos grupos\n* **Atividades** Obtenha uma visão geral de suas atividades de sala\n\nGuia de início rápido e mais informações em nosso [leiame] (https://github.com/sualko/cloud_bbb).\nVocê gosta deste aplicativo? Dê algo em troca para a comunidade de código aberto e confira nosso guia \n[formas de contribuir] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nProcura-se desenvolvedor! Se tiver tempo, seria incrível se você pudesse ajudar a melhorar este aplicativo.\n\n* Este aplicativo integra BigBlueButton e não é endossado ou certificado por BigBlueButton Inc. BigBlueButton e o logotipo de BigBlueButton são marcas registradas 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.*" : "Este aplicativo permite criar reuniões com uma instalação externa de [bigbluebutton] (https://bigbluebutton.org) .\n\n*** Configuração da sala ** Crie várias configurações de salas com nome, mensagem de boas -vindas… \n*** Compartilhe o link do convidado ** Compartilhe o link da sala com todos os seus convidados\n*** Link do moderador de compartilhamento ** Convide moderadores para a sala\n*** Compartilhe quartos ** Compartilhe quartos com membros, grupos ou círculos\n*** Apresentação personalizada ** Inicie uma sala com uma apresentação selecionada do seu navegador de arquivos\n*** Gerenciar gravações ** Visualizar, compartilhar e excluir gravações para seus quartos\n*** Restrições ** Restrinja a criação da sala a certos grupos\n*** Atividades ** Obtenha uma visão geral das atividades do seu quarto\n\nGuia de início rápido e informações adicionais em nosso [ReadMe] (https://github.com/littleredbutton/cloud_bbb).\nVocê gosta deste aplicativo? Devolver algo à comunidade de código aberto e check -out nossa \n[maneiras de contribuir] (https://github.com/littleredbutton/cloud_bb/blob/master/.github/contributing.md) .\n\nOs colaboradores são bem -vindos! Se você tiver tempo, seria incrível se você pudesse ajudar a aprimorar este aplicativo.\n\n*Este aplicativo integra o BigBluebutton e não é endossado ou certificado pelo BigBluebutton Inc. BigBluebutton e o logotipo BigBluebutton são marcas comerciais da BigBluebutton Inc.*", "Room not found" : "Sala não encontrada", "The room could not be found. Maybe it was deleted?" : "A sala não foi encontrada. Foi excluída?", "Back to %s" : "Voltar para %s", @@ -54,6 +54,9 @@ "Group" : "Grupo", "Searching" : "Pesquisando", "No matches" : "Sem correspondência", + "admin" : "admin", + "moderator" : "moderador", + "user" : "usuário", "Name" : "Nome", "Access" : "Acesso", "Max" : "Máx", @@ -67,7 +70,7 @@ "This message is shown to all users in the chat area after they joined." : "Esta mensagem é mostrada a todos os usuários na área de bate-papo após a adesão.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Define um limite do número de participantes para esta sala. Zero significa sem limite.", "If enabled, the moderator is able to start the recording." : "Se ativado, o moderador poderá iniciar a gravação.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Público: Todos que têm o link podem participar. Senha: Os convidados devem fornecer uma senha. Sala de espera: Um moderador deve aceitar cada convidado para que possa participar. Interno: Somente usuários Nextcloud podem participar.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Explicação dos diferentes conceitos que constituem opções de acesso:
- Público: Qualquer pessoa que tenha o link pode participar.-
Interno: apenas usuários Nextcloud podem ingressar.-
Senha: Somente convidados que possuem a senha podem entrar..-
Sala de espera: um moderador deve aceitar cada convidado antes que eles possam entrar.-
Restrito: somente usuários e grupos selecionados podem acessar 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." : "Um moderador é capaz de gerenciar todos os participantes de uma reunião, incluindo remover, silenciar ou selecionar um apresentador. Os usuários com a função de moderador também podem fechar uma reunião ou alterar as configurações padrão.", "If enabled, normal users have to wait until a moderator is in the room." : "Se ativado, os usuários normais têm que esperar até que um moderador esteja na sala.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Se ativado, uma URL de moderador é gerada, liberando o acesso com permissão do moderador.", @@ -80,6 +83,7 @@ "Room URL" : "URL da sala ", "Welcome" : "Bem-vindo", "Participant limit" : "Limite de participantes", + "Sharing" : "Compartilhando", "Every participant is moderator" : "Todo participante é moderador", "Moderator access via URL" : "Acesso de moderador via URL", "Miscellaneous" : "Diversos", @@ -91,6 +95,7 @@ "Join meeting muted" : "Entrar na reunião sem som", "Room name" : "Nome da sala", "Create" : "Criar", + "Published" : "Publicado", "Open recording" : "Abrir gravação", "Copy to clipboard" : "Copiar para a área de transferência", "Save as file" : "Salvar como arquivo", @@ -109,9 +114,10 @@ "Delete?" : "Excluir?", "Could not delete record" : "Não foi possível excluir a gravação", "Server error" : "Erro no servidor", - "moderator" : "moderador", - "admin" : "admin", - "Share" : "Compartilhar", + "Could not modify publishing state" : "Não foi possível modificar o estado de publicação", + "Open room" : "Abrir sala", + "Start" : "Iniciar", + "Clone room" : "Clonar sala", "Loading" : "Carregando", "You are not allowed to change this option, because this room is shared with you." : "Você não tem permissão para alterar esta opção, porque esta sala é compartilhada com você.", "Max. rooms" : "Máximo de salas", diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index a94ad43..784b904 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -15,6 +15,7 @@ OC.L10N.register( "Join" : "Aderir", "Hello %s" : "Olá %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nome", "Access" : "Acesso", "Max" : "Máx.", @@ -22,9 +23,11 @@ OC.L10N.register( "Recordings" : "Gravações", "Edit" : "Editar", "Welcome" : "Bem-vindo", + "Sharing" : "Partilha", "Miscellaneous" : "Diversos", "Room name" : "Nome da sala", "Create" : "Criar", + "Published" : "Publicado", "Copy to clipboard" : "Copiar para área de transferência", "_%n participant_::_%n participants_" : ["%n participante","%n participantes","%n participantes"], "Delete" : "Eliminar", @@ -34,8 +37,7 @@ OC.L10N.register( "URL to room could not be stored." : "Não foi possível guardar o URL para a sala.", "Error" : "Erro", "Server error" : "Erro do servidor", - "moderator" : "moderador", - "Share" : "Partilhar", + "Start" : "Início", "Loading" : "A carregar", "Settings saved" : "Definições guardadas" }, diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 48ac04a..d761db7 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -13,6 +13,7 @@ "Join" : "Aderir", "Hello %s" : "Olá %s", "Group" : "Grupo", + "moderator" : "moderador", "Name" : "Nome", "Access" : "Acesso", "Max" : "Máx.", @@ -20,9 +21,11 @@ "Recordings" : "Gravações", "Edit" : "Editar", "Welcome" : "Bem-vindo", + "Sharing" : "Partilha", "Miscellaneous" : "Diversos", "Room name" : "Nome da sala", "Create" : "Criar", + "Published" : "Publicado", "Copy to clipboard" : "Copiar para área de transferência", "_%n participant_::_%n participants_" : ["%n participante","%n participantes","%n participantes"], "Delete" : "Eliminar", @@ -32,8 +35,7 @@ "URL to room could not be stored." : "Não foi possível guardar o URL para a sala.", "Error" : "Erro", "Server error" : "Erro do servidor", - "moderator" : "moderador", - "Share" : "Partilhar", + "Start" : "Início", "Loading" : "A carregar", "Settings saved" : "Definições guardadas" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/ro.js b/l10n/ro.js index c113e02..4683a63 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -14,13 +14,14 @@ OC.L10N.register( "Access" : "Acces", "Edit" : "Editare", "Welcome" : "Bun venit", + "Sharing" : "Partajare", "Miscellaneous" : "Diverse", "Create" : "Creează", + "Published" : "Publicat", "Copy to clipboard" : "Copiază în clipboard", "Delete" : "Șterge", "Error" : "Eroare", "Server error" : "Eroare server", - "Share" : "Partajează", "Loading" : "Loading", "Settings saved" : "Setările au fost salvate" }, diff --git a/l10n/ro.json b/l10n/ro.json index 7e347db..09dc008 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -12,13 +12,14 @@ "Access" : "Acces", "Edit" : "Editare", "Welcome" : "Bun venit", + "Sharing" : "Partajare", "Miscellaneous" : "Diverse", "Create" : "Creează", + "Published" : "Publicat", "Copy to clipboard" : "Copiază în clipboard", "Delete" : "Șterge", "Error" : "Eroare", "Server error" : "Eroare server", - "Share" : "Partajează", "Loading" : "Loading", "Settings saved" : "Setările au fost salvate" },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" diff --git a/l10n/ru.js b/l10n/ru.js index 6ad52d2..f8a16d5 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API URL или секрет не настроен. Пожалуйста, свяжитесь с вашим администратором.", "BigBlueButton Integration" : "Интеграция BigBlueButton (\"большая голубая кнопка\")", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Это приложение позволяет создавать встречи с помощью внешней установки [BigBlueButton](https://bigbluebutton.org).\n\n* **Настройка комнаты** Создание нескольких конфигураций комнаты с названием, приветственным сообщением ...\n* **Общая ссылка для гостей** Поделитесь ссылкой комнаты со всеми вашими гостями.\n* **Поделиться ссылкой с модератором** Пригласить модераторов в комнату\n* **Поделиться комнатами** Поделитесь комнатами с участниками, группами или кругами.\n* **Настройка презентации** Запустите комнату, выбрав презентацию через браузер.\n* **Управление записями** Просмотр, совместное использование и удаление записей для ваших комнат\n* **Ограничения** Ограничьте создание комнаты определёнными группами\n* **Активность** Получите обзор активность вашей комнаты.\n\nКраткое руководство по запуску и дополнительная информация в [readme](https://github.com/sualko/cloud_bbb).\nВам нравится это приложение? Внесите свой вклад в сообщество с открытым исходным кодом и ознакомьтесь с нашими\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nТребуется разработчик! Если у вас есть время, было бы здорово, если бы вы могли помочь улучшить это приложение.\n\n*Это приложение интегрирует BigBlueButton и не является одобренным или сертифицированным BigBlueButton Inc. BigBlueButton и логотип BigBlueButton являются торговыми марками BigBlueButton Inc.*.", "Room not found" : "Комната не найдена", "The room could not be found. Maybe it was deleted?" : "Не удалось найти комнату. Возможно она была удалена?", "Back to %s" : "Вернуться к %s", @@ -56,6 +55,9 @@ OC.L10N.register( "Group" : "Группа", "Searching" : "Поиск", "No matches" : "Совпадений не найдено", + "admin" : "администратор", + "moderator" : "модератор", + "user" : "пользователь", "Name" : "Название", "Access" : "Доступ", "Max" : "Макс", @@ -69,7 +71,7 @@ OC.L10N.register( "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." : "Устанавливает ограничение на количество участников для этой комнаты. Ноль означает отсутствие ограничения.", "If enabled, the moderator is able to start the recording." : "Если эта функция включена, модератор сможет начать запись.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Публичный: Все, кто знает ссылку, могут присоединиться. Пароль: Гости должны предоставить пароль. Зал ожидания: Модератор должен одобрить каждого гостя, прежде чем он сможет присоединиться. Закрытый: Присоединиться могут только пользователи Nextcloud.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Объяснение различных концепций, составляющих параметры доступа:
- Публичный: присоединиться может любой, у кого есть ссылка. -
Внутренний: присоединиться могут только пользователи Nextcloud. -
Пароль: присоединиться могут только гости, у которых есть пароль. -
Комната ожидания: модератор должен принять каждого гостя, прежде чем он сможет присоединиться. -
Ограниченный: доступ к этой комнате могут получить только выбранные пользователи и группы.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Модератор может управлять всеми участниками встречи, включая удаление, отключение звука или выбор ведущего. Пользователи с правами модератора также могут прекращать встречу или изменять настройки по умолчанию.", "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-адрес модератора, он позволяет получить доступ с правами модератора.", @@ -82,6 +84,7 @@ OC.L10N.register( "Room URL" : "URL комнаты", "Welcome" : "Добро пожаловать", "Participant limit" : "Лимит участников", + "Sharing" : "Параметры публикации", "Every participant is moderator" : "Каждый участник является модератором", "Moderator access via URL" : "Доступ модератора через URL", "Miscellaneous" : "Разное", @@ -93,6 +96,7 @@ OC.L10N.register( "Join meeting muted" : "Подключение к встрече с выключенным микрофоном", "Room name" : "Название комнаты", "Create" : "Создать", + "Published" : "Опубликовано", "Open recording" : "Доступная запись", "Copy to clipboard" : "Копировать в буфер обмена", "Save as file" : "Сохранить как файл", @@ -111,9 +115,10 @@ OC.L10N.register( "Delete?" : "Удалить?", "Could not delete record" : "Не возможно удалить запись.", "Server error" : "Ошибка сервера", - "moderator" : "модератор", - "admin" : "администратор", - "Share" : "Публикация", + "Could not modify publishing state" : "Не удалось изменить состояние публикации.", + "Open room" : "Открытая комната", + "Start" : "Начало", + "Clone room" : "Клонировать комнату", "Loading" : "Загружается", "You are not allowed to change this option, because this room is shared with you." : "Вы не можете изменить эту опцию, потому что эта комната находится в совместном пользовании с вами.", "Max. rooms" : "Макс. количество комнат", diff --git a/l10n/ru.json b/l10n/ru.json index f991405..c80df0e 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "API URL или секрет не настроен. Пожалуйста, свяжитесь с вашим администратором.", "BigBlueButton Integration" : "Интеграция BigBlueButton (\"большая голубая кнопка\")", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Это приложение позволяет создавать встречи с помощью внешней установки [BigBlueButton](https://bigbluebutton.org).\n\n* **Настройка комнаты** Создание нескольких конфигураций комнаты с названием, приветственным сообщением ...\n* **Общая ссылка для гостей** Поделитесь ссылкой комнаты со всеми вашими гостями.\n* **Поделиться ссылкой с модератором** Пригласить модераторов в комнату\n* **Поделиться комнатами** Поделитесь комнатами с участниками, группами или кругами.\n* **Настройка презентации** Запустите комнату, выбрав презентацию через браузер.\n* **Управление записями** Просмотр, совместное использование и удаление записей для ваших комнат\n* **Ограничения** Ограничьте создание комнаты определёнными группами\n* **Активность** Получите обзор активность вашей комнаты.\n\nКраткое руководство по запуску и дополнительная информация в [readme](https://github.com/sualko/cloud_bbb).\nВам нравится это приложение? Внесите свой вклад в сообщество с открытым исходным кодом и ознакомьтесь с нашими\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nТребуется разработчик! Если у вас есть время, было бы здорово, если бы вы могли помочь улучшить это приложение.\n\n*Это приложение интегрирует BigBlueButton и не является одобренным или сертифицированным BigBlueButton Inc. BigBlueButton и логотип BigBlueButton являются торговыми марками BigBlueButton Inc.*.", "Room not found" : "Комната не найдена", "The room could not be found. Maybe it was deleted?" : "Не удалось найти комнату. Возможно она была удалена?", "Back to %s" : "Вернуться к %s", @@ -54,6 +53,9 @@ "Group" : "Группа", "Searching" : "Поиск", "No matches" : "Совпадений не найдено", + "admin" : "администратор", + "moderator" : "модератор", + "user" : "пользователь", "Name" : "Название", "Access" : "Доступ", "Max" : "Макс", @@ -67,7 +69,7 @@ "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." : "Устанавливает ограничение на количество участников для этой комнаты. Ноль означает отсутствие ограничения.", "If enabled, the moderator is able to start the recording." : "Если эта функция включена, модератор сможет начать запись.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Публичный: Все, кто знает ссылку, могут присоединиться. Пароль: Гости должны предоставить пароль. Зал ожидания: Модератор должен одобрить каждого гостя, прежде чем он сможет присоединиться. Закрытый: Присоединиться могут только пользователи Nextcloud.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Объяснение различных концепций, составляющих параметры доступа:
- Публичный: присоединиться может любой, у кого есть ссылка. -
Внутренний: присоединиться могут только пользователи Nextcloud. -
Пароль: присоединиться могут только гости, у которых есть пароль. -
Комната ожидания: модератор должен принять каждого гостя, прежде чем он сможет присоединиться. -
Ограниченный: доступ к этой комнате могут получить только выбранные пользователи и группы.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Модератор может управлять всеми участниками встречи, включая удаление, отключение звука или выбор ведущего. Пользователи с правами модератора также могут прекращать встречу или изменять настройки по умолчанию.", "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-адрес модератора, он позволяет получить доступ с правами модератора.", @@ -80,6 +82,7 @@ "Room URL" : "URL комнаты", "Welcome" : "Добро пожаловать", "Participant limit" : "Лимит участников", + "Sharing" : "Параметры публикации", "Every participant is moderator" : "Каждый участник является модератором", "Moderator access via URL" : "Доступ модератора через URL", "Miscellaneous" : "Разное", @@ -91,6 +94,7 @@ "Join meeting muted" : "Подключение к встрече с выключенным микрофоном", "Room name" : "Название комнаты", "Create" : "Создать", + "Published" : "Опубликовано", "Open recording" : "Доступная запись", "Copy to clipboard" : "Копировать в буфер обмена", "Save as file" : "Сохранить как файл", @@ -109,9 +113,10 @@ "Delete?" : "Удалить?", "Could not delete record" : "Не возможно удалить запись.", "Server error" : "Ошибка сервера", - "moderator" : "модератор", - "admin" : "администратор", - "Share" : "Публикация", + "Could not modify publishing state" : "Не удалось изменить состояние публикации.", + "Open room" : "Открытая комната", + "Start" : "Начало", + "Clone room" : "Клонировать комнату", "Loading" : "Загружается", "You are not allowed to change this option, because this room is shared with you." : "Вы не можете изменить эту опцию, потому что эта комната находится в совместном пользовании с вами.", "Max. rooms" : "Макс. количество комнат", diff --git a/l10n/sc.js b/l10n/sc.js index 45b7cd9..556aecb 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -21,7 +21,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API URL o segretu non cunfiguradu. Cuntata s'amministratzione tua.", "BigBlueButton Integration" : "Integratzione de BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integratzione de BigBlueButton pro Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Custa aplicatzione permitit de creare addòbios cun un'installatzione esterna de [BigBlueButton](https://bigbluebutton.org).\n\n* **Cunfiguratzione istantza** Creat cunfiguratziones de istantzas mùltiplas cun nùmene, messàgiu de benebènnida …\n* **Cumpartzi ligòngiu pro s'ospite** Cumpartzi su ligòngiu de s'istantza cun totu is òspites\n* **Cumpartzi ligòngiu moderadore** Invita a persones chi mòderant in s'istantza\n* **Cumpartzi istantzas** Cumpartzi istantzas cun persones, grupos o chircos\n* **Personaliza presentatzione** Incarrera un'istantza cun una presentatzione seletzionada dae su navigadore de documentos\n* **Manìgia registratziones** Visualiza, cumpartzi e cantzella registratziones in s'istantza tua\n* **Restritziones** Lìmita sa creatzione de istantzas a tzertos grupos\n* **Atividades** Otene una panoràmica de is atividades de s'istantza tua\n\nGhia de incarrerada e àteras informatziones in [leghe·mi](https://github.com/sualko/cloud_bbb).\nTi praghet custa aplicatzione? Nara·ddu a sa comunidade aberta e càstia su\n[maneras pro contribuire] nostru (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nChircamus a persones pro isvilupare! Si tenes tempus, diat èssere bellu a nos agiudare a megiorare s'aplicatzione.\n\n*Custa aplicatzione ìntegrat BigBlueButton e no est sustènnida o tzertificada dae BigBlueButton Inc. BigBlueButton e su logo BigBlueButton sunt de propiedade de BigBlueButton Inc.*", "Room not found" : "Istantza no agatada", "The room could not be found. Maybe it was deleted?" : "No at fatu a agatare s'istantza. Mancari est istada cantzellada?", "Back to %s" : "A coa a %s", @@ -52,6 +51,8 @@ OC.L10N.register( "Group" : "Grupu", "Searching" : "Chirchende", "No matches" : "Peruna currispondèntzia", + "admin" : "amministratzione", + "moderator" : "chie moderat", "Name" : "Nùmene", "Access" : "Atzessu", "Max" : "Màssimu", @@ -63,9 +64,8 @@ OC.L10N.register( "Edit" : "Modìfica", "Descriptive name of this room." : "Nùmene descritivu de custa istantza.", "This message is shown to all users in the chat area after they joined." : "Custu messàgiu si mustrat a totu is utentes in sa tzarrada a pustis chi intrant.", - "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Impostat unu lìmite in su mùmeru de partetzipantes in custa istantza. Zero bolet nàrrere ca non ddoe at lìmites.", + "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Cunfigurat unu lìmite in su nùmeru de partetzipantes in custa istantza. Zero bolet nàrrere ca non ddoe at lìmites.", "If enabled, the moderator is able to start the recording." : "Si est ativadu, chie mòderat at a pòdere cumintzare sa registratzione.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pùblicu: Chie connoschet su ligòngiu podet intrare. Crae: Is òspites depent pònnere una crae. Sala de ispera: Chie mòderat depet atzetare ogni òspite prima chi potzant intrare. Internu: Podent intrare isceti utentes Nextcloud.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Sa persone chi mòderat podet gestire totu is partetzipantes de un'addòbiu, e fintzas bogare, pònnere a sa muda o seletzionare a sa persone chi presentat. Su de moderare permitit puru de serrare un'addòbiu o mudare is cunfiguratziones predefinidas.", "If enabled, normal users have to wait until a moderator is in the room." : "Si est ativadu, is utentes normales depent aspetare finas a cando ddoe siat una persone moderadore in s'istantza.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Si ativadu, si gènerat un'URL moderadore chi permitit de atzèdere cun permissu de moderare.", @@ -78,6 +78,7 @@ OC.L10N.register( "Room URL" : "URL istantza", "Welcome" : "Ti donamus sa benebènnida", "Participant limit" : "Lìmite partetzipantes", + "Sharing" : "Cumpartzende", "Every participant is moderator" : "Ogni partetzipante podet moderare", "Moderator access via URL" : "Atzessu moderadore dae URL", "Miscellaneous" : "Vàriu", @@ -89,6 +90,7 @@ OC.L10N.register( "Join meeting muted" : "Intra in sa riunione a sa muda", "Room name" : "Nùmene istantza", "Create" : "Crea", + "Published" : "Published", "Open recording" : "Aberi sa registratzione", "Copy to clipboard" : "Còpia in punta de billete", "Save as file" : "Sarva comente documentu", @@ -107,9 +109,6 @@ OC.L10N.register( "Delete?" : "Cantzellare?", "Could not delete record" : "No at fatu a cantzellare sa registratzione", "Server error" : "Errore serbidore", - "moderator" : "chie moderat", - "admin" : "amministratzione", - "Share" : "Cumpartzi", "Loading" : "Carrighende", "You are not allowed to change this option, because this room is shared with you." : "Non t'est permìtidu de cambiare custa optzione, ca custa istantza est cumpartzida cun tegus.", "Max. rooms" : "Màssimu de istantzas", diff --git a/l10n/sc.json b/l10n/sc.json index 56af662..5a294dc 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -19,7 +19,6 @@ "API URL or secret not configured. Please contact your administrator." : "API URL o segretu non cunfiguradu. Cuntata s'amministratzione tua.", "BigBlueButton Integration" : "Integratzione de BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integratzione de BigBlueButton pro Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Custa aplicatzione permitit de creare addòbios cun un'installatzione esterna de [BigBlueButton](https://bigbluebutton.org).\n\n* **Cunfiguratzione istantza** Creat cunfiguratziones de istantzas mùltiplas cun nùmene, messàgiu de benebènnida …\n* **Cumpartzi ligòngiu pro s'ospite** Cumpartzi su ligòngiu de s'istantza cun totu is òspites\n* **Cumpartzi ligòngiu moderadore** Invita a persones chi mòderant in s'istantza\n* **Cumpartzi istantzas** Cumpartzi istantzas cun persones, grupos o chircos\n* **Personaliza presentatzione** Incarrera un'istantza cun una presentatzione seletzionada dae su navigadore de documentos\n* **Manìgia registratziones** Visualiza, cumpartzi e cantzella registratziones in s'istantza tua\n* **Restritziones** Lìmita sa creatzione de istantzas a tzertos grupos\n* **Atividades** Otene una panoràmica de is atividades de s'istantza tua\n\nGhia de incarrerada e àteras informatziones in [leghe·mi](https://github.com/sualko/cloud_bbb).\nTi praghet custa aplicatzione? Nara·ddu a sa comunidade aberta e càstia su\n[maneras pro contribuire] nostru (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nChircamus a persones pro isvilupare! Si tenes tempus, diat èssere bellu a nos agiudare a megiorare s'aplicatzione.\n\n*Custa aplicatzione ìntegrat BigBlueButton e no est sustènnida o tzertificada dae BigBlueButton Inc. BigBlueButton e su logo BigBlueButton sunt de propiedade de BigBlueButton Inc.*", "Room not found" : "Istantza no agatada", "The room could not be found. Maybe it was deleted?" : "No at fatu a agatare s'istantza. Mancari est istada cantzellada?", "Back to %s" : "A coa a %s", @@ -50,6 +49,8 @@ "Group" : "Grupu", "Searching" : "Chirchende", "No matches" : "Peruna currispondèntzia", + "admin" : "amministratzione", + "moderator" : "chie moderat", "Name" : "Nùmene", "Access" : "Atzessu", "Max" : "Màssimu", @@ -61,9 +62,8 @@ "Edit" : "Modìfica", "Descriptive name of this room." : "Nùmene descritivu de custa istantza.", "This message is shown to all users in the chat area after they joined." : "Custu messàgiu si mustrat a totu is utentes in sa tzarrada a pustis chi intrant.", - "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Impostat unu lìmite in su mùmeru de partetzipantes in custa istantza. Zero bolet nàrrere ca non ddoe at lìmites.", + "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Cunfigurat unu lìmite in su nùmeru de partetzipantes in custa istantza. Zero bolet nàrrere ca non ddoe at lìmites.", "If enabled, the moderator is able to start the recording." : "Si est ativadu, chie mòderat at a pòdere cumintzare sa registratzione.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Pùblicu: Chie connoschet su ligòngiu podet intrare. Crae: Is òspites depent pònnere una crae. Sala de ispera: Chie mòderat depet atzetare ogni òspite prima chi potzant intrare. Internu: Podent intrare isceti utentes Nextcloud.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Sa persone chi mòderat podet gestire totu is partetzipantes de un'addòbiu, e fintzas bogare, pònnere a sa muda o seletzionare a sa persone chi presentat. Su de moderare permitit puru de serrare un'addòbiu o mudare is cunfiguratziones predefinidas.", "If enabled, normal users have to wait until a moderator is in the room." : "Si est ativadu, is utentes normales depent aspetare finas a cando ddoe siat una persone moderadore in s'istantza.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Si ativadu, si gènerat un'URL moderadore chi permitit de atzèdere cun permissu de moderare.", @@ -76,6 +76,7 @@ "Room URL" : "URL istantza", "Welcome" : "Ti donamus sa benebènnida", "Participant limit" : "Lìmite partetzipantes", + "Sharing" : "Cumpartzende", "Every participant is moderator" : "Ogni partetzipante podet moderare", "Moderator access via URL" : "Atzessu moderadore dae URL", "Miscellaneous" : "Vàriu", @@ -87,6 +88,7 @@ "Join meeting muted" : "Intra in sa riunione a sa muda", "Room name" : "Nùmene istantza", "Create" : "Crea", + "Published" : "Published", "Open recording" : "Aberi sa registratzione", "Copy to clipboard" : "Còpia in punta de billete", "Save as file" : "Sarva comente documentu", @@ -105,9 +107,6 @@ "Delete?" : "Cantzellare?", "Could not delete record" : "No at fatu a cantzellare sa registratzione", "Server error" : "Errore serbidore", - "moderator" : "chie moderat", - "admin" : "amministratzione", - "Share" : "Cumpartzi", "Loading" : "Carrighende", "You are not allowed to change this option, because this room is shared with you." : "Non t'est permìtidu de cambiare custa optzione, ca custa istantza est cumpartzida cun tegus.", "Max. rooms" : "Màssimu de istantzas", diff --git a/l10n/si.js b/l10n/si.js index 058eb44..2e37803 100644 --- a/l10n/si.js +++ b/l10n/si.js @@ -19,7 +19,6 @@ OC.L10N.register( "Welcome" : "සාදරයෙන් පිළිගනිමු", "Create" : "සාදන්න", "Error" : "දෝෂය", - "Share" : "බෙදාගන්න", "Loading" : "පූරණය වෙමින්" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/si.json b/l10n/si.json index 196368e..faed833 100644 --- a/l10n/si.json +++ b/l10n/si.json @@ -17,7 +17,6 @@ "Welcome" : "සාදරයෙන් පිළිගනිමු", "Create" : "සාදන්න", "Error" : "දෝෂය", - "Share" : "බෙදාගන්න", "Loading" : "පූරණය වෙමින්" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sk.js b/l10n/sk.js index f479fd4..98c33be 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -22,7 +22,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "Nie je nastavená URL API alebo API tajomstvo. Kontaktujte svojho správcu.", "BigBlueButton Integration" : "Integrácia BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integrácia BigBlueButton pre Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Táto aplikácia umožňuje vytvárať schôdze s externou inštaláciou [BigBlueButton] (https://bigbluebutton.org).\n\n*** Nastavenie miestnosti ** Vytvorte viacero konfigurácií miestností s názvom, uvítacou správou ...\n*** Zdieľajte odkaz pre hostí ** Zdieľajte odkaz na izbu so všetkými svojimi hosťami\n*** Zdieľať odkaz na moderátora ** Pozvite moderátorov do miestnosti\n*** Zdieľať miestnosti ** Zdieľať miestnosti s členmi, skupinami alebo kruhmi\n*** Vlastná prezentácia ** Začnite miestnosť zvolenou prezentáciou v prehliadači súborov\n*** Správa záznamov ** Zobrazenie, zdieľanie a odstraňovanie záznamov pre vaše miestnosti\n*** Obmedzenia ** Obmedzenie vytvárania miestnosti na určité skupiny\n*** Aktivity ** Získajte prehľad o svojich aktivitách v miestnosti\n\nStručný sprievodca a ďalšie informácie v našom [readme] (https://github.com/sualko/cloud_bbb).\nPáči sa vám táto aplikácia? Vráťte niečo komunite s otvoreným zdrojovým kódom a vyskúšajte\n[spôsoby, ako prispieť] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nHľadáme vývojárov! Ak máte čas, bolo by úžasné, ak ste mohli pomôcť vylepšiť túto aplikáciu.\n\n*Táto aplikácia integruje BigBlueButton a nie je schválená ani certifikovaná spoločnosťou BigBlueButton Inc. BigBlueButton a logo BigBlueButton sú ochranné známky spoločnosti BigBlueButton Inc.*", "Room not found" : "Miestnosť nenájdená", "The room could not be found. Maybe it was deleted?" : "Miestnosť sa nepodarilo nájsť. Možno bola odstránená?", "Back to %s" : "Späť na %s", @@ -56,6 +55,8 @@ OC.L10N.register( "Group" : "Skupina", "Searching" : "Hľadanie", "No matches" : "Žiadne zhody", + "admin" : "správca", + "moderator" : "moderátor", "Name" : "Názov", "Access" : "Prístup", "Max" : "Max", @@ -69,7 +70,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "Táto správa sa po pripojení zobrazí všetkým používateľom v oblasti četu.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastavuje limit počtu účastníkov v tejto miestnosti. Nula znamená, že je bez limitu.", "If enabled, the moderator is able to start the recording." : "Ak je povolené, moderátor môže spustiť nahrávanie.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Verejné: Môže sa pripojiť Každý, kto vie odkaz. Heslo: Hostia musia zadať heslo. Čakáreň: Moderátor musí prijať každého hosťa skôr, ako sa môže pripojiť. Interné: Pripojiť sa môžu iba používatelia Nextcloud.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderátor je schopný riadiť všetkých účastníkov stretnutia, vrátane kopania, stlmenia alebo výberu prezentéra. Používatelia s úlohou moderátora môžu tiež uzavrieť stretnutie alebo zmeniť predvolené nastavenia.", "If enabled, normal users have to wait until a moderator is in the room." : "Ak je zapnuté, bežní používatelia musia počkať, kým do miestnosti nevstúpi moderátor.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ak je zapnuté, generuje sa adresa URL moderátora, ktorá umožňuje prístup s povolením moderátora.", @@ -82,6 +82,7 @@ OC.L10N.register( "Room URL" : "URL miestnosti", "Welcome" : "Vitajte", "Participant limit" : "Limit účastníkov", + "Sharing" : "Zdieľanie", "Every participant is moderator" : "Každý účastník je moderátor", "Moderator access via URL" : "Prístup moderátora cez URL", "Miscellaneous" : "Rôzne", @@ -93,6 +94,7 @@ OC.L10N.register( "Join meeting muted" : "Pripojiť k schôdzke stíšene", "Room name" : "Názov miestnosti", "Create" : "Vytvoriť", + "Published" : "Publikované", "Open recording" : "Otvoriť nahrávanie", "Copy to clipboard" : "Skopírovať do schránky", "Save as file" : "Uložiť ako súbor", @@ -111,9 +113,7 @@ OC.L10N.register( "Delete?" : "Zmazať?", "Could not delete record" : "Záznam sa nepodarilo odstrániť", "Server error" : "Chyba servera", - "moderator" : "moderátor", - "admin" : "správca", - "Share" : "Sprístupňovať", + "Start" : "Začiatok", "Loading" : "Načítava sa...", "You are not allowed to change this option, because this room is shared with you." : "Túto možnosť nemôžete zmeniť, pretože táto miestnosť je s vami zdieľaná.", "Max. rooms" : "Maximálny počet miestností", diff --git a/l10n/sk.json b/l10n/sk.json index fcd2248..6d934f8 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -20,7 +20,6 @@ "API URL or secret not configured. Please contact your administrator." : "Nie je nastavená URL API alebo API tajomstvo. Kontaktujte svojho správcu.", "BigBlueButton Integration" : "Integrácia BigBlueButton", "BigBlueButton integration for Nextcloud" : "Integrácia BigBlueButton pre Nextcloud", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Táto aplikácia umožňuje vytvárať schôdze s externou inštaláciou [BigBlueButton] (https://bigbluebutton.org).\n\n*** Nastavenie miestnosti ** Vytvorte viacero konfigurácií miestností s názvom, uvítacou správou ...\n*** Zdieľajte odkaz pre hostí ** Zdieľajte odkaz na izbu so všetkými svojimi hosťami\n*** Zdieľať odkaz na moderátora ** Pozvite moderátorov do miestnosti\n*** Zdieľať miestnosti ** Zdieľať miestnosti s členmi, skupinami alebo kruhmi\n*** Vlastná prezentácia ** Začnite miestnosť zvolenou prezentáciou v prehliadači súborov\n*** Správa záznamov ** Zobrazenie, zdieľanie a odstraňovanie záznamov pre vaše miestnosti\n*** Obmedzenia ** Obmedzenie vytvárania miestnosti na určité skupiny\n*** Aktivity ** Získajte prehľad o svojich aktivitách v miestnosti\n\nStručný sprievodca a ďalšie informácie v našom [readme] (https://github.com/sualko/cloud_bbb).\nPáči sa vám táto aplikácia? Vráťte niečo komunite s otvoreným zdrojovým kódom a vyskúšajte\n[spôsoby, ako prispieť] (https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nHľadáme vývojárov! Ak máte čas, bolo by úžasné, ak ste mohli pomôcť vylepšiť túto aplikáciu.\n\n*Táto aplikácia integruje BigBlueButton a nie je schválená ani certifikovaná spoločnosťou BigBlueButton Inc. BigBlueButton a logo BigBlueButton sú ochranné známky spoločnosti BigBlueButton Inc.*", "Room not found" : "Miestnosť nenájdená", "The room could not be found. Maybe it was deleted?" : "Miestnosť sa nepodarilo nájsť. Možno bola odstránená?", "Back to %s" : "Späť na %s", @@ -54,6 +53,8 @@ "Group" : "Skupina", "Searching" : "Hľadanie", "No matches" : "Žiadne zhody", + "admin" : "správca", + "moderator" : "moderátor", "Name" : "Názov", "Access" : "Prístup", "Max" : "Max", @@ -67,7 +68,6 @@ "This message is shown to all users in the chat area after they joined." : "Táto správa sa po pripojení zobrazí všetkým používateľom v oblasti četu.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Nastavuje limit počtu účastníkov v tejto miestnosti. Nula znamená, že je bez limitu.", "If enabled, the moderator is able to start the recording." : "Ak je povolené, moderátor môže spustiť nahrávanie.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Verejné: Môže sa pripojiť Každý, kto vie odkaz. Heslo: Hostia musia zadať heslo. Čakáreň: Moderátor musí prijať každého hosťa skôr, ako sa môže pripojiť. Interné: Pripojiť sa môžu iba používatelia Nextcloud.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderátor je schopný riadiť všetkých účastníkov stretnutia, vrátane kopania, stlmenia alebo výberu prezentéra. Používatelia s úlohou moderátora môžu tiež uzavrieť stretnutie alebo zmeniť predvolené nastavenia.", "If enabled, normal users have to wait until a moderator is in the room." : "Ak je zapnuté, bežní používatelia musia počkať, kým do miestnosti nevstúpi moderátor.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Ak je zapnuté, generuje sa adresa URL moderátora, ktorá umožňuje prístup s povolením moderátora.", @@ -80,6 +80,7 @@ "Room URL" : "URL miestnosti", "Welcome" : "Vitajte", "Participant limit" : "Limit účastníkov", + "Sharing" : "Zdieľanie", "Every participant is moderator" : "Každý účastník je moderátor", "Moderator access via URL" : "Prístup moderátora cez URL", "Miscellaneous" : "Rôzne", @@ -91,6 +92,7 @@ "Join meeting muted" : "Pripojiť k schôdzke stíšene", "Room name" : "Názov miestnosti", "Create" : "Vytvoriť", + "Published" : "Publikované", "Open recording" : "Otvoriť nahrávanie", "Copy to clipboard" : "Skopírovať do schránky", "Save as file" : "Uložiť ako súbor", @@ -109,9 +111,7 @@ "Delete?" : "Zmazať?", "Could not delete record" : "Záznam sa nepodarilo odstrániť", "Server error" : "Chyba servera", - "moderator" : "moderátor", - "admin" : "správca", - "Share" : "Sprístupňovať", + "Start" : "Začiatok", "Loading" : "Načítava sa...", "You are not allowed to change this option, because this room is shared with you." : "Túto možnosť nemôžete zmeniť, pretože táto miestnosť je s vami zdieľaná.", "Max. rooms" : "Maximálny počet miestností", diff --git a/l10n/sl.js b/l10n/sl.js index e815ab9..8e17511 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -21,7 +21,6 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "Naslov URL API oziroma koda povezave ni nastavljena. Stopite v stik s skrbnikom sistema.", "BigBlueButton Integration" : "Podpora BigBlueButton", "BigBlueButton integration for Nextcloud" : "Podpora Nextcloud za 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Program omogoča ustvarjanje srečanj na zunanji namestitvi strežnika [BigBlueButton](https://bigbluebutton.org).\n\n* **Nastavitve sob** Ustvariti je mogoče več sob z različnimi nazivi, pozdravnimi sporočili ...\n* **Objava povezave za goste** Objava povezave za udeležbo tudi zunanjih sogovornikov\n* **Souporaba med moderatorji** Enostavno povabilo moderatorjem za sodelovanje\n* **Souporaba sob** Souporaba s člani, skupinami in krogi\n* **Predstavitve po meri** Možnost začetka prestavitve z izbrano predstavitvijo iz datoteke\n* **Upravljanje s posnetki** Pregled, souporaba in urejanje posnetkov sob\n* **Omejitve** Omejitev ustvarjanja sob za določene skupine\n* **Dejavnosti** Možnost pregleda dejavnosti v sobah \n\nKratka navodila in druge podrobnosti so na voljo v datoteki [readme](https://github.com/sualko/cloud_bbb).\nVam je program sicer všeč? Če želite pri projektu sodelovati, ali kako drugače pomagati, možnosti so zbrane na [spletni strani](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nIščejo se razvijalci! Če imate čas, lahko pomagate pri razvoju programa.\n\n*Ta program ni podprt s strani skupine BigBlueButton. Ime in logotip podjetja BigBlueButton sta blagovni znamki BigBlueButton Inc.*", "Room not found" : "Sobe ni mogoče najti", "The room could not be found. Maybe it was deleted?" : "Sobe ni mogoče najti. Ali je bila morda izbrisana?", "Back to %s" : "Nazaj na %s", @@ -52,6 +51,8 @@ OC.L10N.register( "Group" : "Skupina", "Searching" : "Iskanje", "No matches" : "Ni zadetkov", + "admin" : "skrbnik", + "moderator" : "moderator", "Name" : "Ime", "Access" : "Dostop", "Max" : "Največ", @@ -65,7 +66,6 @@ OC.L10N.register( "This message is shown to all users in the chat area after they joined." : "To sporočilo se ob prijavi pokaže vsem uporabnikom v klepetu.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Določitev omejitve števila udeležencev v skupini, vrednost nič pomeni, da ni omejitve.", "If enabled, the moderator is able to start the recording." : "Izbrana možnost onemogoča moderatorju snemanje dogodka.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Javno: pridruži se lahko vsakdo s povezavo. Geslo: udeleženci morajo vpisati tudi posebno geslo. Čakalnica: moderator mora potrditi vsakega udeleženca. Notranji: sodelujejo lahko le uporabniki z računi Nextcloud.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderator lahko upravlja z vsemi udeleženci v srečanju, vključno s prepovedjo sodelovanja, utišanjem in izbiro govornika. Uporabniki s to vlogo lahko zaprejo srečanje in spreminjajo privzete nastavitve.", "If enabled, normal users have to wait until a moderator is in the room." : "Izbrana možnost določa, da bodo običajni udeleženci morali počakati na prijavo moderatorja.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Izbrana možnost omogoča ustvarjanje moderatorskega naslova URL za prijavo z moderatorskimi dovoljenji.", @@ -77,6 +77,7 @@ OC.L10N.register( "Room URL" : "Naslov URL sobe", "Welcome" : "Dobrodošli", "Participant limit" : "Omejitev udeležencev", + "Sharing" : "Souporaba", "Every participant is moderator" : "Vsak udeleženec je moderator", "Moderator access via URL" : "Moderatorski dostop prek naslova URL", "Miscellaneous" : "Razno", @@ -87,6 +88,7 @@ OC.L10N.register( "Clean layout" : "Počiščena razporeditev", "Room name" : "Ime sobe", "Create" : "Ustvari", + "Published" : "Objavljeno", "Open recording" : "Odpri posnetek", "Copy to clipboard" : "Kopiraj v odložišče", "Save as file" : "Shrani kot datoteko", @@ -105,9 +107,7 @@ OC.L10N.register( "Delete?" : "Ali želite izbrisati?", "Could not delete record" : "Zapisa ni mogoče izbrisati", "Server error" : "Napaka strežnika", - "moderator" : "moderator", - "admin" : "skrbnik", - "Share" : "Souporaba", + "Start" : "Začetek", "Loading" : "Poteka nalaganje ...", "You are not allowed to change this option, because this room is shared with you." : "Za spreminjanje te možnosti nimate ustreznih dovoljenj, soba je le v souporabi.", "Max. rooms" : "Največ sob", diff --git a/l10n/sl.json b/l10n/sl.json index 188913c..1253c19 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -19,7 +19,6 @@ "API URL or secret not configured. Please contact your administrator." : "Naslov URL API oziroma koda povezave ni nastavljena. Stopite v stik s skrbnikom sistema.", "BigBlueButton Integration" : "Podpora BigBlueButton", "BigBlueButton integration for Nextcloud" : "Podpora Nextcloud za 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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Program omogoča ustvarjanje srečanj na zunanji namestitvi strežnika [BigBlueButton](https://bigbluebutton.org).\n\n* **Nastavitve sob** Ustvariti je mogoče več sob z različnimi nazivi, pozdravnimi sporočili ...\n* **Objava povezave za goste** Objava povezave za udeležbo tudi zunanjih sogovornikov\n* **Souporaba med moderatorji** Enostavno povabilo moderatorjem za sodelovanje\n* **Souporaba sob** Souporaba s člani, skupinami in krogi\n* **Predstavitve po meri** Možnost začetka prestavitve z izbrano predstavitvijo iz datoteke\n* **Upravljanje s posnetki** Pregled, souporaba in urejanje posnetkov sob\n* **Omejitve** Omejitev ustvarjanja sob za določene skupine\n* **Dejavnosti** Možnost pregleda dejavnosti v sobah \n\nKratka navodila in druge podrobnosti so na voljo v datoteki [readme](https://github.com/sualko/cloud_bbb).\nVam je program sicer všeč? Če želite pri projektu sodelovati, ali kako drugače pomagati, možnosti so zbrane na [spletni strani](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nIščejo se razvijalci! Če imate čas, lahko pomagate pri razvoju programa.\n\n*Ta program ni podprt s strani skupine BigBlueButton. Ime in logotip podjetja BigBlueButton sta blagovni znamki BigBlueButton Inc.*", "Room not found" : "Sobe ni mogoče najti", "The room could not be found. Maybe it was deleted?" : "Sobe ni mogoče najti. Ali je bila morda izbrisana?", "Back to %s" : "Nazaj na %s", @@ -50,6 +49,8 @@ "Group" : "Skupina", "Searching" : "Iskanje", "No matches" : "Ni zadetkov", + "admin" : "skrbnik", + "moderator" : "moderator", "Name" : "Ime", "Access" : "Dostop", "Max" : "Največ", @@ -63,7 +64,6 @@ "This message is shown to all users in the chat area after they joined." : "To sporočilo se ob prijavi pokaže vsem uporabnikom v klepetu.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Določitev omejitve števila udeležencev v skupini, vrednost nič pomeni, da ni omejitve.", "If enabled, the moderator is able to start the recording." : "Izbrana možnost onemogoča moderatorju snemanje dogodka.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Javno: pridruži se lahko vsakdo s povezavo. Geslo: udeleženci morajo vpisati tudi posebno geslo. Čakalnica: moderator mora potrditi vsakega udeleženca. Notranji: sodelujejo lahko le uporabniki z računi Nextcloud.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Moderator lahko upravlja z vsemi udeleženci v srečanju, vključno s prepovedjo sodelovanja, utišanjem in izbiro govornika. Uporabniki s to vlogo lahko zaprejo srečanje in spreminjajo privzete nastavitve.", "If enabled, normal users have to wait until a moderator is in the room." : "Izbrana možnost določa, da bodo običajni udeleženci morali počakati na prijavo moderatorja.", "If enabled, a moderator URL is generated which allows access with moderator permission." : "Izbrana možnost omogoča ustvarjanje moderatorskega naslova URL za prijavo z moderatorskimi dovoljenji.", @@ -75,6 +75,7 @@ "Room URL" : "Naslov URL sobe", "Welcome" : "Dobrodošli", "Participant limit" : "Omejitev udeležencev", + "Sharing" : "Souporaba", "Every participant is moderator" : "Vsak udeleženec je moderator", "Moderator access via URL" : "Moderatorski dostop prek naslova URL", "Miscellaneous" : "Razno", @@ -85,6 +86,7 @@ "Clean layout" : "Počiščena razporeditev", "Room name" : "Ime sobe", "Create" : "Ustvari", + "Published" : "Objavljeno", "Open recording" : "Odpri posnetek", "Copy to clipboard" : "Kopiraj v odložišče", "Save as file" : "Shrani kot datoteko", @@ -103,9 +105,7 @@ "Delete?" : "Ali želite izbrisati?", "Could not delete record" : "Zapisa ni mogoče izbrisati", "Server error" : "Napaka strežnika", - "moderator" : "moderator", - "admin" : "skrbnik", - "Share" : "Souporaba", + "Start" : "Začetek", "Loading" : "Poteka nalaganje ...", "You are not allowed to change this option, because this room is shared with you." : "Za spreminjanje te možnosti nimate ustreznih dovoljenj, soba je le v souporabi.", "Max. rooms" : "Največ sob", diff --git a/l10n/sq.js b/l10n/sq.js index d14f38c..e086e1e 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -11,13 +11,14 @@ OC.L10N.register( "Name" : "Emri", "Edit" : "Përpuno", "Welcome" : "Mirëseerdhët", + "Sharing" : "Ndarje", "Room name" : "Emri i dhomës", "Create" : "Krijo", "Copy to clipboard" : "Kopjo në dërrasë ", "Delete" : "Delete", "Error" : "Error", "Server error" : "Gabim shërbyesi", - "Share" : "Shpërndaje", + "Start" : "Fillo", "Loading" : "Duke ngarkuar", "Settings saved" : "Opsjonet u Ruajtën." }, diff --git a/l10n/sq.json b/l10n/sq.json index 6596382..ac9702a 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -9,13 +9,14 @@ "Name" : "Emri", "Edit" : "Përpuno", "Welcome" : "Mirëseerdhët", + "Sharing" : "Ndarje", "Room name" : "Emri i dhomës", "Create" : "Krijo", "Copy to clipboard" : "Kopjo në dërrasë ", "Delete" : "Delete", "Error" : "Error", "Server error" : "Gabim shërbyesi", - "Share" : "Shpërndaje", + "Start" : "Fillo", "Loading" : "Duke ngarkuar", "Settings saved" : "Opsjonet u Ruajtën." },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/sr.js b/l10n/sr.js index f3f4f89..69ab3c0 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API URL или тајна није подешена. Молимо вас да се обратите свом администратору.", "BigBlueButton Integration" : "BigBlueButton интеграција", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Ова апликација вам омогућава да креирате састанке помоћу спољне инсталације [BigBlueButton](https://bigbluebutton.org).\n\n* **Подешавање собе** Креирајте више конфигурација соба са називом, поздравном подуком …\n* **Делите линк за госта** Поделите линк на собу са свим својим гостима\n* **Делите линк модератора** Позовите модераторе у собу\n* **Делите собе** Делите собе са члановима, групама или круговима\n* **Прилагођена презентација** Покрените собу са презентацијом изабраном у вашем истраживачу фајлова\n* **Управљајте снимањима** Прегледајте, делите и бришите снимке ваших соба\n* **Ограничења** Ограничите могућност креирања соба на неке групе\n* **Активности** Примајте преглед активности у вашим собама\n\nВодич за брзи почетак и додатне информације у нашем [readme](https://github.com/sualko/cloud_bbb).\nДа ли вам се допада ова апликација? Вратите нешто заједници отвореног кода и прочитајте наше\n[начине за давање доприноса](https://github.com/sualko/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.*", "Room not found" : "Није пронађена соба", "The room could not be found. Maybe it was deleted?" : "Соба не може да се пронађе. Да није обрисана?", "Back to %s" : "Назад на %s", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Група", "Searching" : "Тражим", "No matches" : "Нема подударања", + "admin" : "админ", + "moderator" : "модератор", + "user" : "корисник", "Name" : "Име", "Access" : "Приступ", "Max" : "Максимално", @@ -69,7 +72,7 @@ OC.L10N.register( "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." : "Поставља ограничење броја корисника за ову собу. Нула значи да нема ограничења.", "If enabled, the moderator is able to start the recording." : "Ако је укључено, модератор може да започне симање.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Јавна: свако ко поседује линк може да приступи. Лозинка: гости морају да наведу лозинку. Соба чекања: модератор мора да прихвати сваког госта пре него што може да приступи. Интерни: могу да приступе само Nextcloud корисници.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Објашњење различитих концепата који чине опције приступа:
- Јавни: може да приступи свако ко има линк.-
Интерни: могу да приступе само Nextcloud корисници.-
Лозинка: могу да приступе само гости који имају лозинку.-
Соба за чекање: пре него што добије право приступа, модератор мора да прихвати сваког госта.-
Ограничени: овој соби могу да приступе само изабрани корисници и групе.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Модератор може да управља свима члановима састанка, што укључује избацивање, ућуткивање или избор презентера. Корисници који имају улогу модератора такође могу да затворе састанак или да измене подразумевана подешавања.", "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 модератора који дозвољава приступ са модераторским дозволама.", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "URL собе", "Welcome" : "Добро дошли", "Participant limit" : "Ограничење броја учесника", + "Sharing" : "Дељење", "Every participant is moderator" : "Сваки учесник је модератор", "Moderator access via URL" : "Модераторски приступ преко URL", "Miscellaneous" : "Разно", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "Приступи састанку са искљученим микрофоном", "Room name" : "Име собе", "Create" : "Направи", + "Published" : "Објављено", "Open recording" : "Отвори снимак", "Copy to clipboard" : "Копирај у оставу", "Save as file" : "Сачувај као фајл", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Да обришем?", "Could not delete record" : "Снимак није могао да се обрише", "Server error" : "Грешка на серверу", - "moderator" : "модератор", - "admin" : "админ", - "Share" : "Подели", + "Could not modify publishing state" : "Није могло да се измени стање објаве", + "Open room" : "Отвори собу", + "Start" : "Почетак", + "Clone room" : "Клонирај собу", "Loading" : "Учитавам", "You are not allowed to change this option, because this room is shared with you." : "Није вам дозвољено да измените ову опцију јер се ова соба дели са вама.", "Max. rooms" : "Макс. бр. соба", diff --git a/l10n/sr.json b/l10n/sr.json index d737192..4c8f200 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "API URL или тајна није подешена. Молимо вас да се обратите свом администратору.", "BigBlueButton Integration" : "BigBlueButton интеграција", "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Ова апликација вам омогућава да креирате састанке помоћу спољне инсталације [BigBlueButton](https://bigbluebutton.org).\n\n* **Подешавање собе** Креирајте више конфигурација соба са називом, поздравном подуком …\n* **Делите линк за госта** Поделите линк на собу са свим својим гостима\n* **Делите линк модератора** Позовите модераторе у собу\n* **Делите собе** Делите собе са члановима, групама или круговима\n* **Прилагођена презентација** Покрените собу са презентацијом изабраном у вашем истраживачу фајлова\n* **Управљајте снимањима** Прегледајте, делите и бришите снимке ваших соба\n* **Ограничења** Ограничите могућност креирања соба на неке групе\n* **Активности** Примајте преглед активности у вашим собама\n\nВодич за брзи почетак и додатне информације у нашем [readme](https://github.com/sualko/cloud_bbb).\nДа ли вам се допада ова апликација? Вратите нешто заједници отвореног кода и прочитајте наше\n[начине за давање доприноса](https://github.com/sualko/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.*", "Room not found" : "Није пронађена соба", "The room could not be found. Maybe it was deleted?" : "Соба не може да се пронађе. Да није обрисана?", "Back to %s" : "Назад на %s", @@ -54,6 +54,9 @@ "Group" : "Група", "Searching" : "Тражим", "No matches" : "Нема подударања", + "admin" : "админ", + "moderator" : "модератор", + "user" : "корисник", "Name" : "Име", "Access" : "Приступ", "Max" : "Максимално", @@ -67,7 +70,7 @@ "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." : "Поставља ограничење броја корисника за ову собу. Нула значи да нема ограничења.", "If enabled, the moderator is able to start the recording." : "Ако је укључено, модератор може да започне симање.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Јавна: свако ко поседује линк може да приступи. Лозинка: гости морају да наведу лозинку. Соба чекања: модератор мора да прихвати сваког госта пре него што може да приступи. Интерни: могу да приступе само Nextcloud корисници.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Објашњење различитих концепата који чине опције приступа:
- Јавни: може да приступи свако ко има линк.-
Интерни: могу да приступе само Nextcloud корисници.-
Лозинка: могу да приступе само гости који имају лозинку.-
Соба за чекање: пре него што добије право приступа, модератор мора да прихвати сваког госта.-
Ограничени: овој соби могу да приступе само изабрани корисници и групе.", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "Модератор може да управља свима члановима састанка, што укључује избацивање, ућуткивање или избор презентера. Корисници који имају улогу модератора такође могу да затворе састанак или да измене подразумевана подешавања.", "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 модератора који дозвољава приступ са модераторским дозволама.", @@ -80,6 +83,7 @@ "Room URL" : "URL собе", "Welcome" : "Добро дошли", "Participant limit" : "Ограничење броја учесника", + "Sharing" : "Дељење", "Every participant is moderator" : "Сваки учесник је модератор", "Moderator access via URL" : "Модераторски приступ преко URL", "Miscellaneous" : "Разно", @@ -91,6 +95,7 @@ "Join meeting muted" : "Приступи састанку са искљученим микрофоном", "Room name" : "Име собе", "Create" : "Направи", + "Published" : "Објављено", "Open recording" : "Отвори снимак", "Copy to clipboard" : "Копирај у оставу", "Save as file" : "Сачувај као фајл", @@ -109,9 +114,10 @@ "Delete?" : "Да обришем?", "Could not delete record" : "Снимак није могао да се обрише", "Server error" : "Грешка на серверу", - "moderator" : "модератор", - "admin" : "админ", - "Share" : "Подели", + "Could not modify publishing state" : "Није могло да се измени стање објаве", + "Open room" : "Отвори собу", + "Start" : "Почетак", + "Clone room" : "Клонирај собу", "Loading" : "Учитавам", "You are not allowed to change this option, because this room is shared with you." : "Није вам дозвољено да измените ову опцију јер се ова соба дели са вама.", "Max. rooms" : "Макс. бр. соба", diff --git a/l10n/sr@latin.js b/l10n/sr@latin.js index d73789b..29f7260 100644 --- a/l10n/sr@latin.js +++ b/l10n/sr@latin.js @@ -12,7 +12,7 @@ OC.L10N.register( "Create" : "Napravi", "Delete" : "Obriši", "Error" : "Error", - "Share" : "Podeli", - "Loading" : "Loading" + "Loading" : "Loading", + "Unexpected error occurred" : "Desila se neočekivana greška" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr@latin.json b/l10n/sr@latin.json index 22b9e42..82a927e 100644 --- a/l10n/sr@latin.json +++ b/l10n/sr@latin.json @@ -10,7 +10,7 @@ "Create" : "Napravi", "Delete" : "Obriši", "Error" : "Error", - "Share" : "Podeli", - "Loading" : "Loading" + "Loading" : "Loading", + "Unexpected error occurred" : "Desila se neočekivana greška" },"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);" } \ No newline at end of file diff --git a/l10n/sv.js b/l10n/sv.js index 71af0ce..5ac2a01 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -1,7 +1,12 @@ OC.L10N.register( "bbb", { + "You shared the room %s with {shareWith}." : "Du delade rummet %s med {shareWith}.", + "{user} shared the room %s with you." : "{user} delade rummet %s med dig.", + "You unshared the room %s with {shareWith}." : "Du slutade dela rummet %s med {shareWith}.", + "{user} unshared the room %s with you." : "{user} slutade dela rummet %s med dig.", "Public" : "Offentlig", + "Internal" : "Intern", "Back to %s" : "Tillbaka till %s", "Save" : "Spara", "Community" : "Community", @@ -13,23 +18,31 @@ OC.L10N.register( "Group" : "Grupp", "Searching" : "Söker", "No matches" : "Inga träffar", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Namn", "Access" : "Åtkomst", "Max" : "Max", "Edit" : "Redigera", + "This message is shown to all users in the chat area after they joined." : "Detta meddelande visas för alla användare i chattområdet efter att de gått med.", + "If enabled, the user list, chat area and presentation are hidden by default." : "Om aktiverat är användarlistan, chattområdet och presentationen dolda som standard.", "Welcome" : "Välkommen", + "Sharing" : "Delning", "Miscellaneous" : "Diverse", + "Recording" : "Inspelning", "Room name" : "Rumsnamn", "Create" : "Skapa", + "Published" : "Publicerad", "Copy to clipboard" : "Kopiera till urklipp", "Delete" : "Ta bort", "Error" : "Fel", "Server error" : "Serverfel", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Dela", + "Start" : "Start", "Loading" : "Läser in", + "You are not allowed to change this option, because this room is shared with you." : "Du får inte ändra det här alternativet eftersom detta rum delas med dig.", "Settings saved" : "Inställningar sparade", + "Unexpected error occurred" : "Ett oväntat fel inträffade", + "Send to" : "Skicka till", "No rooms available!" : "Inga rum tillgängliga!" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sv.json b/l10n/sv.json index 0dc6c4d..929f7b4 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -1,5 +1,10 @@ { "translations": { + "You shared the room %s with {shareWith}." : "Du delade rummet %s med {shareWith}.", + "{user} shared the room %s with you." : "{user} delade rummet %s med dig.", + "You unshared the room %s with {shareWith}." : "Du slutade dela rummet %s med {shareWith}.", + "{user} unshared the room %s with you." : "{user} slutade dela rummet %s med dig.", "Public" : "Offentlig", + "Internal" : "Intern", "Back to %s" : "Tillbaka till %s", "Save" : "Spara", "Community" : "Community", @@ -11,23 +16,31 @@ "Group" : "Grupp", "Searching" : "Söker", "No matches" : "Inga träffar", + "admin" : "admin", + "moderator" : "moderator", "Name" : "Namn", "Access" : "Åtkomst", "Max" : "Max", "Edit" : "Redigera", + "This message is shown to all users in the chat area after they joined." : "Detta meddelande visas för alla användare i chattområdet efter att de gått med.", + "If enabled, the user list, chat area and presentation are hidden by default." : "Om aktiverat är användarlistan, chattområdet och presentationen dolda som standard.", "Welcome" : "Välkommen", + "Sharing" : "Delning", "Miscellaneous" : "Diverse", + "Recording" : "Inspelning", "Room name" : "Rumsnamn", "Create" : "Skapa", + "Published" : "Publicerad", "Copy to clipboard" : "Kopiera till urklipp", "Delete" : "Ta bort", "Error" : "Fel", "Server error" : "Serverfel", - "moderator" : "moderator", - "admin" : "admin", - "Share" : "Dela", + "Start" : "Start", "Loading" : "Läser in", + "You are not allowed to change this option, because this room is shared with you." : "Du får inte ändra det här alternativet eftersom detta rum delas med dig.", "Settings saved" : "Inställningar sparade", + "Unexpected error occurred" : "Ett oväntat fel inträffade", + "Send to" : "Skicka till", "No rooms available!" : "Inga rum tillgängliga!" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ta.js b/l10n/ta.js index 3fcc25f..cbc9a2f 100644 --- a/l10n/ta.js +++ b/l10n/ta.js @@ -10,7 +10,6 @@ OC.L10N.register( "Create" : "உருவாக்குக", "Delete" : "நீக்குக", "Error" : "வழு", - "Share" : "பகிர்வு", "Loading" : "Loading" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ta.json b/l10n/ta.json index 1b51887..87a2b0a 100644 --- a/l10n/ta.json +++ b/l10n/ta.json @@ -8,7 +8,6 @@ "Create" : "உருவாக்குக", "Delete" : "நீக்குக", "Error" : "வழு", - "Share" : "பகிர்வு", "Loading" : "Loading" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/th.js b/l10n/th.js index f4856eb..31421f1 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -19,13 +19,14 @@ OC.L10N.register( "Name" : "ชื่อ", "Edit" : "แก้ไข", "Welcome" : "ยินดีต้อนรับ", + "Sharing" : "แชร์ข้อมูล", "Create" : "สร้าง", + "Published" : "เผยแพร่แล้ว", "Copy to clipboard" : "คัดลอกไปยังคลิปบอร์ด", "Delete" : "ลบ", "Error" : "ข้อผิดพลาด", "Delete?" : "ลบหรือไม่", "Server error" : "ข้อผิดพลาดเซิร์ฟเวอร์", - "Share" : "แชร์", "Loading" : "กำลังโหลด", "Settings saved" : "บันทึกการตั้งค่าแล้ว" }, diff --git a/l10n/th.json b/l10n/th.json index d394545..f5c97bb 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -17,13 +17,14 @@ "Name" : "ชื่อ", "Edit" : "แก้ไข", "Welcome" : "ยินดีต้อนรับ", + "Sharing" : "แชร์ข้อมูล", "Create" : "สร้าง", + "Published" : "เผยแพร่แล้ว", "Copy to clipboard" : "คัดลอกไปยังคลิปบอร์ด", "Delete" : "ลบ", "Error" : "ข้อผิดพลาด", "Delete?" : "ลบหรือไม่", "Server error" : "ข้อผิดพลาดเซิร์ฟเวอร์", - "Share" : "แชร์", "Loading" : "กำลังโหลด", "Settings saved" : "บันทึกการตั้งค่าแล้ว" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/l10n/tk.js b/l10n/tk.js index a68a85d..99574a0 100644 --- a/l10n/tk.js +++ b/l10n/tk.js @@ -7,9 +7,9 @@ OC.L10N.register( "Hello %s" : "Salam%s", "Name" : "Ady", "Edit" : "Redaktirläň", + "Sharing" : "Paýlaşmak", "Create" : "Dörediň", "Delete" : "Pozmak", - "Error" : "ýalňyşlyk", - "Share" : "Paýlaş" + "Error" : "ýalňyşlyk" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/tk.json b/l10n/tk.json index 565ef61..8fce36a 100644 --- a/l10n/tk.json +++ b/l10n/tk.json @@ -5,9 +5,9 @@ "Hello %s" : "Salam%s", "Name" : "Ady", "Edit" : "Redaktirläň", + "Sharing" : "Paýlaşmak", "Create" : "Dörediň", "Delete" : "Pozmak", - "Error" : "ýalňyşlyk", - "Share" : "Paýlaş" + "Error" : "ýalňyşlyk" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/tr.js b/l10n/tr.js index b1d9cf7..3619347 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -12,7 +12,7 @@ OC.L10N.register( "{user} started a meeting in the \"%s\" room." : "{user} \"%s\" odasında bir toplantı başlattı.", "The meeting in room \"%s\" has ended." : "\"%s\" odasındaki toplantı sona erdi.", "Recording for room \"%s\" is ready." : "\"%s\" odasındaki toplantı kaydı hazır.", - "To invite someone to the meeting, send them this link: %s" : "Görüşmeye birini çağırmak için şu bağlantıyı gönderin: %s", + "To invite someone to the meeting, send them this link: %s" : "Görüşmeye birini davet etmek için şu bağlantıyı gönderin: %s", "Public" : "Herkese açık", "Internal + Password protection for guests" : "Konuklar için İç + Parola koruması", "Internal + Waiting room for guests" : "Konuklar için İç + Parola koruması", @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "API adresi ya da parolası yapılandırılmamış. Lütfen BT yöneticiniz ile görüşün.", "BigBlueButton Integration" : "BigBlueButton bütünleştirmesi", "BigBlueButton integration for Nextcloud" : "Nextcloud için BigBlueButton bütünleştirmesi", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Bu uygulama bir dış [BigBlueButton](https://bigbluebutton.org) kurulumu ile toplantı yapılabilmesini sağlar.\n\n* **Oda kurulumu** Ad ve hoş geldiniz iletisi ile birçok oda yapılandırması oluşturulabilir, ...\n* **Konuk bağlantısı paylaşımı** Toplantı bağlantısı tüm konuklar ile paylaşılabilir\n* **Sorumlu bağlantısı paylaşımı** Odaya sorumlular çağrılabilir\n* **Oda paylaşımı** Odalar üyeler, gruplar ve çevreler ile paylaşılabilir\n* **Özel sunum** Oda, dosya gezgininizden seçebileceğiniz bir sunum ile başlatılabilir\n* **Kayıt yönetimi** Oda kayıtları görülebilir, paylaşılabilir ve silinebilir\n* **Kısıtlamalar** Yalnızca belirli grupların oda oluşturması sağlanabilir\n* **İşlemler** Oda işlemlerinin özeti görülebilir\n\nHIzlı başlangıç ve ayrıntılı bilgiler için [readme](https://github.com/sualko/cloud_bbb) dosyasına bakabilirsiniz.\nBu uygulama hoşunuza gitti mi? Destek olmak için açık kaynak topluluğuna\n[katkıda bulunma yollarına ](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md) bakabilirsiniz.\n\nGeliştiriciler aranıyor! Zamanınız varsa ve bu uygulamayı geliştirmemize yardım edebilirseniz harika olur.\n\n*Bu uygulama BigBlueButton ile bütünleştirme sağlar ve BigBlueButton Inc. tarafından herhangi bir onay ya da sertifika almamıştır. BigBlueButton ve BigBlueButton Logosu, BigBlueButton Inc. kuruluşunun tescilli ticari markalarıdır.*", + "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.*" : "Bu uygulama bir dış [BigBlueButton](https://bigbluebutton.org) kurulumu ile toplantı yapılabilmesini sağlar.\n\n* **Oda kurulumu** Ad ve hoş geldiniz iletisi ile birçok oda yapılandırması oluşturulabilir, ...\n* **Konuk bağlantısı paylaşımı** Toplantı bağlantısı tüm konuklar ile paylaşılabilir\n* **Sorumlu bağlantısı paylaşımı** Odaya sorumlular davet edilebilir\n* **Oda paylaşımı** Odalar üyeler, gruplar ve takımlar ile paylaşılabilir\n* **Özel sunum** Oda, dosya gezgininizden seçebileceğiniz bir sunum ile başlatılabilir\n* **Kayıt yönetimi** Oda kayıtları görülebilir, paylaşılabilir ve silinebilir\n* **Kısıtlamalar** Yalnızca belirli grupların oda oluşturması sağlanabilir\n* **İşlemler** Oda işlemlerinin özeti görülebilir\n\nHIzlı başlangıç ve ayrıntılı bilgiler için [readme](https://github.com/littleredbutton/cloud_bbb) dosyasına bakabilirsiniz.\nBu uygulama hoşunuza gitti mi? Destek olmak için açık kaynak topluluğuna\n[katkıda bulunma yollarına ](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) bakabilirsiniz.\n\nKatkıda bulunmak isteyenleri bekliyoruz! Zamanınız varsa ve bu uygulamayı geliştirmemize yardım edebilirseniz harika olur.\n\n*Bu uygulama BigBlueButton ile bütünleştirme sağlar ve BigBlueButton Inc. tarafından herhangi bir onay ya da sertifika almamıştır. BigBlueButton ve BigBlueButton Logosu, BigBlueButton Inc. kuruluşunun tescilli ticari markalarıdır.*", "Room not found" : "Oda bulunamadı", "The room could not be found. Maybe it was deleted?" : "Oda bulunamadı. Silinmiş olabilir mi?", "Back to %s" : "%s ögesine dön", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "Grup", "Searching" : "Aranıyor", "No matches" : "Eşleşme yok", + "admin" : "yönetici", + "moderator" : "sorumlu", + "user" : "kullanıcı", "Name" : "Ad", "Access" : "Erişim", "Max" : "En fazla", @@ -68,20 +71,21 @@ OC.L10N.register( "Descriptive name of this room." : "Odayı açıklayan ad.", "This message is shown to all users in the chat area after they joined." : "Katılan tüm kullanıcılara sohbet alanında bu ileti görüntülenir.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Bu odanın katılımcı sayısı sınırını belirler. Sıfır yazıldığında sınırlama uygulanmaz.", - "If enabled, the moderator is able to start the recording." : "Bu seçenek etkinleştirildiğinde, sorumlu toplantıyı kaydedebilir.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Herkese açık: Bağlantıyı bilen herkes toplantıya katılabilir. Parola: Toplantıya katılabilmek için konukların parolayı bilmesi gerekir. Bekleme odası: Konukların toplantıya katılabilmesi için sorumlu tarafından kabul edilmeleri gerekir. İç: Toplantıya yalnızca Nextcloud kullanıcıları katılabilir.", + "If enabled, the moderator is able to start the recording." : "Bu seçenek kullanıma alındığında, sorumlu toplantıyı kaydedebilir.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Erişim seçeneklerinin açıklaması:
- Herkese açık: Bağlantıyı bilen herkes katılabilir.
- İç: Yalnızca Nextcloud kullanıcıları katılabilir.
- Parola: Yalnızca parolayı bilen konuklar katılabilir.
- Bekleme odası: Konukların katılmadan önce bir sorumlu tarafından kabul edilmesi gerekir.
- Kısıtlı: Yalnızca seçilmiş kullanıcılar ve gruplar erişebilir.", "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." : "Bir sorunlu, katılımcıları çıkarma, sessize alma ya da sunucu olarak atama gibi işlemleri yapabilir. Sorumlu pozisyonundaki kullanıcılar br toplantıyı bitirebilir ya da varsayılan ayarlarını değiştirebilir.", - "If enabled, normal users have to wait until a moderator is in the room." : "Bu seçenek etkinleştirildiğinde, odaya bir sorumlu gelene kadar kullanıcıların beklemesi gerekir.", - "If enabled, a moderator URL is generated which allows access with moderator permission." : "Bu seçenek etkinleştirildiğinde, sorumlu yetkileri ile erişilebilecek bir sorumlu adresi oluşturulur.", + "If enabled, normal users have to wait until a moderator is in the room." : "Bu seçenek kullanıma alındığında, odaya bir sorumlu gelene kadar kullanıcıların beklemesi gerekir.", + "If enabled, a moderator URL is generated which allows access with moderator permission." : "Bu seçenek kullanıma alındığında, sorumlu yetkileri ile erişilebilecek bir sorumlu adresi oluşturulur.", "Only selected users and groups are allowed to access the room." : "Odaya yalnızca seçilmiş kullanıcı ve gruplar erişebilir.", - "If disabled, a microphone is needed to join the conference." : "Bu seçenek devre dışı bırakıldığında, görüşmeye katılabilmek için bir mikrofon gerekir.", - "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Bu seçenek etkinleştirildiğinde, kullanıcı ilk kez katılırken, bir yankı çağrısı ve bilgisayar kamerası ön izlemesi yapması gerekmez (BBB sunucu 2.3 sürümü ve üzeri için).", - "If enabled, the user list, chat area and presentation are hidden by default." : "Bu seçenek etkinleştirildiğinde, kullanıcı listesi, sohbet alanı ve sunum varsayılan olarak gizlenir.", - "If enabled, all users will join the meeting muted." : "Bu seçenek etkinleştirildiğinde, tüm kullanıcılar görüşmeye sesi kapalı olarak katılır.", + "If disabled, a microphone is needed to join the conference." : "Bu seçenek kapatıldığında, görüşmeye katılabilmek için bir mikrofon gerekir.", + "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Bu seçenek kullanıma alındığında, kullanıcı ilk kez katılırken, bir yankı çağrısı ve bilgisayar kamerası ön izlemesi yapması gerekmez (BBB sunucu 2.3 sürümü ve üzeri için).", + "If enabled, the user list, chat area and presentation are hidden by default." : "Bu seçenek kullanıma alındığında, kullanıcı listesi, sohbet alanı ve sunum varsayılan olarak gizlenir.", + "If enabled, all users will join the meeting muted." : "Bu seçenek kullanıma alındığında, tüm kullanıcılar görüşmeye sesi kapalı olarak katılır.", "Edit \"{room}\"" : "“{room}” düzenle", "Room URL" : "Oda adresi", "Welcome" : "Hoş geldiniz", "Participant limit" : "Katılımcı sınırı", + "Sharing" : "Paylaşılıyor", "Every participant is moderator" : "Her katılımcı sorumlu olur", "Moderator access via URL" : "Adres ile sorumlu erişimi", "Miscellaneous" : "Çeşitli", @@ -89,10 +93,11 @@ OC.L10N.register( "Require moderator to start room" : "Odayı ancak sorumlu başlatabilsin", "Listen only option" : "Yalnızca dinleme seçeneği", "Skip media check before usage" : "Kullanımdan önce ortam denetimi yapılmasın", - "Clean layout" : "Görünümü temizle", + "Clean layout" : "Yerleşimi temizle", "Join meeting muted" : "Görüşmeye ses kapalı katılınsın", "Room name" : "Oda adı", "Create" : "Ekle", + "Published" : "Yayınlanmış", "Open recording" : "Kaydı aç", "Copy to clipboard" : "Panoya kopyala", "Save as file" : "Dosyayı farklı kaydet", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "Silinsin mi?", "Could not delete record" : "Kayıt silinemedi", "Server error" : "Sunucu sorunu", - "moderator" : "sorumlu", - "admin" : "yönetici", - "Share" : "Paylaş", + "Could not modify publishing state" : "Yayınlanma durumu değiştirilemedi", + "Open room" : "Odayı aç", + "Start" : "Başlat", + "Clone room" : "Odayı kopyala", "Loading" : "Yükleniyor", "You are not allowed to change this option, because this room is shared with you." : "Bu oda sizinle paylaşılmış olduğundan bu ayarı değiştiremezsiniz.", "Max. rooms" : "En fazla oda sayısı", diff --git a/l10n/tr.json b/l10n/tr.json index e3e27a5..e69ca89 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -10,7 +10,7 @@ "{user} started a meeting in the \"%s\" room." : "{user} \"%s\" odasında bir toplantı başlattı.", "The meeting in room \"%s\" has ended." : "\"%s\" odasındaki toplantı sona erdi.", "Recording for room \"%s\" is ready." : "\"%s\" odasındaki toplantı kaydı hazır.", - "To invite someone to the meeting, send them this link: %s" : "Görüşmeye birini çağırmak için şu bağlantıyı gönderin: %s", + "To invite someone to the meeting, send them this link: %s" : "Görüşmeye birini davet etmek için şu bağlantıyı gönderin: %s", "Public" : "Herkese açık", "Internal + Password protection for guests" : "Konuklar için İç + Parola koruması", "Internal + Waiting room for guests" : "Konuklar için İç + Parola koruması", @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "API adresi ya da parolası yapılandırılmamış. Lütfen BT yöneticiniz ile görüşün.", "BigBlueButton Integration" : "BigBlueButton bütünleştirmesi", "BigBlueButton integration for Nextcloud" : "Nextcloud için BigBlueButton bütünleştirmesi", - "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message …\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "Bu uygulama bir dış [BigBlueButton](https://bigbluebutton.org) kurulumu ile toplantı yapılabilmesini sağlar.\n\n* **Oda kurulumu** Ad ve hoş geldiniz iletisi ile birçok oda yapılandırması oluşturulabilir, ...\n* **Konuk bağlantısı paylaşımı** Toplantı bağlantısı tüm konuklar ile paylaşılabilir\n* **Sorumlu bağlantısı paylaşımı** Odaya sorumlular çağrılabilir\n* **Oda paylaşımı** Odalar üyeler, gruplar ve çevreler ile paylaşılabilir\n* **Özel sunum** Oda, dosya gezgininizden seçebileceğiniz bir sunum ile başlatılabilir\n* **Kayıt yönetimi** Oda kayıtları görülebilir, paylaşılabilir ve silinebilir\n* **Kısıtlamalar** Yalnızca belirli grupların oda oluşturması sağlanabilir\n* **İşlemler** Oda işlemlerinin özeti görülebilir\n\nHIzlı başlangıç ve ayrıntılı bilgiler için [readme](https://github.com/sualko/cloud_bbb) dosyasına bakabilirsiniz.\nBu uygulama hoşunuza gitti mi? Destek olmak için açık kaynak topluluğuna\n[katkıda bulunma yollarına ](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md) bakabilirsiniz.\n\nGeliştiriciler aranıyor! Zamanınız varsa ve bu uygulamayı geliştirmemize yardım edebilirseniz harika olur.\n\n*Bu uygulama BigBlueButton ile bütünleştirme sağlar ve BigBlueButton Inc. tarafından herhangi bir onay ya da sertifika almamıştır. BigBlueButton ve BigBlueButton Logosu, BigBlueButton Inc. kuruluşunun tescilli ticari markalarıdır.*", + "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.*" : "Bu uygulama bir dış [BigBlueButton](https://bigbluebutton.org) kurulumu ile toplantı yapılabilmesini sağlar.\n\n* **Oda kurulumu** Ad ve hoş geldiniz iletisi ile birçok oda yapılandırması oluşturulabilir, ...\n* **Konuk bağlantısı paylaşımı** Toplantı bağlantısı tüm konuklar ile paylaşılabilir\n* **Sorumlu bağlantısı paylaşımı** Odaya sorumlular davet edilebilir\n* **Oda paylaşımı** Odalar üyeler, gruplar ve takımlar ile paylaşılabilir\n* **Özel sunum** Oda, dosya gezgininizden seçebileceğiniz bir sunum ile başlatılabilir\n* **Kayıt yönetimi** Oda kayıtları görülebilir, paylaşılabilir ve silinebilir\n* **Kısıtlamalar** Yalnızca belirli grupların oda oluşturması sağlanabilir\n* **İşlemler** Oda işlemlerinin özeti görülebilir\n\nHIzlı başlangıç ve ayrıntılı bilgiler için [readme](https://github.com/littleredbutton/cloud_bbb) dosyasına bakabilirsiniz.\nBu uygulama hoşunuza gitti mi? Destek olmak için açık kaynak topluluğuna\n[katkıda bulunma yollarına ](https://github.com/littleredbutton/cloud_bbb/blob/master/.github/contributing.md) bakabilirsiniz.\n\nKatkıda bulunmak isteyenleri bekliyoruz! Zamanınız varsa ve bu uygulamayı geliştirmemize yardım edebilirseniz harika olur.\n\n*Bu uygulama BigBlueButton ile bütünleştirme sağlar ve BigBlueButton Inc. tarafından herhangi bir onay ya da sertifika almamıştır. BigBlueButton ve BigBlueButton Logosu, BigBlueButton Inc. kuruluşunun tescilli ticari markalarıdır.*", "Room not found" : "Oda bulunamadı", "The room could not be found. Maybe it was deleted?" : "Oda bulunamadı. Silinmiş olabilir mi?", "Back to %s" : "%s ögesine dön", @@ -54,6 +54,9 @@ "Group" : "Grup", "Searching" : "Aranıyor", "No matches" : "Eşleşme yok", + "admin" : "yönetici", + "moderator" : "sorumlu", + "user" : "kullanıcı", "Name" : "Ad", "Access" : "Erişim", "Max" : "En fazla", @@ -66,20 +69,21 @@ "Descriptive name of this room." : "Odayı açıklayan ad.", "This message is shown to all users in the chat area after they joined." : "Katılan tüm kullanıcılara sohbet alanında bu ileti görüntülenir.", "Sets a limit on the number of participants for this room. Zero means there is no limit." : "Bu odanın katılımcı sayısı sınırını belirler. Sıfır yazıldığında sınırlama uygulanmaz.", - "If enabled, the moderator is able to start the recording." : "Bu seçenek etkinleştirildiğinde, sorumlu toplantıyı kaydedebilir.", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "Herkese açık: Bağlantıyı bilen herkes toplantıya katılabilir. Parola: Toplantıya katılabilmek için konukların parolayı bilmesi gerekir. Bekleme odası: Konukların toplantıya katılabilmesi için sorumlu tarafından kabul edilmeleri gerekir. İç: Toplantıya yalnızca Nextcloud kullanıcıları katılabilir.", + "If enabled, the moderator is able to start the recording." : "Bu seçenek kullanıma alındığında, sorumlu toplantıyı kaydedebilir.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "Erişim seçeneklerinin açıklaması:
- Herkese açık: Bağlantıyı bilen herkes katılabilir.
- İç: Yalnızca Nextcloud kullanıcıları katılabilir.
- Parola: Yalnızca parolayı bilen konuklar katılabilir.
- Bekleme odası: Konukların katılmadan önce bir sorumlu tarafından kabul edilmesi gerekir.
- Kısıtlı: Yalnızca seçilmiş kullanıcılar ve gruplar erişebilir.", "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." : "Bir sorunlu, katılımcıları çıkarma, sessize alma ya da sunucu olarak atama gibi işlemleri yapabilir. Sorumlu pozisyonundaki kullanıcılar br toplantıyı bitirebilir ya da varsayılan ayarlarını değiştirebilir.", - "If enabled, normal users have to wait until a moderator is in the room." : "Bu seçenek etkinleştirildiğinde, odaya bir sorumlu gelene kadar kullanıcıların beklemesi gerekir.", - "If enabled, a moderator URL is generated which allows access with moderator permission." : "Bu seçenek etkinleştirildiğinde, sorumlu yetkileri ile erişilebilecek bir sorumlu adresi oluşturulur.", + "If enabled, normal users have to wait until a moderator is in the room." : "Bu seçenek kullanıma alındığında, odaya bir sorumlu gelene kadar kullanıcıların beklemesi gerekir.", + "If enabled, a moderator URL is generated which allows access with moderator permission." : "Bu seçenek kullanıma alındığında, sorumlu yetkileri ile erişilebilecek bir sorumlu adresi oluşturulur.", "Only selected users and groups are allowed to access the room." : "Odaya yalnızca seçilmiş kullanıcı ve gruplar erişebilir.", - "If disabled, a microphone is needed to join the conference." : "Bu seçenek devre dışı bırakıldığında, görüşmeye katılabilmek için bir mikrofon gerekir.", - "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Bu seçenek etkinleştirildiğinde, kullanıcı ilk kez katılırken, bir yankı çağrısı ve bilgisayar kamerası ön izlemesi yapması gerekmez (BBB sunucu 2.3 sürümü ve üzeri için).", - "If enabled, the user list, chat area and presentation are hidden by default." : "Bu seçenek etkinleştirildiğinde, kullanıcı listesi, sohbet alanı ve sunum varsayılan olarak gizlenir.", - "If enabled, all users will join the meeting muted." : "Bu seçenek etkinleştirildiğinde, tüm kullanıcılar görüşmeye sesi kapalı olarak katılır.", + "If disabled, a microphone is needed to join the conference." : "Bu seçenek kapatıldığında, görüşmeye katılabilmek için bir mikrofon gerekir.", + "If enabled, the user has not to perform an echo call and webcam preview on the first join (available since BBB server 2.3)." : "Bu seçenek kullanıma alındığında, kullanıcı ilk kez katılırken, bir yankı çağrısı ve bilgisayar kamerası ön izlemesi yapması gerekmez (BBB sunucu 2.3 sürümü ve üzeri için).", + "If enabled, the user list, chat area and presentation are hidden by default." : "Bu seçenek kullanıma alındığında, kullanıcı listesi, sohbet alanı ve sunum varsayılan olarak gizlenir.", + "If enabled, all users will join the meeting muted." : "Bu seçenek kullanıma alındığında, tüm kullanıcılar görüşmeye sesi kapalı olarak katılır.", "Edit \"{room}\"" : "“{room}” düzenle", "Room URL" : "Oda adresi", "Welcome" : "Hoş geldiniz", "Participant limit" : "Katılımcı sınırı", + "Sharing" : "Paylaşılıyor", "Every participant is moderator" : "Her katılımcı sorumlu olur", "Moderator access via URL" : "Adres ile sorumlu erişimi", "Miscellaneous" : "Çeşitli", @@ -87,10 +91,11 @@ "Require moderator to start room" : "Odayı ancak sorumlu başlatabilsin", "Listen only option" : "Yalnızca dinleme seçeneği", "Skip media check before usage" : "Kullanımdan önce ortam denetimi yapılmasın", - "Clean layout" : "Görünümü temizle", + "Clean layout" : "Yerleşimi temizle", "Join meeting muted" : "Görüşmeye ses kapalı katılınsın", "Room name" : "Oda adı", "Create" : "Ekle", + "Published" : "Yayınlanmış", "Open recording" : "Kaydı aç", "Copy to clipboard" : "Panoya kopyala", "Save as file" : "Dosyayı farklı kaydet", @@ -109,9 +114,10 @@ "Delete?" : "Silinsin mi?", "Could not delete record" : "Kayıt silinemedi", "Server error" : "Sunucu sorunu", - "moderator" : "sorumlu", - "admin" : "yönetici", - "Share" : "Paylaş", + "Could not modify publishing state" : "Yayınlanma durumu değiştirilemedi", + "Open room" : "Odayı aç", + "Start" : "Başlat", + "Clone room" : "Odayı kopyala", "Loading" : "Yükleniyor", "You are not allowed to change this option, because this room is shared with you." : "Bu oda sizinle paylaşılmış olduğundan bu ayarı değiştiremezsiniz.", "Max. rooms" : "En fazla oda sayısı", diff --git a/l10n/ug.js b/l10n/ug.js index ad98458..c4ff9a5 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -1,15 +1,147 @@ OC.L10N.register( "bbb", { + "You created the room %s." : "ئۆينى% s قۇردىڭىز.", + "You deleted the room %s." : "ئۆينى% s ئۆچۈردىڭىز.", + "{user} deleted the room %s." : "{ئىشلەتكۈچى} ئۆينى% s ئۆچۈردى.", + "You shared the room %s with {shareWith}." : "ياتاقنى% s {shareWith with بىلەن ئورتاقلاشتىڭىز.", + "{user} shared the room %s with you." : "{ئىشلەتكۈچى} ياتاق% s نى سىز بىلەن ئورتاقلاشتى.", + "You unshared the room %s with {shareWith}." : "ئۆينى% s {shareWith with بىلەن ئورتاقلاشمىدىڭىز.", + "{user} unshared the room %s with you." : "{ئىشلەتكۈچى} ئۆينى% s بىلەن ئورتاقلاشمىدى.", + "You started a meeting in the \"%s\" room." : "سىز «% s» ئۆيىدە يىغىن باشلىدىڭىز.", + "{user} started a meeting in the \"%s\" room." : "{user} \"% s\" ئۆيىدە يىغىن باشلىدى.", + "The meeting in room \"%s\" has ended." : "«% S» دىكى يىغىن ئاخىرلاشتى.", + "Recording for room \"%s\" is ready." : "ياتاق «% s» نى خاتىرىلەش تەييار.", + "To invite someone to the meeting, send them this link: %s" : "باشقىلارنى يىغىنغا تەكلىپ قىلىش ئۈچۈن ، ئۇلارغا بۇ ئۇلىنىشنى ئەۋەتىڭ:% s", + "Public" : "جامائەت", + "Internal + Password protection for guests" : "مېھمانلارغا ئىچكى + پارول قوغداش", + "Internal + Waiting room for guests" : "ئىچكى + مېھمانلارنى كۈتۈش ئۆيى", + "Waiting room for all users" : "بارلىق ئىشلەتكۈچىلەرنى كۈتۈش ئۆيى", + "Internal" : "ئىچكى", + "Internal restricted" : "ئىچكى چەكلەنگەن", + "API URL or secret not configured. Please contact your administrator." : "API URL ياكى مەخپىي تەڭشەلمىگەن. باشقۇرغۇچىڭىز بىلەن ئالاقىلىشىڭ.", + "BigBlueButton Integration" : "BigBlueButton بىرلەشتۈرۈش", + "BigBlueButton integration for Nextcloud" : "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 شىركىتى تەرىپىدىن تەستىقلانمايدۇ ياكى ئېتىراپ قىلىنمايدۇ BigBlueButton ۋە BigBlueButton Logo بولسا BigBlueButton شىركىتىنىڭ ماركىسى. *", + "Room not found" : "ياتاق تېپىلمىدى", + "The room could not be found. Maybe it was deleted?" : "ياتاق تاپالمىدى. بەلكىم ئۆچۈرۈلگەن بولۇشى مۇمكىن؟", + "Back to %s" : "% S گە قايتىش", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "BigBlueButton مۇلازىمېتىرىڭىزدا «sudo bbb-conf --secret» نى ئىجرا قىلىش ئارقىلىق API URL ۋە مەخپىيەتلىكىڭىزنى ئېلىڭ.", + "API URL" : "API URL", + "API secret" : "API مەخپىيىتى", "Save" : "ساقلا", + "Show room manager in app navigation instead of settings page." : "تەڭشەك بېتىنىڭ ئورنىغا ئەپ يېتەكچىسىدە ياتاق باشقۇرغۇچىنى كۆرسەت.", + "Use Nextcloud theme in BigBlueButton." : "BigclueButton دا Nextcloud تېمىسىنى ئىشلىتىڭ.", + "Default Room Settings" : "كۆڭۈلدىكى ئۆي تەڭشىكى", + "Below you can change some default values, which are used to create a new room." : "تۆۋەندە سىز يېڭى ئۆي قۇرۇشقا ئىشلىتىلىدىغان بىر قىسىم سۈكۈتتىكى قىممەتلەرنى ئۆزگەرتەلەيسىز.", + "Perform media check before usage" : "ئىشلىتىشتىن بۇرۇن مېدىيا تەكشۈرۈڭ", + "Community" : "مەھەللە", + "Are you enjoying this app? Give something back to the open source community." : "بۇ ئەپتىن ھۇزۇرلىنامسىز؟ ئوچۇق كودلۇق جەمئىيەتكە بىر نەرسە قايتۇرۇڭ.", + "Checkout the contributor guide" : "تۆھپىكارلار يېتەكچىسى", + "URL Shortener" : "URL Shortener", + "If you like to use shorter urls, you can enter a forwarding proxy below." : "ئەگەر قىسقا ئۇرل ئىشلىتىشنى ياقتۇرسىڭىز ، تۆۋەندىكى ۋاكالەتچىگە كىرسىڭىز بولىدۇ.", + "URL shortener" : "URL قىسقارغۇچ", + "Restrictions" : "چەكلىمىلەر", + "You will be forwarded to the room in the next few seconds." : "كەلگۈسى بىر نەچچە سېكۇنت ئىچىدە سىز ئۆيگە ئەۋەتىلىدۇ.", + "Let's go!" : "ماڭايلى!", + "Please enter your name!" : "ئىسمىڭىزنى كىرگۈزۈڭ!", + "The name must be at least 3 characters long." : "ئىسمى كەم دېگەندە 3 ھەرپ بولۇشى كېرەك.", + "You have to provide the correct password to join the meeting." : "يىغىنغا قاتنىشىش ئۈچۈن توغرا پارول بىلەن تەمىنلىشىڭىز كېرەك.", + "Display name" : "كۆرسىتىش ئىسمى", "Password" : "ئىم", + "Join" : "قوشۇلۇڭ", + "Have an account? Log in." : "ھېساباتىڭىز بارمۇ؟ كىرىڭ.", + "Hello %s" : "ياخشىمۇسىز% s", + "Name, group …" : "ئىسىم ، گۇرۇپپا…", "Group" : "Group", + "Searching" : "ئىزدەش", + "No matches" : "ماس كەلمەيدۇ", + "admin" : "admin", + "moderator" : "رىياسەتچى", + "user" : "ئىشلەتكۈچى", "Name" : "ئاتى", + "Access" : "زىيارەت", + "Max" : "Max", + "Record" : "Record", + "Recordings" : "Recordings", + "You are not permitted to create a room." : "ياتاق قۇرۇشىڭىزغا رۇخسەت قىلىنمايدۇ.", + "You exceeded the maximum number of rooms." : "ئەڭ كۆپ ئۆي سانىدىن ئېشىپ كەتتىڭىز.", + "Room quota:" : "ياتاق نورمىسى:", "Edit" : "تەھرىر", + "Descriptive name of this room." : "بۇ ئۆينىڭ چۈشەندۈرۈش ئىسمى.", + "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." : "بۇ ئۆيگە قاتناشقۇچىلارنىڭ سانىغا چەك قويىدۇ. نۆل دېگەنلىك چەك يوق.", + "If enabled, the moderator is able to start the recording." : "ئەگەر قوزغىتىلسا ، رىياسەتچى خاتىرىلەشنى باشلىيالايدۇ.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "زىيارەت تاللانمىلىرىنى تەشكىل قىلىدىغان ئوخشىمىغان ئۇقۇملارنىڭ ئىزاھاتى:
- ئاممىۋى: ئۇلانمىسى بارلار قوشۇلسا بولىدۇ. ..-
كۈتۈش ئۆيى: رىياسەتچى ھەر بىر مېھماننى قوشۇلۇشتىن بۇرۇن قوبۇل قىلىشى كېرەك.", + "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "رىياسەتچى تەپكۈچ ، ئاۋازسىز ياكى رىياسەتچى تاللاش قاتارلىق يىغىنغا قاتناشقانلارنىڭ ھەممىسىنى باشقۇرالايدۇ. رول رىياسەتچىسى بار ئابونتلارمۇ يىغىننى تاقايدۇ ياكى سۈكۈتتىكى تەڭشەكلەرنى ئۆزگەرتەلەيدۇ.", + "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 ھاسىل بولىدۇ.", + "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}\" نى تەھرىرلەڭ", + "Room URL" : "ياتاق URL", + "Welcome" : "خۇش كەپسىز", + "Participant limit" : "قاتناشقۇچىلارنىڭ چېكى", + "Sharing" : "ھەمبەھىر", + "Every participant is moderator" : "ھەر بىر قاتناشقۇچى رىياسەتچى", + "Moderator access via URL" : "رىياسەتچى URL ئارقىلىق زىيارەت قىلىدۇ", + "Miscellaneous" : "ھەرخىل", + "Recording" : "خاتىرىلەش", + "Require moderator to start room" : "رىياسەتچىدىن ئۆي ئېچىشنى تەلەپ قىلىڭ", + "Listen only option" : "پەقەت تاللاشنىلا ئاڭلاڭ", + "Skip media check before usage" : "ئىشلىتىشتىن بۇرۇن مېدىيا تەكشۈرۈشىدىن ئاتلاڭ", + "Clean layout" : "ئورۇنلاشتۇرۇش", + "Join meeting muted" : "ئاۋازسىز يىغىنغا قاتنىشىڭ", + "Room name" : "ياتاق ئىسمى", "Create" : "قۇر", + "Published" : "ئېلان قىلىندى", + "Open recording" : "خاتىرىلەشنى ئېچىڭ", + "Copy to clipboard" : "چاپلاش تاختىسىغا كۆچۈرۈڭ", + "Save as file" : "ھۆججەت سۈپىتىدە ساقلاڭ", "Delete" : "ئۆچۈر", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "«{Name}» نى ئۆچۈرمەكچىمۇ؟ بۇ مەشغۇلاتنى ئەمەلدىن قالدۇرغىلى بولمايدۇ.", + "Delete \"{name}\"?" : "ئۆچۈرۈڭ \"{name}\"?", + "Select target folder" : "نىشان ھۆججەت قىسقۇچىنى تاللاڭ", + "Room URL was stored in \"{path}\" as \"{filename}\"." : "ياتاق ئادرېسى \"{path}\" دا \"{ھۆججەت ئىسمى}\" سۈپىتىدە ساقلاندى.", + "Link stored" : "ئۇلىنىش ساقلانغان", + "URL to room could not be stored." : "ياتاقتىكى URL نى ساقلىغىلى بولمايدۇ.", "Error" : "خاتالىق", - "Share" : "ھەمبەھىر", - "Loading" : "Loading" + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "تونۇشتۇرۇش ئادرېسى «{path}» دا «{ھۆججەت ئىسمى}» سۈپىتىدە ساقلانغان.", + "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?" : "ئۆچۈرەمسىز؟", + "Could not delete record" : "خاتىرىنى ئۆچۈرەلمىدى", + "Server error" : "مۇلازىمېتىر خاتالىقى", + "Could not modify publishing state" : "نەشرىيات ھالىتىنى ئۆزگەرتەلمىدى", + "Open room" : "ئوچۇق ئۆي", + "Start" : "باشلاش", + "Clone room" : "كلون ئۆي", + "Loading" : "Loading", + "You are not allowed to change this option, because this room is shared with you." : "بۇ تاللاشنى ئۆزگەرتىشىڭىزگە رۇخسەت قىلىنمايدۇ ، چۈنكى بۇ ئۆي سىز بىلەن ئورتاقلاشقان.", + "Max. rooms" : "Max. ياتاق", + "Max. participants" : "Max. قاتناشقۇچىلار", + "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." : "چەكلىمىلەر ھازىرقى ئۆيلەرگە تەسىر كۆرسەتمەيدۇ. Minus one بولسا قىممەتنىڭ چەكسىز ئىكەنلىكىنى كۆرسىتىدۇ. ئەگەر كۆپ چەكلىمىلەر قوللىنىلسا ، ھەر بىر ئىشلەتكۈچى ئۈچۈن ئەڭ ئاز چەكلەش ئۇسۇلى تاللىنىدۇ.", + "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "«{Name}» گۇرۇپپىسىنىڭ چەكلىمىسىنى ئۆچۈرمەكچىمۇ؟ بۇ مەشغۇلاتنى ئەمەلدىن قالدۇرغىلى بولمايدۇ.", + "Delete restrictions for \"{name}\"?" : "\"{Name}\" چەكلىمىسىنى ئۆچۈرۈڭ؟", + "Settings saved" : "تەڭشەكلەر ساقلاندى", + "Unexpected error occurred" : "ئويلىمىغان خاتالىق يۈز بەردى", + "API URL is invalid" : "API URL ئىناۋەتسىز", + "API secret is invalid" : "API مەخپىيىتى ئىناۋەتسىز", + "URL has to start with HTTPS" : "URL نى HTTPS دىن باشلاش كېرەك", + "URL has to contain the {token} placeholder" : "URL دا {بەلگە} ئورۇن ئىگىسى بولۇشى كېرەك", + "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL چوقۇم https: // دىن باشلىنىشى ھەمدە {بەلگە} نى ئۆز ئىچىگە ئېلىشى كېرەك. بۇنىڭدىن باشقا ، {ئىشلەتكۈچى} ئورۇن ئىگىسىنى ئىشلىتىشكە بولىدۇ.", + "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. Maybe your BigBlueButton server does not support this action." : "«{ھۆججەت ئىسمى}» ھۆججىتىنى ئۆيىڭىزگە يۈكلەشكە بولمىدى. بەلكىم BigBlueButton مۇلازىمېتىرىڭىز بۇ ھەرىكەتنى قوللىماسلىقى مۇمكىن.", + "Send file to BBB" : "BBB غا ھۆججەت ئەۋەتىڭ", + "Send to" : "ئەۋەتىش", + "Start with" : "بىلەن باشلاڭ", + "Please select the room in which you like to use the file \"{filename}\"." : "«{ھۆججەت ئىسمى}» ھۆججىتىنى ئىشلىتىشنى ياخشى كۆرىدىغان ئۆينى تاللاڭ.", + "No rooms available!" : "ياتاق يوق!", + "Send to BBB" : "BBB غا ئەۋەتىڭ" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ug.json b/l10n/ug.json index 00e767d..67ae2e3 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -1,13 +1,145 @@ { "translations": { + "You created the room %s." : "ئۆينى% s قۇردىڭىز.", + "You deleted the room %s." : "ئۆينى% s ئۆچۈردىڭىز.", + "{user} deleted the room %s." : "{ئىشلەتكۈچى} ئۆينى% s ئۆچۈردى.", + "You shared the room %s with {shareWith}." : "ياتاقنى% s {shareWith with بىلەن ئورتاقلاشتىڭىز.", + "{user} shared the room %s with you." : "{ئىشلەتكۈچى} ياتاق% s نى سىز بىلەن ئورتاقلاشتى.", + "You unshared the room %s with {shareWith}." : "ئۆينى% s {shareWith with بىلەن ئورتاقلاشمىدىڭىز.", + "{user} unshared the room %s with you." : "{ئىشلەتكۈچى} ئۆينى% s بىلەن ئورتاقلاشمىدى.", + "You started a meeting in the \"%s\" room." : "سىز «% s» ئۆيىدە يىغىن باشلىدىڭىز.", + "{user} started a meeting in the \"%s\" room." : "{user} \"% s\" ئۆيىدە يىغىن باشلىدى.", + "The meeting in room \"%s\" has ended." : "«% S» دىكى يىغىن ئاخىرلاشتى.", + "Recording for room \"%s\" is ready." : "ياتاق «% s» نى خاتىرىلەش تەييار.", + "To invite someone to the meeting, send them this link: %s" : "باشقىلارنى يىغىنغا تەكلىپ قىلىش ئۈچۈن ، ئۇلارغا بۇ ئۇلىنىشنى ئەۋەتىڭ:% s", + "Public" : "جامائەت", + "Internal + Password protection for guests" : "مېھمانلارغا ئىچكى + پارول قوغداش", + "Internal + Waiting room for guests" : "ئىچكى + مېھمانلارنى كۈتۈش ئۆيى", + "Waiting room for all users" : "بارلىق ئىشلەتكۈچىلەرنى كۈتۈش ئۆيى", + "Internal" : "ئىچكى", + "Internal restricted" : "ئىچكى چەكلەنگەن", + "API URL or secret not configured. Please contact your administrator." : "API URL ياكى مەخپىي تەڭشەلمىگەن. باشقۇرغۇچىڭىز بىلەن ئالاقىلىشىڭ.", + "BigBlueButton Integration" : "BigBlueButton بىرلەشتۈرۈش", + "BigBlueButton integration for Nextcloud" : "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 شىركىتى تەرىپىدىن تەستىقلانمايدۇ ياكى ئېتىراپ قىلىنمايدۇ BigBlueButton ۋە BigBlueButton Logo بولسا BigBlueButton شىركىتىنىڭ ماركىسى. *", + "Room not found" : "ياتاق تېپىلمىدى", + "The room could not be found. Maybe it was deleted?" : "ياتاق تاپالمىدى. بەلكىم ئۆچۈرۈلگەن بولۇشى مۇمكىن؟", + "Back to %s" : "% S گە قايتىش", + "Get your API URL and secret by executing \"sudo bbb-conf --secret\" on your BigBlueButton server." : "BigBlueButton مۇلازىمېتىرىڭىزدا «sudo bbb-conf --secret» نى ئىجرا قىلىش ئارقىلىق API URL ۋە مەخپىيەتلىكىڭىزنى ئېلىڭ.", + "API URL" : "API URL", + "API secret" : "API مەخپىيىتى", "Save" : "ساقلا", + "Show room manager in app navigation instead of settings page." : "تەڭشەك بېتىنىڭ ئورنىغا ئەپ يېتەكچىسىدە ياتاق باشقۇرغۇچىنى كۆرسەت.", + "Use Nextcloud theme in BigBlueButton." : "BigclueButton دا Nextcloud تېمىسىنى ئىشلىتىڭ.", + "Default Room Settings" : "كۆڭۈلدىكى ئۆي تەڭشىكى", + "Below you can change some default values, which are used to create a new room." : "تۆۋەندە سىز يېڭى ئۆي قۇرۇشقا ئىشلىتىلىدىغان بىر قىسىم سۈكۈتتىكى قىممەتلەرنى ئۆزگەرتەلەيسىز.", + "Perform media check before usage" : "ئىشلىتىشتىن بۇرۇن مېدىيا تەكشۈرۈڭ", + "Community" : "مەھەللە", + "Are you enjoying this app? Give something back to the open source community." : "بۇ ئەپتىن ھۇزۇرلىنامسىز؟ ئوچۇق كودلۇق جەمئىيەتكە بىر نەرسە قايتۇرۇڭ.", + "Checkout the contributor guide" : "تۆھپىكارلار يېتەكچىسى", + "URL Shortener" : "URL Shortener", + "If you like to use shorter urls, you can enter a forwarding proxy below." : "ئەگەر قىسقا ئۇرل ئىشلىتىشنى ياقتۇرسىڭىز ، تۆۋەندىكى ۋاكالەتچىگە كىرسىڭىز بولىدۇ.", + "URL shortener" : "URL قىسقارغۇچ", + "Restrictions" : "چەكلىمىلەر", + "You will be forwarded to the room in the next few seconds." : "كەلگۈسى بىر نەچچە سېكۇنت ئىچىدە سىز ئۆيگە ئەۋەتىلىدۇ.", + "Let's go!" : "ماڭايلى!", + "Please enter your name!" : "ئىسمىڭىزنى كىرگۈزۈڭ!", + "The name must be at least 3 characters long." : "ئىسمى كەم دېگەندە 3 ھەرپ بولۇشى كېرەك.", + "You have to provide the correct password to join the meeting." : "يىغىنغا قاتنىشىش ئۈچۈن توغرا پارول بىلەن تەمىنلىشىڭىز كېرەك.", + "Display name" : "كۆرسىتىش ئىسمى", "Password" : "ئىم", + "Join" : "قوشۇلۇڭ", + "Have an account? Log in." : "ھېساباتىڭىز بارمۇ؟ كىرىڭ.", + "Hello %s" : "ياخشىمۇسىز% s", + "Name, group …" : "ئىسىم ، گۇرۇپپا…", "Group" : "Group", + "Searching" : "ئىزدەش", + "No matches" : "ماس كەلمەيدۇ", + "admin" : "admin", + "moderator" : "رىياسەتچى", + "user" : "ئىشلەتكۈچى", "Name" : "ئاتى", + "Access" : "زىيارەت", + "Max" : "Max", + "Record" : "Record", + "Recordings" : "Recordings", + "You are not permitted to create a room." : "ياتاق قۇرۇشىڭىزغا رۇخسەت قىلىنمايدۇ.", + "You exceeded the maximum number of rooms." : "ئەڭ كۆپ ئۆي سانىدىن ئېشىپ كەتتىڭىز.", + "Room quota:" : "ياتاق نورمىسى:", "Edit" : "تەھرىر", + "Descriptive name of this room." : "بۇ ئۆينىڭ چۈشەندۈرۈش ئىسمى.", + "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." : "بۇ ئۆيگە قاتناشقۇچىلارنىڭ سانىغا چەك قويىدۇ. نۆل دېگەنلىك چەك يوق.", + "If enabled, the moderator is able to start the recording." : "ئەگەر قوزغىتىلسا ، رىياسەتچى خاتىرىلەشنى باشلىيالايدۇ.", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "زىيارەت تاللانمىلىرىنى تەشكىل قىلىدىغان ئوخشىمىغان ئۇقۇملارنىڭ ئىزاھاتى:
- ئاممىۋى: ئۇلانمىسى بارلار قوشۇلسا بولىدۇ. ..-
كۈتۈش ئۆيى: رىياسەتچى ھەر بىر مېھماننى قوشۇلۇشتىن بۇرۇن قوبۇل قىلىشى كېرەك.", + "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "رىياسەتچى تەپكۈچ ، ئاۋازسىز ياكى رىياسەتچى تاللاش قاتارلىق يىغىنغا قاتناشقانلارنىڭ ھەممىسىنى باشقۇرالايدۇ. رول رىياسەتچىسى بار ئابونتلارمۇ يىغىننى تاقايدۇ ياكى سۈكۈتتىكى تەڭشەكلەرنى ئۆزگەرتەلەيدۇ.", + "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 ھاسىل بولىدۇ.", + "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}\" نى تەھرىرلەڭ", + "Room URL" : "ياتاق URL", + "Welcome" : "خۇش كەپسىز", + "Participant limit" : "قاتناشقۇچىلارنىڭ چېكى", + "Sharing" : "ھەمبەھىر", + "Every participant is moderator" : "ھەر بىر قاتناشقۇچى رىياسەتچى", + "Moderator access via URL" : "رىياسەتچى URL ئارقىلىق زىيارەت قىلىدۇ", + "Miscellaneous" : "ھەرخىل", + "Recording" : "خاتىرىلەش", + "Require moderator to start room" : "رىياسەتچىدىن ئۆي ئېچىشنى تەلەپ قىلىڭ", + "Listen only option" : "پەقەت تاللاشنىلا ئاڭلاڭ", + "Skip media check before usage" : "ئىشلىتىشتىن بۇرۇن مېدىيا تەكشۈرۈشىدىن ئاتلاڭ", + "Clean layout" : "ئورۇنلاشتۇرۇش", + "Join meeting muted" : "ئاۋازسىز يىغىنغا قاتنىشىڭ", + "Room name" : "ياتاق ئىسمى", "Create" : "قۇر", + "Published" : "ئېلان قىلىندى", + "Open recording" : "خاتىرىلەشنى ئېچىڭ", + "Copy to clipboard" : "چاپلاش تاختىسىغا كۆچۈرۈڭ", + "Save as file" : "ھۆججەت سۈپىتىدە ساقلاڭ", "Delete" : "ئۆچۈر", + "Are you sure you want to delete \"{name}\"? This operation cannot be undone." : "«{Name}» نى ئۆچۈرمەكچىمۇ؟ بۇ مەشغۇلاتنى ئەمەلدىن قالدۇرغىلى بولمايدۇ.", + "Delete \"{name}\"?" : "ئۆچۈرۈڭ \"{name}\"?", + "Select target folder" : "نىشان ھۆججەت قىسقۇچىنى تاللاڭ", + "Room URL was stored in \"{path}\" as \"{filename}\"." : "ياتاق ئادرېسى \"{path}\" دا \"{ھۆججەت ئىسمى}\" سۈپىتىدە ساقلاندى.", + "Link stored" : "ئۇلىنىش ساقلانغان", + "URL to room could not be stored." : "ياتاقتىكى URL نى ساقلىغىلى بولمايدۇ.", "Error" : "خاتالىق", - "Share" : "ھەمبەھىر", - "Loading" : "Loading" + "URL to presentation was stored in \"{path}\" as \"{filename}\"." : "تونۇشتۇرۇش ئادرېسى «{path}» دا «{ھۆججەت ئىسمى}» سۈپىتىدە ساقلانغان.", + "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?" : "ئۆچۈرەمسىز؟", + "Could not delete record" : "خاتىرىنى ئۆچۈرەلمىدى", + "Server error" : "مۇلازىمېتىر خاتالىقى", + "Could not modify publishing state" : "نەشرىيات ھالىتىنى ئۆزگەرتەلمىدى", + "Open room" : "ئوچۇق ئۆي", + "Start" : "باشلاش", + "Clone room" : "كلون ئۆي", + "Loading" : "Loading", + "You are not allowed to change this option, because this room is shared with you." : "بۇ تاللاشنى ئۆزگەرتىشىڭىزگە رۇخسەت قىلىنمايدۇ ، چۈنكى بۇ ئۆي سىز بىلەن ئورتاقلاشقان.", + "Max. rooms" : "Max. ياتاق", + "Max. participants" : "Max. قاتناشقۇچىلار", + "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." : "چەكلىمىلەر ھازىرقى ئۆيلەرگە تەسىر كۆرسەتمەيدۇ. Minus one بولسا قىممەتنىڭ چەكسىز ئىكەنلىكىنى كۆرسىتىدۇ. ئەگەر كۆپ چەكلىمىلەر قوللىنىلسا ، ھەر بىر ئىشلەتكۈچى ئۈچۈن ئەڭ ئاز چەكلەش ئۇسۇلى تاللىنىدۇ.", + "Are you sure you want to delete the restrictions for group \"{name}\"? This operation cannot be undone." : "«{Name}» گۇرۇپپىسىنىڭ چەكلىمىسىنى ئۆچۈرمەكچىمۇ؟ بۇ مەشغۇلاتنى ئەمەلدىن قالدۇرغىلى بولمايدۇ.", + "Delete restrictions for \"{name}\"?" : "\"{Name}\" چەكلىمىسىنى ئۆچۈرۈڭ؟", + "Settings saved" : "تەڭشەكلەر ساقلاندى", + "Unexpected error occurred" : "ئويلىمىغان خاتالىق يۈز بەردى", + "API URL is invalid" : "API URL ئىناۋەتسىز", + "API secret is invalid" : "API مەخپىيىتى ئىناۋەتسىز", + "URL has to start with HTTPS" : "URL نى HTTPS دىن باشلاش كېرەك", + "URL has to contain the {token} placeholder" : "URL دا {بەلگە} ئورۇن ئىگىسى بولۇشى كېرەك", + "URL has to start with https:// and contain {token}. Additionally the {user} placeholder can be used." : "URL چوقۇم https: // دىن باشلىنىشى ھەمدە {بەلگە} نى ئۆز ئىچىگە ئېلىشى كېرەك. بۇنىڭدىن باشقا ، {ئىشلەتكۈچى} ئورۇن ئىگىسىنى ئىشلىتىشكە بولىدۇ.", + "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. Maybe your BigBlueButton server does not support this action." : "«{ھۆججەت ئىسمى}» ھۆججىتىنى ئۆيىڭىزگە يۈكلەشكە بولمىدى. بەلكىم BigBlueButton مۇلازىمېتىرىڭىز بۇ ھەرىكەتنى قوللىماسلىقى مۇمكىن.", + "Send file to BBB" : "BBB غا ھۆججەت ئەۋەتىڭ", + "Send to" : "ئەۋەتىش", + "Start with" : "بىلەن باشلاڭ", + "Please select the room in which you like to use the file \"{filename}\"." : "«{ھۆججەت ئىسمى}» ھۆججىتىنى ئىشلىتىشنى ياخشى كۆرىدىغان ئۆينى تاللاڭ.", + "No rooms available!" : "ياتاق يوق!", + "Send to BBB" : "BBB غا ئەۋەتىڭ" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/uk.js b/l10n/uk.js index aaaec1f..cd29bee 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -26,6 +26,8 @@ OC.L10N.register( "Group" : "Група", "Searching" : "Пошук", "No matches" : "Немає збігів", + "admin" : "адміністратор", + "moderator" : "модератор", "Name" : "Ім'я", "Access" : "Доступ", "Max" : "Щонайбільше", @@ -39,10 +41,12 @@ OC.L10N.register( "Edit \"{room}\"" : "Редагувати \"{room}\"", "Welcome" : "Вітання", "Participant limit" : "Обмеження учасників", + "Sharing" : "Спільне", "Miscellaneous" : "Різне", "Recording" : "Запис", "Room name" : "Назва кімнати", "Create" : "Створити", + "Published" : "Опубліковано", "Copy to clipboard" : "Копіювати до буферу обміну", "_%n participant_::_%n participants_" : ["% учасник","% учасників","% учасників","% учасників"], "Delete" : "Вилучити", @@ -57,9 +61,7 @@ OC.L10N.register( "Delete?" : "Вилучити", "Could not delete record" : "Неможливо вилучити запис", "Server error" : "Помилка серверу", - "moderator" : "модератор", - "admin" : "адміністратор", - "Share" : "Спільний доступ", + "Start" : "Початок", "Loading" : "Завантаження", "Settings saved" : "Налаштування збережено", "Unexpected error occurred" : "Неочікувана помилка", diff --git a/l10n/uk.json b/l10n/uk.json index edbeb9f..713a6be 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -24,6 +24,8 @@ "Group" : "Група", "Searching" : "Пошук", "No matches" : "Немає збігів", + "admin" : "адміністратор", + "moderator" : "модератор", "Name" : "Ім'я", "Access" : "Доступ", "Max" : "Щонайбільше", @@ -37,10 +39,12 @@ "Edit \"{room}\"" : "Редагувати \"{room}\"", "Welcome" : "Вітання", "Participant limit" : "Обмеження учасників", + "Sharing" : "Спільне", "Miscellaneous" : "Різне", "Recording" : "Запис", "Room name" : "Назва кімнати", "Create" : "Створити", + "Published" : "Опубліковано", "Copy to clipboard" : "Копіювати до буферу обміну", "_%n participant_::_%n participants_" : ["% учасник","% учасників","% учасників","% учасників"], "Delete" : "Вилучити", @@ -55,9 +59,7 @@ "Delete?" : "Вилучити", "Could not delete record" : "Неможливо вилучити запис", "Server error" : "Помилка серверу", - "moderator" : "модератор", - "admin" : "адміністратор", - "Share" : "Спільний доступ", + "Start" : "Початок", "Loading" : "Завантаження", "Settings saved" : "Налаштування збережено", "Unexpected error occurred" : "Неочікувана помилка", diff --git a/l10n/ur_PK.js b/l10n/ur_PK.js index aeed62a..d0ef0b9 100644 --- a/l10n/ur_PK.js +++ b/l10n/ur_PK.js @@ -8,7 +8,6 @@ OC.L10N.register( "Edit" : "تدوین کریں", "Delete" : "حذف کریں", "Error" : "ایرر", - "Share" : "تقسیم", "Loading" : "Loading" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ur_PK.json b/l10n/ur_PK.json index 28ead2b..fd5593e 100644 --- a/l10n/ur_PK.json +++ b/l10n/ur_PK.json @@ -6,7 +6,6 @@ "Edit" : "تدوین کریں", "Delete" : "حذف کریں", "Error" : "ایرر", - "Share" : "تقسیم", "Loading" : "Loading" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/uz.js b/l10n/uz.js index 88ce678..5684305 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -4,6 +4,7 @@ OC.L10N.register( "Save" : "Save", "Password" : "Password", "Name" : "Name", + "Sharing" : "Ulashish", "Delete" : "Delete", "Error" : "Error", "Loading" : "Loading", diff --git a/l10n/uz.json b/l10n/uz.json index 034ab31..8c3d17d 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -2,6 +2,7 @@ "Save" : "Save", "Password" : "Password", "Name" : "Name", + "Sharing" : "Ulashish", "Delete" : "Delete", "Error" : "Error", "Loading" : "Loading", diff --git a/l10n/vi.js b/l10n/vi.js index 8ff363e..34b7fd2 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -24,6 +24,8 @@ OC.L10N.register( "Group" : "Nhóm", "Searching" : "Đang tìm kiếm", "No matches" : "Không phù hợp", + "admin" : "quản trị viên", + "moderator" : "Người kiểm duyệt", "Name" : "Tên", "Max" : "Tối đa", "Record" : "Ghi lại", @@ -33,9 +35,11 @@ OC.L10N.register( "Room URL" : "URL phòng", "Welcome" : "Chào mừng", "Participant limit" : "Giới hạn người tham gia", + "Sharing" : "Đang chia sẽ", "Miscellaneous" : "Khác", "Room name" : "Tên phòng", "Create" : "Tạo mới", + "Published" : "Đã đăng", "Open recording" : "Mở bản ghi", "Copy to clipboard" : "Sao chép vào clipboard", "Save as file" : "Lưu dưới dạng tệp", @@ -47,9 +51,7 @@ OC.L10N.register( "Error" : "Lỗi", "Delete?" : "Xoá?", "Server error" : "Lỗi máy chủ", - "moderator" : "Người kiểm duyệt", - "admin" : "quản trị viên", - "Share" : "Chia sẻ", + "Start" : "Bắt đầu", "Loading" : "Đang tải", "Settings saved" : "Cấu hình đã được lưu", "_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._" : ["Phòng này chưa mở. Chúng tôi sẽ thử lại trong %n giây. Xin đợi."] diff --git a/l10n/vi.json b/l10n/vi.json index f179069..eb54495 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -22,6 +22,8 @@ "Group" : "Nhóm", "Searching" : "Đang tìm kiếm", "No matches" : "Không phù hợp", + "admin" : "quản trị viên", + "moderator" : "Người kiểm duyệt", "Name" : "Tên", "Max" : "Tối đa", "Record" : "Ghi lại", @@ -31,9 +33,11 @@ "Room URL" : "URL phòng", "Welcome" : "Chào mừng", "Participant limit" : "Giới hạn người tham gia", + "Sharing" : "Đang chia sẽ", "Miscellaneous" : "Khác", "Room name" : "Tên phòng", "Create" : "Tạo mới", + "Published" : "Đã đăng", "Open recording" : "Mở bản ghi", "Copy to clipboard" : "Sao chép vào clipboard", "Save as file" : "Lưu dưới dạng tệp", @@ -45,9 +49,7 @@ "Error" : "Lỗi", "Delete?" : "Xoá?", "Server error" : "Lỗi máy chủ", - "moderator" : "Người kiểm duyệt", - "admin" : "quản trị viên", - "Share" : "Chia sẻ", + "Start" : "Bắt đầu", "Loading" : "Đang tải", "Settings saved" : "Cấu hình đã được lưu", "_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._" : ["Phòng này chưa mở. Chúng tôi sẽ thử lại trong %n giây. Xin đợi."] diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index 57f0fec..de1906c 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -48,12 +48,14 @@ OC.L10N.register( "Display name" : "显示名称", "Password" : "密码", "Join" : "加入", - "Have an account? Log in." : "有一个账户吗?登录。", + "Have an account? Log in." : "有一个账号?登录。", "Hello %s" : "%s 你好", "Name, group …" : "名称、群组 ...", "Group" : "群组", "Searching" : "搜索中", "No matches" : "无匹配项", + "admin" : "管理员", + "moderator" : "主持人", "Name" : "名称", "Access" : "投票范围", "Max" : "最大值", @@ -67,7 +69,6 @@ OC.L10N.register( "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." : "给此房间设置参与者数量的限制。零表示没有限制。", "If enabled, the moderator is able to start the recording." : "如果启用,主持人将可以使用录音。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公开:所有知道链接的人都可以加入。密码:访客必须提供密码。接待室:所有访客都需要经过主持人同意才能加入。内部:只有Nextcloud用户可以加入。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "主持人可以管理会议中的所有与会者,包括踢人、静音、选择主讲人等。具有主持人角色的用户还可以关闭会议或更改会议默认设置。 ", "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,允许以主持人权限访问。", @@ -80,6 +81,7 @@ OC.L10N.register( "Room URL" : "房间 URL", "Welcome" : "欢迎", "Participant limit" : "参与者限制", + "Sharing" : "共享", "Every participant is moderator" : "每个参与者都是主持人", "Moderator access via URL" : "支持人访问 URL", "Miscellaneous" : "杂项", @@ -91,6 +93,7 @@ OC.L10N.register( "Join meeting muted" : "静音加入会议", "Room name" : "房间名", "Create" : "创建", + "Published" : "已发布", "Open recording" : "打开录音", "Copy to clipboard" : "复制到剪贴板", "Save as file" : "保存为文件", @@ -109,9 +112,7 @@ OC.L10N.register( "Delete?" : "删除?", "Could not delete record" : "无法删除记录", "Server error" : "服务器错误", - "moderator" : "主持人", - "admin" : "管理员", - "Share" : "共享", + "Start" : "起点", "Loading" : "正在加载", "You are not allowed to change this option, because this room is shared with you." : "你不能更改此选项,因为此房间是与你共享的。", "Max. rooms" : "房间最大数目", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 84c647a..151962b 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -46,12 +46,14 @@ "Display name" : "显示名称", "Password" : "密码", "Join" : "加入", - "Have an account? Log in." : "有一个账户吗?登录。", + "Have an account? Log in." : "有一个账号?登录。", "Hello %s" : "%s 你好", "Name, group …" : "名称、群组 ...", "Group" : "群组", "Searching" : "搜索中", "No matches" : "无匹配项", + "admin" : "管理员", + "moderator" : "主持人", "Name" : "名称", "Access" : "投票范围", "Max" : "最大值", @@ -65,7 +67,6 @@ "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." : "给此房间设置参与者数量的限制。零表示没有限制。", "If enabled, the moderator is able to start the recording." : "如果启用,主持人将可以使用录音。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公开:所有知道链接的人都可以加入。密码:访客必须提供密码。接待室:所有访客都需要经过主持人同意才能加入。内部:只有Nextcloud用户可以加入。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "主持人可以管理会议中的所有与会者,包括踢人、静音、选择主讲人等。具有主持人角色的用户还可以关闭会议或更改会议默认设置。 ", "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,允许以主持人权限访问。", @@ -78,6 +79,7 @@ "Room URL" : "房间 URL", "Welcome" : "欢迎", "Participant limit" : "参与者限制", + "Sharing" : "共享", "Every participant is moderator" : "每个参与者都是主持人", "Moderator access via URL" : "支持人访问 URL", "Miscellaneous" : "杂项", @@ -89,6 +91,7 @@ "Join meeting muted" : "静音加入会议", "Room name" : "房间名", "Create" : "创建", + "Published" : "已发布", "Open recording" : "打开录音", "Copy to clipboard" : "复制到剪贴板", "Save as file" : "保存为文件", @@ -107,9 +110,7 @@ "Delete?" : "删除?", "Could not delete record" : "无法删除记录", "Server error" : "服务器错误", - "moderator" : "主持人", - "admin" : "管理员", - "Share" : "共享", + "Start" : "起点", "Loading" : "正在加载", "You are not allowed to change this option, because this room is shared with you." : "你不能更改此选项,因为此房间是与你共享的。", "Max. rooms" : "房间最大数目", diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index d69e08c..8674b5e 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "未設定 API URL 或密碼。請聯絡您的管理員。", "BigBlueButton Integration" : "BigBlueButton 整合", "BigBlueButton integration for Nextcloud" : "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "此應用程式讓您可以使用外部安裝的 [BigBlueButton](https://bigbluebutton.org)建立會議。\n\n* **聊天室設定** 使用名稱、歡迎訊息等設定建立多個聊天室\n* **分享訪客連結** 與您所有的訪客分享聊天室連結\n* **分享主持人連結** 邀請主持人至聊天室\n* **分享聊天室** 與成員、群組或小圈圈分享聊天室\n* **自訂簡報** 使用從您的檔案瀏覽程式選擇的簡報開始聊天室\n* **管理錄製** 檢視、分享與刪除您聊天室的錄製\n* **限制** 限制僅特定群組可建立聊天室\n* **活動** 取得您聊天室活動的概覽\n\n我們的[讀我檔案](https://github.com/sualko/cloud_bbb)有新手指南與進一步的資訊。\n您喜歡此應用程式嗎?給開源社群一些東西並看看我們的\n[貢獻方式](https://github.com/sualko/cloud_bbb/blob/master/。github/contributing.md)。\n\n需要開發者!如果您有時間,並想要協助強化此應用程式,那就太棒了。\n\n*此應用程式整合了 BigBlueButton,但未經 BigBlueButton 公司認可或認證。BigBlueButton 與 BigBlueButton 圖示是 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. 的商標。*", "Room not found" : "找不到聊天室", "The room could not be found. Maybe it was deleted?" : "找不到聊天室。或許它已經被刪除了?", "Back to %s" : "回到 %s", @@ -50,12 +50,15 @@ OC.L10N.register( "Display name" : "顯示名稱", "Password" : "密碼", "Join" : "加入", - "Have an account? Log in." : "有賬戶了?登入。", + "Have an account? Log in." : "有帳戶了?登入。", "Hello %s" : "%s 你好", "Name, group …" : "名稱、群組……", "Group" : "群組", "Searching" : "正在搜尋", "No matches" : "沒有符合的", + "admin" : "管理員", + "moderator" : "主持人", + "user" : "用戶", "Name" : "名稱", "Access" : "存取", "Max" : "最大", @@ -69,7 +72,7 @@ OC.L10N.register( "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." : "設定此聊天室的參與者數量限制。零代表無限制。", "If enabled, the moderator is able to start the recording." : "若啟用,主持人可以開始錄製。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公開:知道連結的所有人都可以加入。密碼:訪客必須提供密碼。等待聊天室:訪客必須等待主持人接受才能加入。內部:僅 Nextcloud 用戶可加入。", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "構成存取選項的不同概念的解釋:
- 公開:任何知道連結的人都可以加入。
- 內部:只有 Nextcloud 使用者可以加入。
- 密碼:只有擁有密碼的客人才能加入。
- 等候室:主持人必須接受每位客人才能加入。
- 受限:只有選定的使用者和群組可以存取此房間。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "主持人可以管理會面中的所有參與者,包含踢除、靜音或選擇演講者。具有主持人角色的用戶還可以關閉會議或變更預設的設定。", "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,讓有主持人權限的人存取。", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "聊天室 URL", "Welcome" : "歡迎", "Participant limit" : "參與者限制", + "Sharing" : "分享", "Every participant is moderator" : "每個參與者都是主持人", "Moderator access via URL" : "透過 URL 的主持人存取", "Miscellaneous" : "雜項", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "以靜音加入會議", "Room name" : "聊天室名稱", "Create" : "建立", + "Published" : "已發佈", "Open recording" : "開啟錄製", "Copy to clipboard" : "複製到剪貼板", "Save as file" : "另存為檔案", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "刪除?", "Could not delete record" : "無法刪除錄製", "Server error" : "伺服器錯誤", - "moderator" : "主持人", - "admin" : "管理員", - "Share" : "分享", + "Could not modify publishing state" : "無法修改發佈狀態", + "Open room" : "開啟聊天室", + "Start" : "開始", + "Clone room" : "複製聊天室", "Loading" : "正在載入", "You are not allowed to change this option, because this room is shared with you." : "您無權更改此選項,因為此聊天室是與您分享的。", "Max. rooms" : "聊天室數上限", diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 41cf98f..e522ec9 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "未設定 API URL 或密碼。請聯絡您的管理員。", "BigBlueButton Integration" : "BigBlueButton 整合", "BigBlueButton integration for Nextcloud" : "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "此應用程式讓您可以使用外部安裝的 [BigBlueButton](https://bigbluebutton.org)建立會議。\n\n* **聊天室設定** 使用名稱、歡迎訊息等設定建立多個聊天室\n* **分享訪客連結** 與您所有的訪客分享聊天室連結\n* **分享主持人連結** 邀請主持人至聊天室\n* **分享聊天室** 與成員、群組或小圈圈分享聊天室\n* **自訂簡報** 使用從您的檔案瀏覽程式選擇的簡報開始聊天室\n* **管理錄製** 檢視、分享與刪除您聊天室的錄製\n* **限制** 限制僅特定群組可建立聊天室\n* **活動** 取得您聊天室活動的概覽\n\n我們的[讀我檔案](https://github.com/sualko/cloud_bbb)有新手指南與進一步的資訊。\n您喜歡此應用程式嗎?給開源社群一些東西並看看我們的\n[貢獻方式](https://github.com/sualko/cloud_bbb/blob/master/。github/contributing.md)。\n\n需要開發者!如果您有時間,並想要協助強化此應用程式,那就太棒了。\n\n*此應用程式整合了 BigBlueButton,但未經 BigBlueButton 公司認可或認證。BigBlueButton 與 BigBlueButton 圖示是 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. 的商標。*", "Room not found" : "找不到聊天室", "The room could not be found. Maybe it was deleted?" : "找不到聊天室。或許它已經被刪除了?", "Back to %s" : "回到 %s", @@ -48,12 +48,15 @@ "Display name" : "顯示名稱", "Password" : "密碼", "Join" : "加入", - "Have an account? Log in." : "有賬戶了?登入。", + "Have an account? Log in." : "有帳戶了?登入。", "Hello %s" : "%s 你好", "Name, group …" : "名稱、群組……", "Group" : "群組", "Searching" : "正在搜尋", "No matches" : "沒有符合的", + "admin" : "管理員", + "moderator" : "主持人", + "user" : "用戶", "Name" : "名稱", "Access" : "存取", "Max" : "最大", @@ -67,7 +70,7 @@ "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." : "設定此聊天室的參與者數量限制。零代表無限制。", "If enabled, the moderator is able to start the recording." : "若啟用,主持人可以開始錄製。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公開:知道連結的所有人都可以加入。密碼:訪客必須提供密碼。等待聊天室:訪客必須等待主持人接受才能加入。內部:僅 Nextcloud 用戶可加入。", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "構成存取選項的不同概念的解釋:
- 公開:任何知道連結的人都可以加入。
- 內部:只有 Nextcloud 使用者可以加入。
- 密碼:只有擁有密碼的客人才能加入。
- 等候室:主持人必須接受每位客人才能加入。
- 受限:只有選定的使用者和群組可以存取此房間。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "主持人可以管理會面中的所有參與者,包含踢除、靜音或選擇演講者。具有主持人角色的用戶還可以關閉會議或變更預設的設定。", "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,讓有主持人權限的人存取。", @@ -80,6 +83,7 @@ "Room URL" : "聊天室 URL", "Welcome" : "歡迎", "Participant limit" : "參與者限制", + "Sharing" : "分享", "Every participant is moderator" : "每個參與者都是主持人", "Moderator access via URL" : "透過 URL 的主持人存取", "Miscellaneous" : "雜項", @@ -91,6 +95,7 @@ "Join meeting muted" : "以靜音加入會議", "Room name" : "聊天室名稱", "Create" : "建立", + "Published" : "已發佈", "Open recording" : "開啟錄製", "Copy to clipboard" : "複製到剪貼板", "Save as file" : "另存為檔案", @@ -109,9 +114,10 @@ "Delete?" : "刪除?", "Could not delete record" : "無法刪除錄製", "Server error" : "伺服器錯誤", - "moderator" : "主持人", - "admin" : "管理員", - "Share" : "分享", + "Could not modify publishing state" : "無法修改發佈狀態", + "Open room" : "開啟聊天室", + "Start" : "開始", + "Clone room" : "複製聊天室", "Loading" : "正在載入", "You are not allowed to change this option, because this room is shared with you." : "您無權更改此選項,因為此聊天室是與您分享的。", "Max. rooms" : "聊天室數上限", diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index e583e87..1e549a4 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -22,7 +22,7 @@ OC.L10N.register( "API URL or secret not configured. Please contact your administrator." : "未設定 API URL 或密碼。請聯絡您的管理員。", "BigBlueButton Integration" : "BigBlueButton 整合", "BigBlueButton integration for Nextcloud" : "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "此應用程式讓您可以使用外部安裝的 [BigBlueButton](https://bigbluebutton.org) 建立會議。\n\n* **聊天室設定** 使用名稱、歡迎訊息等設定建立多個聊天室\n* **分享訪客連結** 與您所有的訪客分享聊天室連結\n* **分享主持人連結** 邀請主持人至聊天室\n* **分享聊天室** 與成員、群組或小圈圈分享聊天室\n* **自訂簡報** 使用從您的檔案瀏覽程式選取的簡報開始聊天室\n* **管理錄製** 檢視、分享與刪除您聊天室的錄製\n* **限制** 限制僅特定群組可建立聊天室\n* **活動** 取得您聊天室活動的概覽\n\n我們的[讀我檔案](https://github.com/sualko/cloud_bbb)有新手指南與進一步的資訊。\n您喜歡此應用程式嗎?給開源社群一些東西並看看我們的\n[貢獻方式](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md)。\n\n需要開發者!如果您有時間,並想要協助強化此應用程式,那就太棒了。\n\n*此應用程式整合了 BigBlueButton,但未經 BigBlueButton 公司認可或認證。BigBlueButton 與 BigBlueButton 圖示是 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我們的[讀我檔案](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 公司認可或認證。BigBlueButton 與 BigBlueButton 圖示是 BigBlueButton 公司的商標。*", "Room not found" : "找不到聊天室", "The room could not be found. Maybe it was deleted?" : "找不到聊天室。或許它已經被刪除了?", "Back to %s" : "回到 %s", @@ -56,6 +56,9 @@ OC.L10N.register( "Group" : "群組", "Searching" : "正在搜尋", "No matches" : "沒有符合的", + "admin" : "管理員", + "moderator" : "主持人", + "user" : "使用者", "Name" : "名稱", "Access" : "存取", "Max" : "最大", @@ -69,7 +72,7 @@ OC.L10N.register( "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." : "設定此聊天室的參與者數量限制。零代表無限制。", "If enabled, the moderator is able to start the recording." : "若啟用,主持人可以開始錄製。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公開:知道連結的所有人都可以加入。密碼:訪客必須提供密碼。等待聊天室:訪客必須等待主持人接受才能加入。內部:僅 Nextcloud 使用者可加入。", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "構成存取選項的不同概念的解釋:
- 公開:任何擁有連結的人都可以加入。-
內部:僅 Nextcloud 使用者可加入。-
密碼:僅擁有密碼的訪客可加入。-
等候室:訪客必須等待主持人接受才能加入。-
受限:只有選定的使用者與群組可以存取此聊天室。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "主持人可以管理會面中的所有參與者,包含踢除、靜音或選取演講者。具有主持人角色的使用者還可以關閉會議或變更預設的設定。", "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,讓有主持人權限的人存取。", @@ -82,6 +85,7 @@ OC.L10N.register( "Room URL" : "聊天室 URL", "Welcome" : "歡迎", "Participant limit" : "參與者限制", + "Sharing" : "分享", "Every participant is moderator" : "每個參與者都是主持人", "Moderator access via URL" : "透過 URL 的主持人存取", "Miscellaneous" : "雜項", @@ -93,6 +97,7 @@ OC.L10N.register( "Join meeting muted" : "以靜音加入會議", "Room name" : "聊天室名稱", "Create" : "建立", + "Published" : "已發佈", "Open recording" : "開啟錄製", "Copy to clipboard" : "複製到剪貼簿", "Save as file" : "另存為檔案", @@ -111,9 +116,10 @@ OC.L10N.register( "Delete?" : "刪除?", "Could not delete record" : "無法刪除錄製", "Server error" : "伺服器錯誤", - "moderator" : "主持人", - "admin" : "管理員", - "Share" : "分享", + "Could not modify publishing state" : "無法修改發佈狀態", + "Open room" : "開啟聊天室", + "Start" : "開始", + "Clone room" : "再製聊天室", "Loading" : "正在載入", "You are not allowed to change this option, because this room is shared with you." : "您不被允許變更此選項,因為此聊天室是與您分享的。", "Max. rooms" : "最大聊天室", diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index b6afde4..a985718 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -20,7 +20,7 @@ "API URL or secret not configured. Please contact your administrator." : "未設定 API URL 或密碼。請聯絡您的管理員。", "BigBlueButton Integration" : "BigBlueButton 整合", "BigBlueButton integration for Nextcloud" : "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/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*" : "此應用程式讓您可以使用外部安裝的 [BigBlueButton](https://bigbluebutton.org) 建立會議。\n\n* **聊天室設定** 使用名稱、歡迎訊息等設定建立多個聊天室\n* **分享訪客連結** 與您所有的訪客分享聊天室連結\n* **分享主持人連結** 邀請主持人至聊天室\n* **分享聊天室** 與成員、群組或小圈圈分享聊天室\n* **自訂簡報** 使用從您的檔案瀏覽程式選取的簡報開始聊天室\n* **管理錄製** 檢視、分享與刪除您聊天室的錄製\n* **限制** 限制僅特定群組可建立聊天室\n* **活動** 取得您聊天室活動的概覽\n\n我們的[讀我檔案](https://github.com/sualko/cloud_bbb)有新手指南與進一步的資訊。\n您喜歡此應用程式嗎?給開源社群一些東西並看看我們的\n[貢獻方式](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md)。\n\n需要開發者!如果您有時間,並想要協助強化此應用程式,那就太棒了。\n\n*此應用程式整合了 BigBlueButton,但未經 BigBlueButton 公司認可或認證。BigBlueButton 與 BigBlueButton 圖示是 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我們的[讀我檔案](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 公司認可或認證。BigBlueButton 與 BigBlueButton 圖示是 BigBlueButton 公司的商標。*", "Room not found" : "找不到聊天室", "The room could not be found. Maybe it was deleted?" : "找不到聊天室。或許它已經被刪除了?", "Back to %s" : "回到 %s", @@ -54,6 +54,9 @@ "Group" : "群組", "Searching" : "正在搜尋", "No matches" : "沒有符合的", + "admin" : "管理員", + "moderator" : "主持人", + "user" : "使用者", "Name" : "名稱", "Access" : "存取", "Max" : "最大", @@ -67,7 +70,7 @@ "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." : "設定此聊天室的參與者數量限制。零代表無限制。", "If enabled, the moderator is able to start the recording." : "若啟用,主持人可以開始錄製。", - "Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join." : "公開:知道連結的所有人都可以加入。密碼:訪客必須提供密碼。等待聊天室:訪客必須等待主持人接受才能加入。內部:僅 Nextcloud 使用者可加入。", + "Explanation of the different concepts that constitute access options :
- Public: Anyone who has the link can join.-
Internal: Only Nextcloud users can join.-
Password: Only guests who have the password can join..-
Waiting room: A moderator must accept each guest before they can join.-
Restricted : Only selected users and groups can access this room." : "構成存取選項的不同概念的解釋:
- 公開:任何擁有連結的人都可以加入。-
內部:僅 Nextcloud 使用者可加入。-
密碼:僅擁有密碼的訪客可加入。-
等候室:訪客必須等待主持人接受才能加入。-
受限:只有選定的使用者與群組可以存取此聊天室。", "A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings." : "主持人可以管理會面中的所有參與者,包含踢除、靜音或選取演講者。具有主持人角色的使用者還可以關閉會議或變更預設的設定。", "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,讓有主持人權限的人存取。", @@ -80,6 +83,7 @@ "Room URL" : "聊天室 URL", "Welcome" : "歡迎", "Participant limit" : "參與者限制", + "Sharing" : "分享", "Every participant is moderator" : "每個參與者都是主持人", "Moderator access via URL" : "透過 URL 的主持人存取", "Miscellaneous" : "雜項", @@ -91,6 +95,7 @@ "Join meeting muted" : "以靜音加入會議", "Room name" : "聊天室名稱", "Create" : "建立", + "Published" : "已發佈", "Open recording" : "開啟錄製", "Copy to clipboard" : "複製到剪貼簿", "Save as file" : "另存為檔案", @@ -109,9 +114,10 @@ "Delete?" : "刪除?", "Could not delete record" : "無法刪除錄製", "Server error" : "伺服器錯誤", - "moderator" : "主持人", - "admin" : "管理員", - "Share" : "分享", + "Could not modify publishing state" : "無法修改發佈狀態", + "Open room" : "開啟聊天室", + "Start" : "開始", + "Clone room" : "再製聊天室", "Loading" : "正在載入", "You are not allowed to change this option, because this room is shared with you." : "您不被允許變更此選項,因為此聊天室是與您分享的。", "Max. rooms" : "最大聊天室", diff --git a/lib/Activity/MeetingListener.php b/lib/Activity/MeetingListener.php index 1134d8a..fa37d56 100644 --- a/lib/Activity/MeetingListener.php +++ b/lib/Activity/MeetingListener.php @@ -6,11 +6,15 @@ use OCA\BigBlueButton\AppInfo\Application; use OCA\BigBlueButton\Event\MeetingEndedEvent; use OCA\BigBlueButton\Event\MeetingStartedEvent; use OCA\BigBlueButton\Event\RecordingReadyEvent; +use OCA\BigBlueButton\Event\RoomEvent; use OCP\Activity\IManager as IActivityManager; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; use OCP\IUserSession; +/** + * @template-implements IEventListener + */ class MeetingListener implements IEventListener { /** @var IActivityManager */ private $activityManager; diff --git a/lib/Activity/RoomListener.php b/lib/Activity/RoomListener.php index 41b7ee1..a74ce81 100644 --- a/lib/Activity/RoomListener.php +++ b/lib/Activity/RoomListener.php @@ -5,10 +5,14 @@ namespace OCA\BigBlueButton\Activity; use OCA\BigBlueButton\AppInfo\Application; use OCA\BigBlueButton\Event\RoomCreatedEvent; use OCA\BigBlueButton\Event\RoomDeletedEvent; +use OCA\BigBlueButton\Event\RoomEvent; use OCP\Activity\IManager as IActivityManager; use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; +/** + * @template-implements IEventListener + */ class RoomListener implements IEventListener { /** @var IActivityManager */ private $activityManager; diff --git a/lib/Activity/RoomShareListener.php b/lib/Activity/RoomShareListener.php index 7f7abe4..6f77f92 100644 --- a/lib/Activity/RoomShareListener.php +++ b/lib/Activity/RoomShareListener.php @@ -5,6 +5,7 @@ namespace OCA\BigBlueButton\Activity; use OCA\BigBlueButton\AppInfo\Application; use OCA\BigBlueButton\Db\Room; use OCA\BigBlueButton\Db\RoomShare; +use OCA\BigBlueButton\Event\RoomEvent; use OCA\BigBlueButton\Event\RoomShareCreatedEvent; use OCA\BigBlueButton\Event\RoomShareDeletedEvent; use OCA\BigBlueButton\Service\RoomService; @@ -13,6 +14,9 @@ use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; use OCP\IGroupManager; +/** + * @template-implements IEventListener + */ class RoomShareListener implements IEventListener { /** @var IActivityManager */ private $activityManager; diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index a9d2589..65746c5 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -35,6 +35,9 @@ class Application extends App implements IBootstrap { parent::__construct(self::ID, $urlParams); } + /** + * @psalm-suppress InvalidArgument + */ public function register(IRegistrationContext $context): void { if ((@include_once __DIR__ . '/../../vendor/autoload.php') === false) { throw new \Exception('Cannot include autoload. Did you run install dependencies using composer?'); @@ -56,6 +59,8 @@ class Application extends App implements IBootstrap { $context->registerMiddleware(JoinMiddleware::class); $context->registerMiddleware(HookMiddleware::class); + + $context->registerCapability(Capabilities::class); } public function boot(IBootContext $context): void { diff --git a/lib/AppInfo/Capabilities.php b/lib/AppInfo/Capabilities.php new file mode 100644 index 0000000..1517557 --- /dev/null +++ b/lib/AppInfo/Capabilities.php @@ -0,0 +1,31 @@ +userSession->getUser(); + if (!$user) { + return []; + } + $restriction = $this->permission->getRestriction($user->getUID()); + $capabilities = array_filter($restriction->jsonSerialize(), function ($key) { + return in_array($key, ['maxRooms', 'maxParticipants', 'allowRecording']); + }, ARRAY_FILTER_USE_KEY); + + return [ + Application::ID => array_merge([ + 'appVersion' => $this->appManager->getAppVersion(Application::ID), + 'isAllowedToCreateRoom' => $this->permission->isAllowedToCreateRoom($user->getUID()), + ], $capabilities) + ]; + } +} diff --git a/lib/BigBlueButton/API.php b/lib/BigBlueButton/API.php index d52c49f..60ba781 100644 --- a/lib/BigBlueButton/API.php +++ b/lib/BigBlueButton/API.php @@ -10,6 +10,7 @@ use BigBlueButton\Parameters\GetRecordingsParameters; use BigBlueButton\Parameters\InsertDocumentParameters; use BigBlueButton\Parameters\IsMeetingRunningParameters; use BigBlueButton\Parameters\JoinMeetingParameters; +use BigBlueButton\Parameters\PublishRecordingsParameters; use OCA\BigBlueButton\AppInfo\Application; use OCA\BigBlueButton\AvatarRepository; use OCA\BigBlueButton\Crypto; @@ -263,6 +264,14 @@ class API { return $response->isDeleted(); } + public function publishRecording(string $recordingId, bool $published): bool { + $publishParams = new PublishRecordingsParameters($recordingId, $published); + + $response = $this->getServer()->publishRecordings($publishParams); + + return $response->isPublished(); + } + /** * @return (array|bool|int|string)[] * diff --git a/lib/Controller/RoomShareController.php b/lib/Controller/RoomShareController.php index 4b04371..b819f21 100644 --- a/lib/Controller/RoomShareController.php +++ b/lib/Controller/RoomShareController.php @@ -11,6 +11,7 @@ use OCP\AppFramework\Controller; use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataResponse; +use OCP\IGroupManager; use OCP\IRequest; use OCP\IUserManager; @@ -24,6 +25,9 @@ class RoomShareController extends Controller { /** @var IUserManager */ private $userManager; + /** @var IGroupManager */ + private $groupManager; + /** @var RoomService */ private $roomService; @@ -37,6 +41,7 @@ class RoomShareController extends Controller { IRequest $request, RoomShareService $service, IUserManager $userManager, + IGroupManager $groupManager, RoomService $roomService, CircleHelper $circleHelper, $userId @@ -44,6 +49,7 @@ class RoomShareController extends Controller { parent::__construct($appName, $request); $this->service = $service; $this->userManager = $userManager; + $this->groupManager = $groupManager; $this->roomService = $roomService; $this->circleHelper = $circleHelper; $this->userId = $userId; @@ -90,6 +96,14 @@ class RoomShareController extends Controller { } $roomShare->setShareWithDisplayName($circle->getName()); + } elseif ($roomShare->getShareType() === RoomShare::SHARE_TYPE_GROUP) { + $shareWithGroup = $this->groupManager->get($roomShare->getShareWith()); + + if ($shareWithGroup === null) { + continue; + } + + $roomShare->setShareWithDisplayName($shareWithGroup->getDisplayName()); } $shares[] = $roomShare; diff --git a/lib/Controller/ServerController.php b/lib/Controller/ServerController.php index fd1eaf5..476cd0f 100644 --- a/lib/Controller/ServerController.php +++ b/lib/Controller/ServerController.php @@ -88,12 +88,18 @@ class ServerController extends Controller { return new DataResponse([], Http::STATUS_NOT_FOUND); } - if (!$this->permission->isAdmin($room, $this->userId)) { + if (!$this->permission->isUser($room, $this->userId)) { return new DataResponse([], Http::STATUS_FORBIDDEN); } $recordings = $this->server->getRecordings($room); + if (!$this->permission->isAdmin($room, $this->userId)) { + $recordings = array_values(array_filter($recordings, function ($recording) { + return $recording['published']; + })); + } + return new DataResponse($recordings); } @@ -118,6 +124,27 @@ class ServerController extends Controller { return new DataResponse($success); } + /** + * @NoAdminRequired + */ + public function publishRecord(string $recordId, bool $published): DataResponse { + $record = $this->server->getRecording($recordId); + + $room = $this->service->findByUid($record['meetingId']); + + if ($room === null) { + return new DataResponse(false, Http::STATUS_NOT_FOUND); + } + + if (!$this->permission->isAdmin($room, $this->userId)) { + return new DataResponse(false, Http::STATUS_FORBIDDEN); + } + + $success = $this->server->publishRecording($recordId, $published); + + return new DataResponse($success); + } + public function check(?string $url, ?string $secret): DataResponse { if ($url === null || empty($url) || $secret === null || empty($secret)) { return new DataResponse(false); diff --git a/lib/Db/Restriction.php b/lib/Db/Restriction.php index 33db7ce..2614571 100644 --- a/lib/Db/Restriction.php +++ b/lib/Db/Restriction.php @@ -16,11 +16,13 @@ use OCP\AppFramework\Db\Entity; * @method void setMaxRooms(int $number) * @method void setMaxParticipants(int $number) * @method void setAllowRecording(bool $allow) + * @method void setGroupName(string $groupName) */ class Restriction extends Entity implements JsonSerializable { public const ALL_ID = ''; protected $groupId; + protected $groupName; protected $maxRooms = -1; protected $roomTypes = '[]'; protected $maxParticipants = -1; @@ -32,10 +34,15 @@ class Restriction extends Entity implements JsonSerializable { $this->addType('allowRecording', 'boolean'); } + public function setGroupName(?string $groupName) { + $this->groupName = $groupName ?? ''; + } + public function jsonSerialize(): array { return [ 'id' => $this->id, 'groupId' => $this->groupId, + 'groupName' => $this->groupName, 'maxRooms' => (int) $this->maxRooms, 'roomTypes' => \json_decode($this->roomTypes), 'maxParticipants' => (int) $this->maxParticipants, diff --git a/lib/Db/RestrictionMapper.php b/lib/Db/RestrictionMapper.php index 41772a4..94b422f 100644 --- a/lib/Db/RestrictionMapper.php +++ b/lib/Db/RestrictionMapper.php @@ -7,6 +7,9 @@ use OCP\AppFramework\Db\QBMapper; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; +/** + * @template-extends QBMapper + */ class RestrictionMapper extends QBMapper { public function __construct(IDBConnection $db) { parent::__construct($db, 'bbb_restrictions', Restriction::class); @@ -19,8 +22,9 @@ class RestrictionMapper extends QBMapper { public function find(int $id): Restriction { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('*') - ->from($this->tableName) + $qb->select('r.*', 'g.displayname as groupName') + ->from($this->tableName, 'r') + ->leftJoin('r', 'groups', 'g', $qb->expr()->eq('r.group_id', 'g.gid')) ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT))); return $this->findEntity($qb); @@ -33,8 +37,9 @@ class RestrictionMapper extends QBMapper { public function findByGroupId(string $groupId): Restriction { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('*') - ->from($this->tableName) + $qb->select('r.*', 'g.displayname as groupName') + ->from($this->tableName, 'r') + ->leftJoin('r', 'groups', 'g', $qb->expr()->eq('r.group_id', 'g.gid')) ->where($qb->expr()->eq('group_id', $qb->createNamedParameter($groupId))); return $this->findEntity($qb); @@ -46,8 +51,9 @@ class RestrictionMapper extends QBMapper { public function findByGroupIds(array $groupIds): array { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('*') - ->from($this->tableName) + $qb->select('r.*', 'g.displayname as groupName') + ->from($this->tableName, 'r') + ->leftJoin('r', 'groups', 'g', $qb->expr()->eq('r.group_id', 'g.gid')) ->where($qb->expr()->in('group_id', $qb->createNamedParameter($groupIds, IQueryBuilder::PARAM_STR_ARRAY))); /** @var array */ @@ -60,8 +66,9 @@ class RestrictionMapper extends QBMapper { public function findAll(): array { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('*') - ->from($this->tableName); + $qb->select('r.*', 'g.displayname as groupName') + ->from($this->tableName, 'r') + ->leftJoin('r', 'groups', 'g', $qb->expr()->eq('r.group_id', 'g.gid')); /** @var array */ return $this->findEntities($qb); diff --git a/lib/Db/Room.php b/lib/Db/Room.php index 7fb2816..1ab048e 100644 --- a/lib/Db/Room.php +++ b/lib/Db/Room.php @@ -74,6 +74,7 @@ class Room extends Entity implements JsonSerializable { public $cleanLayout; public $joinMuted; public $running; + public $permission; public function __construct() { $this->addType('maxParticipants', 'integer'); @@ -86,6 +87,7 @@ class Room extends Entity implements JsonSerializable { $this->addType('cleanLayout', 'boolean'); $this->addType('joinMuted', 'boolean'); $this->addType('running', 'boolean'); + $this->addType('permission', 'integer'); } public function jsonSerialize(): array { @@ -102,6 +104,7 @@ class Room extends Entity implements JsonSerializable { 'everyoneIsModerator' => boolval($this->everyoneIsModerator), 'requireModerator' => boolval($this->requireModerator), 'shared' => boolval($this->shared), + 'permission' => $this->permission, 'moderatorToken' => $this->moderatorToken, 'listenOnly' => boolval($this->listenOnly), 'mediaCheck' => boolval($this->mediaCheck), diff --git a/lib/Db/RoomMapper.php b/lib/Db/RoomMapper.php index a1a9c3c..b1b3be0 100644 --- a/lib/Db/RoomMapper.php +++ b/lib/Db/RoomMapper.php @@ -7,11 +7,24 @@ use OCP\AppFramework\Db\QBMapper; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; +/** + * @template-extends QBMapper + */ class RoomMapper extends QBMapper { public function __construct(IDBConnection $db) { parent::__construct($db, 'bbb_rooms', Room::class); } + private function joinShares(IQueryBuilder $qb): IQueryBuilder { + $qb->select('r.*') + ->from($this->tableName, 'r') + ->leftJoin('r', 'bbb_room_shares', 's', $qb->expr()->eq('r.id', 's.room_id')) + ->addSelect($qb->createFunction('count(case when `s`.`permission` IN ('. + RoomShare::PERMISSION_ADMIN.','.RoomShare::PERMISSION_MODERATOR.','.RoomShare::PERMISSION_USER + .') then 1 else null end) as shared')); + return $qb; + } + /** * @throws \OCP\AppFramework\Db\MultipleObjectsReturnedException * @throws DoesNotExistException @@ -19,10 +32,7 @@ class RoomMapper extends QBMapper { public function find(int $id): Room { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('r.*') - ->from($this->tableName, 'r') - ->leftJoin('r', 'bbb_room_shares', 's', $qb->expr()->eq('r.id', 's.room_id')) - ->addSelect($qb->createFunction('count(case when `s`.`permission` = 0 then 1 else null end) as shared')) + $this->joinShares($qb) ->where($qb->expr()->eq('r.id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT))) ->groupBy('r.id'); ; @@ -38,10 +48,7 @@ class RoomMapper extends QBMapper { public function findByUid(string $uid): Room { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('r.*') - ->from($this->tableName, 'r') - ->leftJoin('r', 'bbb_room_shares', 's', $qb->expr()->eq('r.id', 's.room_id')) - ->addSelect($qb->createFunction('count(case when `s`.`permission` = 0 then 1 else null end) as shared')) + $this->joinShares($qb) ->where($qb->expr()->eq('r.uid', $qb->createNamedParameter($uid))) ->groupBy('r.id'); ; @@ -70,25 +77,20 @@ class RoomMapper extends QBMapper { public function findAll(string $userId, array $groupIds, array $circleIds): array { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('r.*') - ->from($this->tableName, 'r') - ->leftJoin('r', 'bbb_room_shares', 's', $qb->expr()->eq('r.id', 's.room_id')) - ->addSelect($qb->createFunction('count(case when `s`.`permission` = 0 then 1 else null end) as shared')) + $this->joinShares($qb) + ->addSelect($qb->createFunction('min(case when '.$qb->expr()->eq('r.user_id', $qb->createNamedParameter($userId)).' then '.RoomShare::PERMISSION_ADMIN.' else `s`.`permission` end) as permission')) ->where( $qb->expr()->orX( $qb->expr()->eq('r.user_id', $qb->createNamedParameter($userId)), $qb->expr()->andX( - $qb->expr()->eq('s.permission', $qb->createNamedParameter(RoomShare::PERMISSION_ADMIN, IQueryBuilder::PARAM_INT)), $qb->expr()->eq('s.share_type', $qb->createNamedParameter(RoomShare::SHARE_TYPE_USER, IQueryBuilder::PARAM_INT)), $qb->expr()->eq('s.share_with', $qb->createNamedParameter($userId)) ), $qb->expr()->andX( - $qb->expr()->eq('s.permission', $qb->createNamedParameter(RoomShare::PERMISSION_ADMIN, IQueryBuilder::PARAM_INT)), $qb->expr()->eq('s.share_type', $qb->createNamedParameter(RoomShare::SHARE_TYPE_GROUP, IQueryBuilder::PARAM_INT)), $qb->expr()->in('s.share_with', $qb->createNamedParameter($groupIds, IQueryBuilder::PARAM_STR_ARRAY)) ), $qb->expr()->andX( - $qb->expr()->eq('s.permission', $qb->createNamedParameter(RoomShare::PERMISSION_ADMIN, IQueryBuilder::PARAM_INT)), $qb->expr()->eq('s.share_type', $qb->createNamedParameter(RoomShare::SHARE_TYPE_CIRCLE, IQueryBuilder::PARAM_INT)), $qb->expr()->in('s.share_with', $qb->createNamedParameter($circleIds, IQueryBuilder::PARAM_STR_ARRAY)) ) @@ -99,7 +101,7 @@ class RoomMapper extends QBMapper { /** @var array */ return $this->findEntities($qb); } - + /** * @return array */ diff --git a/lib/Db/RoomShareMapper.php b/lib/Db/RoomShareMapper.php index 511bbfd..68c65b6 100644 --- a/lib/Db/RoomShareMapper.php +++ b/lib/Db/RoomShareMapper.php @@ -7,6 +7,9 @@ use OCP\AppFramework\Db\QBMapper; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; +/** + * @template-extends QBMapper + */ class RoomShareMapper extends QBMapper { public function __construct(IDBConnection $db) { parent::__construct($db, 'bbb_room_shares', RoomShare::class); diff --git a/lib/Listener/UserDeletedListener.php b/lib/Listener/UserDeletedListener.php index fddfc80..38a5e66 100644 --- a/lib/Listener/UserDeletedListener.php +++ b/lib/Listener/UserDeletedListener.php @@ -9,6 +9,9 @@ use OCP\EventDispatcher\Event; use OCP\EventDispatcher\IEventListener; use OCP\User\Events\UserDeletedEvent; +/** + * @template-implements IEventListener + */ class UserDeletedListener implements IEventListener { /** @var IActivityManager */ private $activityManager; diff --git a/lib/NoPermissionResponse.php b/lib/NoPermissionResponse.php index d238b2a..b334923 100644 --- a/lib/NoPermissionResponse.php +++ b/lib/NoPermissionResponse.php @@ -6,6 +6,12 @@ use OCP\AppFramework\Http\ContentSecurityPolicy; use OCP\AppFramework\Http\Response; use OCP\Template; +/** + * @template-extends Response> + * + * (NC < 28) + * @psalm-suppress TooManyTemplateParams + */ class NoPermissionResponse extends Response { public function __construct() { parent::__construct(); diff --git a/lib/NotFoundResponse.php b/lib/NotFoundResponse.php index 815932c..9630175 100644 --- a/lib/NotFoundResponse.php +++ b/lib/NotFoundResponse.php @@ -6,6 +6,12 @@ use OCP\AppFramework\Http\ContentSecurityPolicy; use OCP\AppFramework\Http\Response; use OCP\Template; +/** + * @template-extends Response> + * + * (NC < 28) + * @psalm-suppress TooManyTemplateParams + */ class NotFoundResponse extends Response { public function __construct() { parent::__construct(); diff --git a/lib/Permission.php b/lib/Permission.php index b185b99..2570f04 100644 --- a/lib/Permission.php +++ b/lib/Permission.php @@ -55,10 +55,13 @@ class Permission { } public function isAllowedToCreateRoom(string $uid): bool { - $numberOfCreatedRooms = count($this->roomService->findAll($uid, [], [])); $restriction = $this->getRestriction($uid); + if ($restriction->getMaxRooms() < 0) { + return true; + } + $numberOfCreatedRooms = count($this->roomService->findByUserId($uid)); - return $restriction->getMaxRooms() < 0 || $restriction->getMaxRooms() > $numberOfCreatedRooms; + return $restriction->getMaxRooms() > $numberOfCreatedRooms; } public function isUser(Room $room, ?string $uid): bool { diff --git a/lib/Service/RestrictionService.php b/lib/Service/RestrictionService.php index 1bbcff7..a86b8f0 100644 --- a/lib/Service/RestrictionService.php +++ b/lib/Service/RestrictionService.php @@ -9,13 +9,18 @@ use OCA\BigBlueButton\Db\RestrictionMapper; use OCP\AppFramework\Db\DoesNotExistException; use OCP\AppFramework\Db\MultipleObjectsReturnedException; +use OCP\IGroupManager; class RestrictionService { /** @var RestrictionMapper */ private $mapper; - public function __construct(RestrictionMapper $mapper) { + /** @var IGroupManager */ + private $groupManager; + + public function __construct(RestrictionMapper $mapper, IGroupManager $groupManager) { $this->mapper = $mapper; + $this->groupManager = $groupManager; } public function findAll(): array { @@ -78,6 +83,10 @@ class RestrictionService { $restriction = new Restriction(); $restriction->setGroupId($groupId); + $group = $this->groupManager->get($groupId); + if ($group) { + $restriction->setGroupName($group->getDisplayName()); + } return $this->mapper->insert($restriction); } diff --git a/package.json b/package.json index 74e9ec0..6d6e19e 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,16 @@ { - "name": "@sualko/cloud_bbb", + "name": "@littleredbutton/cloud_bbb", "description": "Nextcloud Integration for BigBlueButton", - "version": "2.6.0", - "author": "Klaus Herberth ", + "version": "2.7.2", + "author": "Klaus Herberth", "bugs": { - "url": "https://github.com/sualko/cloud_bbb/issues" + "url": "https://github.com/littleredbutton/cloud_bbb/issues" }, "repository": { - "url": "https://github.com/sualko/cloud_bbb", + "url": "https://github.com/littleredbutton/cloud_bbb", "type": "git" }, - "homepage": "https://github.com/sualko/cloud_bbb", + "homepage": "https://github.com/littleredbutton/cloud_bbb", "license": "agpl", "private": true, "scripts": { @@ -109,7 +109,7 @@ "stylelint-config-recommended-scss": "^5.0.2", "stylelint-scss": "^4.2.0", "ts-loader": "^9.2.8", - "typescript": "^4.0.2", + "typescript": "^4.9.3", "url-loader": "^4.0.0", "webpack": "^5.70.0", "webpack-cli": "^4.9.2", diff --git a/psalm.xml b/psalm.xml index 33a0f2b..be99b57 100644 --- a/psalm.xml +++ b/psalm.xml @@ -6,6 +6,8 @@ xmlns="https://getpsalm.org/schema/config" xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd" errorBaseline="tests/psalm-baseline.xml" + findUnusedCode="false" + findUnusedBaselineEntry="false" > diff --git a/scripts/build-release.js b/scripts/build-release.js index 75c3c5d..fb3a043 100644 --- a/scripts/build-release.js +++ b/scripts/build-release.js @@ -1,4 +1,11 @@ /* eslint-disable @typescript-eslint/no-var-requires */ +/** + * npm run release:build [--dry-run] [--stable] + * + * --dry-run don't commit CHANGELOG.md + * --stable generate changelog + * + */ const colors = require('colors'); const fs = require('fs'); const path = require('path'); @@ -70,17 +77,19 @@ async function createRelease(appId) { const execa = (await import('execa')).execaCommand; - await execa('yarn', ['composer:install:dev']); + const composerDev = await execa('composer install'); + console.log(composerDev.stdout, composerDev.stderr); console.log('✔ composer dev dependencies installed'.green); - await execa('yarn', ['lint']); + await execa('yarn lint'); console.log('✔ linters are happy'.green); - await execa('yarn', ['composer:install']); + const composerNoDev = await execa('composer install --no-dev'); + console.log(composerNoDev.stdout, composerNoDev.stderr); console.log('✔ composer dependencies installed'.green); - await execa('yarn', ['build']); - console.log('✔ scripts built'.green); + await execa('yarn build'); + console.log('✔ webpack done'.green); await updateChangelog(); @@ -89,7 +98,7 @@ async function createRelease(appId) { await createGPGSignature(filePath); await createGPGArmorSignature(filePath); - await execa('yarn', ['composer:install:dev']); + await execa('composer install'); console.log('✔ composer dev dependencies installed'.green); } @@ -153,6 +162,11 @@ async function commitChangeLog() { function createArchive(appId, fileBaseName) { + const archivesPath = path.normalize(__dirname + '/../archives/'); + if (!fs.existsSync(archivesPath)){ + fs.mkdirSync(archivesPath); + } + const fileName = `${fileBaseName}.tar.gz`; const filePath = path.normalize(__dirname + `/../archives/${fileName}`); const output = fs.createWriteStream(filePath); diff --git a/scripts/imports/changelog.js b/scripts/imports/changelog.js index 4b73f7a..fae41a9 100644 --- a/scripts/imports/changelog.js +++ b/scripts/imports/changelog.js @@ -1,7 +1,7 @@ /* eslint-disable @typescript-eslint/no-var-requires */ const fs = require('fs'); const path = require('path'); -const simpleGit = require('simple-git/promise'); +const simpleGit = require('simple-git'); const inquirer = require('inquirer'); const git = simpleGit(); diff --git a/scripts/publish-release.js b/scripts/publish-release.js index 361422f..f1b9b8b 100644 --- a/scripts/publish-release.js +++ b/scripts/publish-release.js @@ -250,7 +250,7 @@ async function run() { await pull(); console.log('✔ pulled latest changes'.green); - await execa('yarn', ['composer:install:dev']); + await execa('yarn composer:install:dev'); console.log('✔ composer dev dependencies installed'.green); await notAlreadyTagged(); diff --git a/tests/Unit/Controller/RoomShareControllerTest.php b/tests/Unit/Controller/RoomShareControllerTest.php index afd75e2..220bb23 100644 --- a/tests/Unit/Controller/RoomShareControllerTest.php +++ b/tests/Unit/Controller/RoomShareControllerTest.php @@ -9,6 +9,7 @@ use OCA\BigBlueButton\Db\RoomShare; use OCA\BigBlueButton\Service\RoomService; use OCA\BigBlueButton\Service\RoomShareService; use OCP\AppFramework\Http; +use OCP\IGroupManager; use OCP\IRequest; use OCP\IUserManager; use PHPUnit\Framework\TestCase; @@ -19,6 +20,7 @@ class RoomShareControllerTest extends TestCase { private $roomService; private $circleHelper; private $userManager; + private $groupManager; private $controller; private $userId = 'user_foo'; @@ -29,6 +31,7 @@ class RoomShareControllerTest extends TestCase { $this->request = $this->createMock(IRequest::class); $this->service = $this->createMock(RoomShareService::class); $this->userManager = $this->createMock(IUserManager::class); + $this->groupManager = $this->createMock(IGroupManager::class); $this->roomService = $this->createMock(RoomService::class); $this->circleHelper = $this->createMock(CircleHelper::class); @@ -37,6 +40,7 @@ class RoomShareControllerTest extends TestCase { $this->request, $this->service, $this->userManager, + $this->groupManager, $this->roomService, $this->circleHelper, $this->userId diff --git a/tests/Unit/PermissionTest.php b/tests/Unit/PermissionTest.php index 09129c5..104c9e9 100644 --- a/tests/Unit/PermissionTest.php +++ b/tests/Unit/PermissionTest.php @@ -83,7 +83,8 @@ class PermissionTest extends TestCase { $this->roomService ->expects($this->once()) - ->method('findAll') + ->method('findByUserId') + ->with('foobar') ->willReturn([ $this->createRoom(1, 'foo'), $this->createRoom(2, 'bar'), diff --git a/tests/Unit/Service/RestrictionServiceTest.php b/tests/Unit/Service/RestrictionServiceTest.php index c0584df..807c837 100644 --- a/tests/Unit/Service/RestrictionServiceTest.php +++ b/tests/Unit/Service/RestrictionServiceTest.php @@ -8,16 +8,19 @@ use OCA\BigBlueButton\Db\Restriction; use OCA\BigBlueButton\Db\RestrictionMapper; use OCA\BigBlueButton\Db\Room; use OCA\BigBlueButton\Service\RestrictionService; +use OCP\IGroupManager; use PHPUnit\Framework\TestCase; class RestrictionServiceTest extends TestCase { protected $mapper; + protected $groupManager; protected $service; public function setUp(): void { $this->mapper = $this->createMock(RestrictionMapper::class); + $this->groupManager = $this->createMock(IGroupManager::class); - $this->service = new RestrictionService($this->mapper); + $this->service = new RestrictionService($this->mapper, $this->groupManager); } public function testFindByGroupIds() { diff --git a/ts/Common/Api.ts b/ts/Common/Api.ts index 6a2c278..da5bbb4 100644 --- a/ts/Common/Api.ts +++ b/ts/Common/Api.ts @@ -20,6 +20,7 @@ export enum Access { export interface Restriction { id: number; groupId: string; + groupName: string; maxRooms: number; roomTypes: string[]; maxParticipants: number; @@ -39,6 +40,7 @@ export interface Room { everyoneIsModerator: boolean; requireModerator: boolean; shared: boolean; + permission: Permission; moderatorToken: string; listenOnly: boolean, mediaCheck: boolean, @@ -200,6 +202,14 @@ class Api { return response.data; } + public async publishRecording(id: string, publish: boolean,) { + const response = await axios.post(this.getUrl(`server/record/${id}/publish`), { + published: publish, + }); + + return response.data; + } + public async storeRecording(recording: Recording, path: string) { const startDate = new Date(recording.startTime); const filename = `${encodeURIComponent(recording.name + ' ' + startDate.toISOString())}.url`; diff --git a/ts/Common/ShareSelection.tsx b/ts/Common/ShareSelection.tsx index 9a5a5d8..cd6a83d 100644 --- a/ts/Common/ShareSelection.tsx +++ b/ts/Common/ShareSelection.tsx @@ -78,7 +78,7 @@ const ShareSelection: React.FC = (props) => { className="suggestion" onMouseDown={preventOnBlurEvent} onClick={() => selectShare(option)}> - {option.label}{option.value.shareType === ShareType.Group ? ` (${t('bbb', 'Group')})` : ''} + {option.label}{option.value.shareType === ShareType.Group ? ' (' + t('bbb', 'Group') + ')' : ''} ); }; diff --git a/ts/Common/Translation.ts b/ts/Common/Translation.ts index d80eb5d..8d78cf7 100644 --- a/ts/Common/Translation.ts +++ b/ts/Common/Translation.ts @@ -1,4 +1,4 @@ -import { Access } from './Api'; +import { Access, Permission } from './Api'; export const AccessOptions = { [Access.Public]: t('bbb', 'Public'), @@ -8,3 +8,9 @@ export const AccessOptions = { [Access.Internal]: t('bbb', 'Internal'), [Access.InternalRestricted]: t('bbb', 'Internal restricted'), }; + +export const PermissionsOptions = { + [Permission.Admin]: t('bbb', 'admin'), + [Permission.Moderator]: t('bbb', 'moderator'), + [Permission.User]: t('bbb', 'user'), +}; diff --git a/ts/Manager/App.scss b/ts/Manager/App.scss index 1a0458c..59465e5 100644 --- a/ts/Manager/App.scss +++ b/ts/Manager/App.scss @@ -16,7 +16,22 @@ .oc-dialog.bbb-dialog { max-height: calc(100% - 70px); - margin-top: 25px; + margin-top: 0; + padding: 4px 24px; +} + +.bbb-dialog { + + .oc-dialog-title { + font-size: 21px; + text-align: center; + margin-top: 0; + } + + .oc-dialog-close { + padding: 0; + top: 0; + } } .bbb-mb-1 { @@ -37,6 +52,36 @@ opacity: 0.6; } +.bbb-qrcode-container { + display: block; + height: 34px; + width: 34px; + margin: 3px; + position: relative; + cursor: zoom-in; + + canvas { + max-width: 100%; + max-height: 100%; + position: absolute; + top: 0; + right: 0; + } + + input[type="checkbox"] { + display: none; + + &:checked + canvas { + max-width: none; + max-height: none; + box-shadow: 0 0 10px; + box-shadow: 0 0 5px var(--color-box-shadow); + cursor: zoom-out; + border: 5px solid #fff; + } + } +} + #bbb-root, #bbb-app { width: 100%; background-color: var(--color-main-background); @@ -95,10 +140,6 @@ pre { } } -#bbb-react-root table tbody tr td { - border-bottom: 1px solid var(--color-border-dark); -} - #bbb-react-root, #bbb-restrictions { #bbb-warning, @@ -161,8 +202,23 @@ pre { .bbb-shrink { width: 44px; white-space: nowrap; - } + input[type="checkbox"]{ + + &+label:before { + border-radius: 3px; + border-width: 2px; + } + + &:disabled+label:before { + opacity: .5; + } + + &:not(input:checked):disabled+label:before { + background-color: transparent !important; + } + } + } th { padding: 14px 6px; @@ -179,6 +235,7 @@ pre { padding: 0 6px; position: relative; display: table-cell; + border-bottom: 1px solid var(--color-border-dark); & > form { margin: -10px; @@ -282,36 +339,10 @@ pre { } } +.bbb-simple-menu { + min-width: auto; +} + .bbb-input-container { display: flex; } - -.bbb-qrcode-container { - display: block; - height: 34px; - width: 34px; - margin: 3px; - position: relative; - cursor: zoom-in; - - canvas { - max-width: 100%; - max-height: 100%; - position: absolute; - top: 0; - right: 0; - } - - input[type="checkbox"] { - display: none; - - &:checked + canvas { - max-width: none; - max-height: none; - box-shadow: 0 0 10px; - box-shadow: 0 0 5px var(--color-box-shadow); - cursor: zoom-out; - border: 5px solid #fff; - } - } -} diff --git a/ts/Manager/App.tsx b/ts/Manager/App.tsx index 2a6dbc4..aec8ac0 100644 --- a/ts/Manager/App.tsx +++ b/ts/Manager/App.tsx @@ -146,7 +146,8 @@ const App: React.FC = () => { } const maxRooms = restriction?.maxRooms || 0; - const quota = maxRooms < 0 ? t('bbb', 'unlimited') : rooms.filter(room => room.userId === OC.currentUser).length + ' / ' + maxRooms; + const ownRoomsLength = rooms.filter(room => room.userId === OC.currentUser).length; + const quota = maxRooms < 0 ? t('bbb', 'unlimited') : ownRoomsLength + ' / ' + maxRooms; return (
= () => { {!isLoaded && } - {(maxRooms > rows.length || maxRooms < 0) ? + {(maxRooms > ownRoomsLength || maxRooms < 0) ? :

{maxRooms === 0 ? t('bbb', 'You are not permitted to create a room.') : diff --git a/ts/Manager/EditRoomDialog.tsx b/ts/Manager/EditRoomDialog.tsx index a0b1bde..9c4da00 100644 --- a/ts/Manager/EditRoomDialog.tsx +++ b/ts/Manager/EditRoomDialog.tsx @@ -65,7 +65,7 @@ const EditRoomDialog: React.FC = ({ room, restriction, updateProperty, op function inputElement(label: string, field: string, type: 'text' | 'number' = 'text') { return (

-